This commit adds a new feature to the playbook that configures DNS settings for a Samba AD DC. It includes changes to the `defaults/main.yml` file, `tasks/install.yml`, `tasks/preparing.yml`, `tasks/verify.yml`, and `templates/resolv.conf.j2` files.
62 lines
1.1 KiB
YAML
62 lines
1.1 KiB
YAML
---
|
|
- name: Install required packages
|
|
ansible.builtin.package:
|
|
name:
|
|
- acl
|
|
- attr
|
|
- samba
|
|
- winbind
|
|
- libpam-winbind
|
|
- libnss-winbind
|
|
- krb5-config
|
|
- krb5-user
|
|
- dnsutils
|
|
- python3-setproctitle
|
|
# - smbclient
|
|
state: latest
|
|
|
|
- name: Stop samba-ad-dc before provisioning (if running)
|
|
ansible.builtin.service:
|
|
name: samba-ad-dc
|
|
state: stopped
|
|
enabled: no
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# - name: Check if backup exist
|
|
|
|
# - name: Provision AD domain
|
|
# include_tasks: provision.yml
|
|
|
|
# - name: Deploy smb.conf
|
|
# ansible.builtin.template:
|
|
# src: smb.conf.j2
|
|
# dest: "{{ samba_conf_path }}"
|
|
# owner: root
|
|
# group: root
|
|
# mode: '0644'
|
|
# notify: Restart Samba AD DC
|
|
|
|
# - name: Enable and start samba-ad-dc service
|
|
# ansible.builtin.service:
|
|
# name: samba-ad-dc
|
|
# state: started
|
|
# enabled: yes
|
|
|
|
# - name: Configure Kerberos
|
|
# include_tasks: kerberos.yml
|
|
|
|
# - name: Set DNS resolver and hosts entry
|
|
# include_tasks: dns_hosts.yml
|
|
|
|
# - name: Run verification checks
|
|
# include_tasks: verify.yml
|
|
# when: samba_verify | bool
|