mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-11 11:15:55 +00:00
service: Use FQCN for ansible.builtin
Use Fully Qualified Collection Name (FQCN) for ansible builtins. This is ansible.builtin.set_fact instead of set_fact for example and aplies for all actions that are part of ansible.builtin. All the replaced ansible.builtins: assert, command, copy, debug, fail, fetch, file, import_playbook, import_tasks, include_role, include_tasks, include_vars, package, set_fact, shell, slurp, stat, systemd
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
tasks:
|
||||
# setup
|
||||
- name: Setup test envirnoment.
|
||||
include_tasks: env_setup.yml
|
||||
ansible.builtin.include_tasks: env_setup.yml
|
||||
|
||||
# Add service to test keytab create/retrieve attributes.
|
||||
- name: Ensure test service is present
|
||||
@@ -394,4 +394,4 @@
|
||||
|
||||
# cleanup
|
||||
- name: Clean-up envirnoment.
|
||||
include_tasks: env_cleanup.yml
|
||||
ansible.builtin.include_tasks: env_cleanup.yml
|
||||
|
||||
Reference in New Issue
Block a user