ansible/playbooks/sync_all_test.yaml
2024-11-14 12:01:26 +01:00

20 lines
583 B
YAML

---
- name: import a task
hosts: containers
gather_facts: false
vars:
listjojocomma: "{{ selected_containers | split(',') }}"
#listjojocomma: "{{ selected_containers | from_json }}"
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']