From: Guillaume Abrioux Date: Thu, 28 Nov 2019 14:12:59 +0000 (+0100) Subject: docker2podman: do not hardcode group name X-Git-Tag: v6.0.0alpha1~195 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7fe0d55efff1b3ec9571ba3f6881d68cfa66ffed;p=ceph-ansible.git docker2podman: do not hardcode group name let's use `client_group_name` instead of hardcoding the name. Signed-off-by: Guillaume Abrioux --- diff --git a/infrastructure-playbooks/docker-to-podman.yml b/infrastructure-playbooks/docker-to-podman.yml index fad21f5a6..65f4668c1 100644 --- a/infrastructure-playbooks/docker-to-podman.yml +++ b/infrastructure-playbooks/docker-to-podman.yml @@ -33,7 +33,7 @@ setup: delegate_to: "{{ item }}" delegate_facts: True - with_items: "{{ groups['all'] | difference(groups.get('clients', [])) }}" + with_items: "{{ groups['all'] | difference(groups.get(client_group_name | default('clients'), [])) }}" run_once: true when: delegate_facts_host | bool