From e9382d195f524505d2cb5d96b9165d8c1e59e888 Mon Sep 17 00:00:00 2001 From: Jose Date: Mon, 3 Nov 2025 21:11:30 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Update=20debug=20messag?= =?UTF-8?q?e=20with=20new=20variable?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the debug message to include a new variable, allowing for more flexibility in the output. This change improves the readability and maintainability of the Ansible playbook. --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 79e50b3..bc866e2 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,7 +1,7 @@ --- - name: Say hello ansible.builtin.debug: - msg: "Hello {{ samba_domain_info.adminpass }}" + msg: "Hello {{ samba_domain_info.adminpass }} & {{addc_admin_password}}" - name: Prepare for Samba AD DC include_tasks: preparing.yml