From 5a39683bddf3ffd8cf1ff0e5bd77bd63e59c6e46 Mon Sep 17 00:00:00 2001 From: Jose Date: Mon, 3 Nov 2025 17:44:22 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20setupacdc.yml?= =?UTF-8?q?=20to=20use=20Ansible's=20built-in=20variables?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the container_password variable from a string interpolation to a raw string literal, and removed the commented out line for deploying the Samba AD DC role. This change simplifies the playbook and reduces potential issues with variable expansion. --- tasks/setupacdc.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 91407f4..38281fd 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -13,7 +13,7 @@ container_template: "/var/lib/vz/template/cache/debian-13-standard_13.1-1_amd64.tar.zst" container_ostype: debian container_hostname: "{{ addc_hostname }}" - container_password: "{{ addc_admin_password }}" + container_password: {{ addc_admin_password }} container_storage: local-lvm container_rootfs_size: 8G container_memory: 1024 @@ -138,9 +138,9 @@ notify: Restart sshd tags: [timezone] - - name: Deploy the Samba AD DC role - ansible.builtin.include_role: - name: ansible_samba_ad_dc + # - name: Deploy the Samba AD DC role + # ansible.builtin.include_role: + # name: ansible_samba_ad_dc # --- Global Handlers ----------------------------------------------