Skip to content
Snippets Groups Projects
Commit 9fafb410 authored by ak@geant.org's avatar ak@geant.org
Browse files

Fixing modules FQCN

parent 4ba3f6ab
No related branches found
No related tags found
2 merge requests!2Cic changes,!1Cic changes
Pipeline #84230 failed
......@@ -9,7 +9,7 @@
when: ((verb is not defined) or (config_object is not defined)) or (verb not in verbs) or (config_object not in config_objects.keys())
- name: Fail if arguments are not correct
meta: end_play
ansible.builtin.meta: end_play
when: ((verb is not defined) or (config_object is not defined)) or (verb not in verbs) or (config_object not in config_objects.keys())
- name: Set an ID for this run
......@@ -46,13 +46,13 @@
expected_type: 'list'
- name: Include compiling the template
include_tasks: compile_template.yaml
ansible.builtin.include_tasks: compile_template.yaml
when: (verb in verbs)
- name: Include the test tasks if specified
include_tasks: test_template.yaml
ansible.builtin.include_tasks: test_template.yaml
when: verb == "test"
- name: Include the test tasks if specified
include_tasks: fix_template.yaml
ansible.builtin.include_tasks: fix_template.yaml
when: verb == "fix"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment