From c645841444d57ea107d0d5d90510bd5f624521d6 Mon Sep 17 00:00:00 2001 From: Thomas Woerner <twoerner@redhat.com> Date: Tue, 20 Dec 2022 13:52:52 +0100 Subject: [PATCH] selfservice: 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 --- tests/selfservice/test_selfservice_client_context.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/selfservice/test_selfservice_client_context.yml b/tests/selfservice/test_selfservice_client_context.yml index 04533ab7..fc196a27 100644 --- a/tests/selfservice/test_selfservice_client_context.yml +++ b/tests/selfservice/test_selfservice_client_context.yml @@ -6,7 +6,7 @@ tasks: - name: Include FreeIPA facts. - include_tasks: ../env_freeipa_facts.yml + ansible.builtin.include_tasks: ../env_freeipa_facts.yml # Test will only be executed if host is not a server. - name: Execute with server context in the client. @@ -27,13 +27,13 @@ # in upstream CI. - name: Test selfservice using client context, in client host. - import_playbook: test_selfservice.yml + ansible.builtin.import_playbook: test_selfservice.yml when: groups['ipaclients'] vars: ipa_test_host: ipaclients - name: Test selfservice using client context, in server host. - import_playbook: test_selfservice.yml + ansible.builtin.import_playbook: test_selfservice.yml when: groups['ipaclients'] is not defined or not groups['ipaclients'] vars: ipa_context: client -- GitLab