feat : Add debug output for krb5.conf path

Added a debug output to display the path of krb5.conf, making it easier to diagnose issues with Samba provisioning.
This commit is contained in:
2025-11-05 21:46:42 +01:00
parent 9cad7d3b64
commit e74f9bdb31

View File

@@ -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 }}'