From: Guillaume Abrioux Date: Tue, 5 Jul 2022 08:27:39 +0000 (+0200) Subject: facts: fix set_radosgw_address.yml X-Git-Tag: v6.0.28~23 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=62c42cd06bdd36e26b445c385ac03258fbfc3598;p=ceph-ansible.git facts: fix set_radosgw_address.yml use `include_tasks` instead of `import_tasks`. Given that with `import_tasks` statements are preprocessed and the tasks that defines it hasn't been run yet, it will fail and complain like following: ``` The error was: 'ansible.vars.hostvars.HostVarsVars object' has no attribute '_interface' ``` Using `include_tasks` instead fixes this. Signed-off-by: Guillaume Abrioux (cherry picked from commit 434793e2feec64fdbbb8a7bdb959b08dacbb2006) --- diff --git a/roles/ceph-facts/tasks/facts.yml b/roles/ceph-facts/tasks/facts.yml index ae1a2dc08..0700cfb58 100644 --- a/roles/ceph-facts/tasks/facts.yml +++ b/roles/ceph-facts/tasks/facts.yml @@ -253,7 +253,7 @@ when: groups.get(mon_group_name, []) | length > 0 - name: import_tasks set_radosgw_address.yml - import_tasks: set_radosgw_address.yml + include_tasks: set_radosgw_address.yml when: inventory_hostname in groups.get(rgw_group_name, []) - name: set_fact use_new_ceph_iscsi package or old ceph-iscsi-config/cli