chore 📦: Update setupacdc.yml to use Ansible's built-in variables

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.
This commit is contained in:
2025-11-03 17:44:22 +01:00
parent 0241afcd2e
commit 5a39683bdd

View File

@@ -13,7 +13,7 @@
container_template: "/var/lib/vz/template/cache/debian-13-standard_13.1-1_amd64.tar.zst" container_template: "/var/lib/vz/template/cache/debian-13-standard_13.1-1_amd64.tar.zst"
container_ostype: debian container_ostype: debian
container_hostname: "{{ addc_hostname }}" container_hostname: "{{ addc_hostname }}"
container_password: "{{ addc_admin_password }}" container_password: {{ addc_admin_password }}
container_storage: local-lvm container_storage: local-lvm
container_rootfs_size: 8G container_rootfs_size: 8G
container_memory: 1024 container_memory: 1024
@@ -138,9 +138,9 @@
notify: Restart sshd notify: Restart sshd
tags: [timezone] tags: [timezone]
- name: Deploy the Samba AD DC role # - name: Deploy the Samba AD DC role
ansible.builtin.include_role: # ansible.builtin.include_role:
name: ansible_samba_ad_dc # name: ansible_samba_ad_dc
# --- Global Handlers ---------------------------------------------- # --- Global Handlers ----------------------------------------------