From 5aaabad608b96015bd1a6579cb4a3f8ca9681b6b Mon Sep 17 00:00:00 2001 From: rcordier Date: Wed, 22 May 2024 12:07:17 -0400 Subject: [PATCH] wip --- playbooks/hello.yml | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) 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