diff --git a/playbooks/hello.yml b/playbooks/hello.yml index 350cc86..2f45328 100644 --- a/playbooks/hello.yml +++ b/playbooks/hello.yml @@ -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 hosts: localhost gather_facts: no @@ -22,7 +44,8 @@ debug: var: output -- name: Hello World + +- name: Configure Web hosts: web gather_facts: no @@ -31,7 +54,7 @@ import_role: name: activia.infra_common.configure_web -- name: Hello World +- name: Configure DB hosts: db gather_facts: no