From ac354643c59168e25f8caefcdfdf8874a07d3c34 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Tue, 2 Jan 2018 23:39:43 -0600 Subject: [PATCH] samba-dc: Playbook to deploy Samba AD DCs The `samba-dc.yml` playbook simply applies the *samba-dc* role to managed nodes in the *samba-dc* host group. --- group_vars/samba-dc.yml | 14 ++++++++++++++ samba-dc.yml | 4 ++++ 2 files changed, 18 insertions(+) create mode 100644 group_vars/samba-dc.yml create mode 100644 samba-dc.yml diff --git a/group_vars/samba-dc.yml b/group_vars/samba-dc.yml new file mode 100644 index 0000000..d0f449b --- /dev/null +++ b/group_vars/samba-dc.yml @@ -0,0 +1,14 @@ +named_keytab: /var/lib/samba/bind-dns/dns.keytab +named_global_include: +- /var/lib/samba/bind-dns/named.conf +samba_dc_dns_backend: BIND9_DLZ +named_listen: +- addresses: + - any +named_listen_v6: +- addresses: + - any +named_allow_query: +- any +named_allow_update: +- any diff --git a/samba-dc.yml b/samba-dc.yml new file mode 100644 index 0000000..7446ec5 --- /dev/null +++ b/samba-dc.yml @@ -0,0 +1,4 @@ +- hosts: samba-dc + roles: + - kerberos + - samba-dc