From b5941d36c4abeaab25300b6abc505a9c50f77fdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavi=20Lle=C3=B3=20Tom=C3=A1s?= Date: Tue, 7 Jan 2025 14:14:24 +0100 Subject: [PATCH] Refs #8142: Samba Server Deploy - Role WIP - Samba host to File hosts refactor --- roles/services/tasks/adsamba.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roles/services/tasks/adsamba.yml b/roles/services/tasks/adsamba.yml index fe8b880..8a2f1e1 100644 --- a/roles/services/tasks/adsamba.yml +++ b/roles/services/tasks/adsamba.yml @@ -1,3 +1,11 @@ +# Provisioning of Samba. Samba is able to serve as an Active Directory (AD) domain controller (DC). +# The entire process of setting up a Samba domain controller consists of 5 steps which are relatively straight forward. These steps are as follows: +# 1. Installation of Samba and associated packages +# 2. Deletion of pre-configured Samba and Kerberos placeholder configuration files +# 3. Provisioning of Samba using the automatic provisioning tool +# 4. Editing of the smb.conf as needed (enabling of Group Policy and/or other features as needed) see Group Policy for more information +# 5. Any environmental configuration based on Unix/Linux Distribution + - name: Install adSamba packages package: name: "{{ dcsamba_base_packages }}"