mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
13 lines
341 B
YAML
13 lines
341 B
YAML
---
|
|
- name: import a task
|
|
hosts: containers
|
|
gather_facts: false
|
|
tasks:
|
|
- debug:
|
|
msg: "{{ item }}"
|
|
loop: "{{ selected_containers | split(',') }}"
|
|
when: inventory_hostname in groups['morefine-server']
|
|
|
|
- debug:
|
|
msg: "{{ selected_host }}"
|
|
when: inventory_hostname in groups['morefine-server'] |