diff options
Diffstat (limited to 'test/package-check-failure.yml')
-rw-r--r-- | test/package-check-failure.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/package-check-failure.yml b/test/package-check-failure.yml new file mode 100644 index 0000000..8c25f3c --- /dev/null +++ b/test/package-check-failure.yml @@ -0,0 +1,14 @@ +- hosts: localhost + tasks: + - name: install ansible + yum: name=ansible state=latest + + - name: install ansible-lint + pip: name=ansible-lint + args: + state: latest + + - name: install some-package + package: + name: some-package + state: latest |