summaryrefslogtreecommitdiffstats
path: root/examples/playbooks/skiptasks.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:06:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 12:06:49 +0000
commit2fe34b6444502079dc0b84365ce82dbc92de308e (patch)
tree8fedcab52bbbc3db6c5aa909a88a7a7b81685018 /examples/playbooks/skiptasks.yml
parentInitial commit. (diff)
downloadansible-lint-2fe34b6444502079dc0b84365ce82dbc92de308e.tar.xz
ansible-lint-2fe34b6444502079dc0b84365ce82dbc92de308e.zip
Adding upstream version 6.17.2.upstream/6.17.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'examples/playbooks/skiptasks.yml')
-rw-r--r--examples/playbooks/skiptasks.yml64
1 files changed, 64 insertions, 0 deletions
diff --git a/examples/playbooks/skiptasks.yml b/examples/playbooks/skiptasks.yml
new file mode 100644
index 0000000..e105ed3
--- /dev/null
+++ b/examples/playbooks/skiptasks.yml
@@ -0,0 +1,64 @@
+---
+- hosts: all
+
+ tasks:
+ - name: Test latest[git]
+ action: ansible.builtin.git
+
+ - name: Test latest[hg]
+ action: ansible.builtin.hg
+
+ - name: Test command-instead-of-module
+ ansible.builtin.command: git log
+ changed_when: false
+
+ - name: Test no-free-form
+ ansible.builtin.command: creates=B chmod 644 A
+
+ - name: Test latest[git] (skip)
+ action: ansible.builtin.git
+ tags:
+ - skip_ansible_lint
+
+ - name: Test latest[hg] (skip)
+ action: ansible.builtin.hg
+ tags:
+ - skip_ansible_lint
+
+ - name: Test command-instead-of-module (skip)
+ ansible.builtin.command: git log
+ tags:
+ - skip_ansible_lint
+
+ - name: Test no-free-form (skip)
+ ansible.builtin.command: chmod 644 A
+ tags:
+ - skip_ansible_lint
+
+ - name: Test latest[git] (don't warn)
+ ansible.builtin.command: git log
+ args:
+ warn: false
+ changed_when: false
+
+ - name: Test latest[hg] (don't warn)
+ ansible.builtin.command: chmod 644 A
+ args:
+ warn: false
+ creates: B
+
+ - name: Test latest[hg] (warn)
+ ansible.builtin.command: chmod 644 A
+ args:
+ warn: true
+ creates: B
+
+ - name: Test latest[git] (don't warn single line)
+ ansible.builtin.command: warn=False chdir=/tmp/blah git log
+ changed_when: false
+
+ - name: Test latest[hg] (don't warn single line)
+ ansible.builtin.command: warn=no creates=B chmod 644 A
+
+ - name: Test latest[hg] (warn single line)
+ ansible.builtin.command: warn=yes creates=B chmod 644 A