summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/package-check-failure.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:56 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 16:04:56 +0000
commitd964cec5e6aa807b75c7a4e7cdc5f11e54b2eda2 (patch)
tree794bc3738a00b5e599f06d1f2f6d79048d87ff8e /examples/playbooks/package-check-failure.yml
parentInitial commit. (diff)
downloadansible-lint-d964cec5e6aa807b75c7a4e7cdc5f11e54b2eda2.tar.xz
ansible-lint-d964cec5e6aa807b75c7a4e7cdc5f11e54b2eda2.zip
Adding upstream version 6.13.1.upstream/6.13.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--examples/playbooks/package-check-failure.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/playbooks/package-check-failure.yml b/examples/playbooks/package-check-failure.yml
new file mode 100644
index 0000000..393b52b
--- /dev/null
+++ b/examples/playbooks/package-check-failure.yml
@@ -0,0 +1,21 @@
+---
+- hosts: localhost
+ tasks:
+ - name: Install ansible
+ ansible.builtin.yum: name=ansible state=latest
+
+ - name: Install ansible-lint
+ ansible.builtin.pip: name=ansible-lint
+ args:
+ state: latest
+
+ - name: Install some-package
+ ansible.builtin.package:
+ name: some-package
+ state: latest
+
+ - name: Install ansible with update_only to false
+ ansible.builtin.yum:
+ name: sudo
+ state: latest
+ update_only: false