This commit is contained in:
rcordier 2024-05-22 12:07:17 -04:00
parent 3177e4da36
commit 5aaabad608

View File

@ -1,5 +1,27 @@
- name: Debug context
hosts: localhost
gather_facts: no
pre_tasks:
- name: get debug infos
shell:
cmd: |-
ansible-galaxy collection list || true
register: output1
- name: Show collections
debug:
var: output1
- name: Hello World - name: Hello World
hosts: localhost hosts: localhost
gather_facts: no gather_facts: no
@ -22,7 +44,8 @@
debug: debug:
var: output var: output
- name: Hello World
- name: Configure Web
hosts: web hosts: web
gather_facts: no gather_facts: no
@ -31,7 +54,7 @@
import_role: import_role:
name: activia.infra_common.configure_web name: activia.infra_common.configure_web
- name: Hello World - name: Configure DB
hosts: db hosts: db
gather_facts: no gather_facts: no