From e74f9bdb31ec28e681e0a1a96cea410b376d83b1 Mon Sep 17 00:00:00 2001 From: Jose Date: Wed, 5 Nov 2025 21:46:42 +0100 Subject: [PATCH] =?UTF-8?q?feat=20=E2=9C=A8:=20Add=20debug=20output=20for?= =?UTF-8?q?=20krb5.conf=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a debug output to display the path of krb5.conf, making it easier to diagnose issues with Samba provisioning. --- tasks/kerberos.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tasks/kerberos.yml b/tasks/kerberos.yml index 5064b6c..57f6f90 100644 --- a/tasks/kerberos.yml +++ b/tasks/kerberos.yml @@ -9,6 +9,10 @@ ) | default('', true) }} when: samba_provision_output.stdout is defined +- name: print krb5.conf path + ansible.builtin.debug: + msg: "Krb5.conf path: {{ krb5_conf_path }}" + - name: Copy krb5.conf to /etc/krb5.conf ansible.builtin.copy: src: '{{ krb5_conf_path }}'