add sssd parameter
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
vincent 2021-08-18 21:35:25 +02:00
parent fc397501f2
commit 30d084e819
3 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,6 @@
--- ---
- hosts: all - hosts: all
gather_facts: false # gather_facts: false
roles: roles:
- ansible-role-sssd
- ansible_bootstrap - ansible_bootstrap

5
group_vars/all/sssd Normal file
View File

@ -0,0 +1,5 @@
sssd_configure: true
# sssd_configure is False by default - by default nothing is done by this role.
ldap_search_base: "dc=ducamps,dc=win"
ldap_uri: "ldaps://ldap.ducamps.win"
ldap_sudo_search_base: "ou=sudoers,dc=ducamps,dc=win"

View File

@ -9,6 +9,7 @@
vars: vars:
ansible_password: "{{ vault_default_root }}" ansible_password: "{{ vault_default_root }}"
roles: roles:
- ansible-role-sssd
- ansible_bootstrap - ansible_bootstrap
- remote_user: "{{ user.name }}" - remote_user: "{{ user.name }}"