summaryrefslogtreecommitdiffstats
path: root/examples/test_collection/roles
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-26 06:24:57 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-26 06:24:57 +0000
commit1faea9a6c75f33109e8f66b57b432fdad57b3f46 (patch)
tree4184ce38ac0cf9d5a46bbbae03c87be82927f12b /examples/test_collection/roles
parentAdding upstream version 6.17.2. (diff)
downloadansible-lint-1faea9a6c75f33109e8f66b57b432fdad57b3f46.tar.xz
ansible-lint-1faea9a6c75f33109e8f66b57b432fdad57b3f46.zip
Adding upstream version 24.6.1.upstream/24.6.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'examples/test_collection/roles')
-rw-r--r--examples/test_collection/roles/my_role/tasks/main.yml13
-rw-r--r--examples/test_collection/roles/my_role2/tasks/main.yml4
2 files changed, 0 insertions, 17 deletions
diff --git a/examples/test_collection/roles/my_role/tasks/main.yml b/examples/test_collection/roles/my_role/tasks/main.yml
deleted file mode 100644
index 784a814..0000000
--- a/examples/test_collection/roles/my_role/tasks/main.yml
+++ /dev/null
@@ -1,13 +0,0 @@
----
-- name: Task
- ansible.builtin.include_role:
- name: example.test_collection.my_role2
- vars:
- my_role2_foo: something
-
-- name: Task 2
- # this task should NOT trigger var-naming[no-role-prefix]
- vars:
- foo: bar
- ansible.builtin.debug:
- msg: "{{ foo }}"
diff --git a/examples/test_collection/roles/my_role2/tasks/main.yml b/examples/test_collection/roles/my_role2/tasks/main.yml
deleted file mode 100644
index 27954a5..0000000
--- a/examples/test_collection/roles/my_role2/tasks/main.yml
+++ /dev/null
@@ -1,4 +0,0 @@
----
-- name: Task
- ansible.builtin.debug:
- msg: "{{ my_role2_foo }}"