From d546b4614ddded18855d12f3030459e10b4158bf Mon Sep 17 00:00:00 2001 From: Thomas Woerner <twoerner@redhat.com> Date: Tue, 20 Dec 2022 13:49:50 +0100 Subject: [PATCH] hbac*: 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/hbacrule/test_hbacrule.yml | 2 +- tests/hbacrule/test_hbacrule_client_context.yml | 6 +++--- tests/hbacrule/test_hbacrule_member_case_insensitive.yml | 2 +- tests/hbacrule/test_hbacrule_member_empty.yml | 2 +- tests/hbacsvc/test_hbacsvc_client_context.yml | 6 +++--- tests/hbacsvcgroup/test_hbacsvcgroup_client_context.yml | 6 +++--- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/hbacrule/test_hbacrule.yml b/tests/hbacrule/test_hbacrule.yml index 0c161644..7699360e 100644 --- a/tests/hbacrule/test_hbacrule.yml +++ b/tests/hbacrule/test_hbacrule.yml @@ -5,7 +5,7 @@ tasks: - name: Get Domain from server name - set_fact: + ansible.builtin.set_fact: ipaserver_domain: "{{ ansible_facts['fqdn'].split('.')[1:] | join ('.') }}" when: ipaserver_domain is not defined diff --git a/tests/hbacrule/test_hbacrule_client_context.yml b/tests/hbacrule/test_hbacrule_client_context.yml index bafc93c5..fa5056c8 100644 --- a/tests/hbacrule/test_hbacrule_client_context.yml +++ b/tests/hbacrule/test_hbacrule_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 hbacrule using client context, in client host. - import_playbook: test_hbacrule.yml + ansible.builtin.import_playbook: test_hbacrule.yml when: groups['ipaclients'] vars: ipa_test_host: ipaclients - name: Test hbacrule using client context, in server host. - import_playbook: test_hbacrule.yml + ansible.builtin.import_playbook: test_hbacrule.yml when: groups['ipaclients'] is not defined or not groups['ipaclients'] vars: ipa_context: client diff --git a/tests/hbacrule/test_hbacrule_member_case_insensitive.yml b/tests/hbacrule/test_hbacrule_member_case_insensitive.yml index 5f4e010a..da47f393 100644 --- a/tests/hbacrule/test_hbacrule_member_case_insensitive.yml +++ b/tests/hbacrule/test_hbacrule_member_case_insensitive.yml @@ -25,7 +25,7 @@ - sVCgrOUp1 tasks: - - include_tasks: ../env_freeipa_facts.yml + - ansible.builtin.include_tasks: ../env_freeipa_facts.yml - block: # setup diff --git a/tests/hbacrule/test_hbacrule_member_empty.yml b/tests/hbacrule/test_hbacrule_member_empty.yml index 92dcac93..0238dc47 100644 --- a/tests/hbacrule/test_hbacrule_member_empty.yml +++ b/tests/hbacrule/test_hbacrule_member_empty.yml @@ -5,7 +5,7 @@ tasks: - name: Get Domain from server name - set_fact: + ansible.builtin.set_fact: ipaserver_domain: "{{ ansible_facts['fqdn'].split('.')[1:] | join ('.') }}" when: ipaserver_domain is not defined diff --git a/tests/hbacsvc/test_hbacsvc_client_context.yml b/tests/hbacsvc/test_hbacsvc_client_context.yml index 25b2f8f3..5c2e9417 100644 --- a/tests/hbacsvc/test_hbacsvc_client_context.yml +++ b/tests/hbacsvc/test_hbacsvc_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 hbacsvc using client context, in client host. - import_playbook: test_hbacsvc.yml + ansible.builtin.import_playbook: test_hbacsvc.yml when: groups['ipaclients'] vars: ipa_test_host: ipaclients - name: Test hbacsvc using client context, in server host. - import_playbook: test_hbacsvc.yml + ansible.builtin.import_playbook: test_hbacsvc.yml when: groups['ipaclients'] is not defined or not groups['ipaclients'] vars: ipa_context: client diff --git a/tests/hbacsvcgroup/test_hbacsvcgroup_client_context.yml b/tests/hbacsvcgroup/test_hbacsvcgroup_client_context.yml index cc433ac2..6fd73d6d 100644 --- a/tests/hbacsvcgroup/test_hbacsvcgroup_client_context.yml +++ b/tests/hbacsvcgroup/test_hbacsvcgroup_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 hbacsvcgroup using client context, in client host. - import_playbook: test_hbacsvcgroup.yml + ansible.builtin.import_playbook: test_hbacsvcgroup.yml when: groups['ipaclients'] vars: ipa_test_host: ipaclients - name: Test hbacsvcgroup using client context, in server host. - import_playbook: test_hbacsvcgroup.yml + ansible.builtin.import_playbook: test_hbacsvcgroup.yml when: groups['ipaclients'] is not defined or not groups['ipaclients'] vars: ipa_context: client -- GitLab