mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-02-02 22:48:48 +00:00
16 lines
450 B
YAML
16 lines
450 B
YAML
---
|
|
- name: import a task
|
|
hosts: containers
|
|
gather_facts: false
|
|
vars:
|
|
listjojocomma: "{{ selected_containers | split(',') }}"
|
|
#listjojocomma: "{{ selected_containers | from_json }}"
|
|
tasks:
|
|
- debug:
|
|
msg: "{{ item }}"
|
|
loop: "{{ listjojocomma }}"
|
|
when: inventory_hostname in groups['morefine-server']
|
|
|
|
- debug:
|
|
msg: "{{ selected_host }}"
|
|
when: inventory_hostname in groups['morefine-server'] |