style 💎: Update Samba AD DC tasks for better readability and consistency

Refactored the main.yml file to improve organization and clarity. Renamed some tasks to follow a more consistent naming convention, making it easier to understand the flow of the setup process.
This commit is contained in:
2025-11-06 19:10:13 +01:00
parent 51a15d5e04
commit c30201da11
2 changed files with 11 additions and 11 deletions

View File

@@ -1,18 +1,18 @@
--- ---
- name: Prepare for Samba AD DC # - name: Prepare for Samba AD DC
include_tasks: preparing.yml # include_tasks: preparing.yml
- name: Install # - name: Install
include_tasks: install.yml # include_tasks: install.yml
- name: Provision # - name: Provision
include_tasks: provision.yml # include_tasks: provision.yml
- name: Setup DNS resolver # - name: Setup DNS resolver
include_tasks: setupresolver.yml # include_tasks: setupresolver.yml
- name: Configure Kerberos # - name: Configure Kerberos
include_tasks: kerberos.yml # include_tasks: kerberos.yml
- name: Testing Samba AD DC - name: Testing Samba AD DC
include_tasks: verify.yml include_tasks: verify.yml

View File

@@ -15,7 +15,7 @@
responses: responses:
# Use the '(?i)' flag for case-insensitive matching of the prompt. # Use the '(?i)' flag for case-insensitive matching of the prompt.
'(?i)password for.*:': "{{ addc_admin_password }}" '(?i)password for.*:': "{{ addc_admin_password }}"
no_log: true # Highly recommended to prevent the password from appearing in logs no_log: false # Highly recommended to prevent the password from appearing in logs
- name: "Create the PTR (reverse) DNS record" - name: "Create the PTR (reverse) DNS record"
ansible.builtin.expect: ansible.builtin.expect: