ansible/playbooks/sync_all_test.yaml
2024-11-14 11:51:47 +01:00

19 lines
558 B
YAML

---
- name: import a task
hosts: containers
gather_facts: false
vars:
listjojocomma: "{{ selected_containers | replace('[', '')| replace(']','')|[split(',') }}"
tasks:
- debug:
msg: "{{ listjojocomma }}"
when: inventory_hostname in groups['morefine-server']
- debug:
msg: "{{ item }}"
loop: "{{ listjojocomma }}"
when: inventory_hostname in groups['morefine-server']
- debug:
msg: "{{ item }}"
loop: "{{ selected_host }}"
when: inventory_hostname in groups['morefine-server']