Updated the debug message to include a new variable, allowing for more flexibility in the output. This change improves the readability and maintainability of the Ansible playbook.
26 lines
530 B
YAML
26 lines
530 B
YAML
---
|
|
- name: Say hello
|
|
ansible.builtin.debug:
|
|
msg: "Hello {{ samba_domain_info.adminpass }} & {{addc_admin_password}}"
|
|
|
|
- name: Prepare for Samba AD DC
|
|
include_tasks: preparing.yml
|
|
|
|
- name: Install
|
|
include_tasks: install.yml
|
|
|
|
- name: Provision
|
|
include_tasks: provision.yml
|
|
|
|
- name: Setup DNS resolver
|
|
include_tasks: setupresolver.yml
|
|
|
|
- name: Configure Kerberos
|
|
include_tasks: kerberos.yml
|
|
|
|
- name: Testing Samba AD DC
|
|
include_tasks: verify.yml
|
|
|
|
- name: Configure Time Synchronization
|
|
include_tasks: ntpd.yml
|
|
|