Update to 2021-03-11 19:00

master
Daniel Berteaud 4 years ago
parent 7520ee77f8
commit 8cebb645b8
  1. 3
      roles/sssd_ad_auth/defaults/main.yml
  2. 3
      roles/sssd_ad_auth/templates/sssd.conf.j2

@ -14,6 +14,9 @@ ad_gpo_access_control: permissive
# If set to True, ansible will re join the host to the domain
ad_force_join: False
# Set to false to disable dyndns update
ad_dyndns_update: True
# sssd doesn't support cross forest approbations, but we can add the Linux box to the other domains
ad_trusted_domains: "{{ samba_trusted_domains | default([]) }}"
# ad_trusted_domains:

@ -33,6 +33,9 @@ ad_maximum_machine_account_password_age = 0
enumerate = true
{% endif %}
ad_gpo_access_control = {{ ad_gpo_access_control }}
{% if not ad_dyndns_update %}
dyndns_update = false
{% endif %}
{% for domain in ad_trusted_domains %}

Loading…
Cancel
Save