From 38858590f8b436696920387e739012ccab3b998f Mon Sep 17 00:00:00 2001 From: Jose Date: Wed, 5 Nov 2025 20:49:08 +0100 Subject: [PATCH] =?UTF-8?q?feat=20=E2=9C=A8:=20Add=20debug=20logging=20for?= =?UTF-8?q?=20samba=20provision=20output?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a debug log to display the samba provision output, making it easier to diagnose issues with the provisioning process. --- tasks/provision.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks/provision.yml b/tasks/provision.yml index f3aea06..9df420a 100644 --- a/tasks/provision.yml +++ b/tasks/provision.yml @@ -30,4 +30,7 @@ changed_when: samba_provision_output.rc == 0 no_log: false # You may toggle this if password should be hidden +- name: print provision output + ansible.builtin.debug: + msg: "Provisioning output: {{samba_provision_output}}"