diff --git a/templates/sssd.conf.j2 b/templates/sssd.conf.j2 index 1342f94..effdfd0 100644 --- a/templates/sssd.conf.j2 +++ b/templates/sssd.conf.j2 @@ -70,9 +70,24 @@ ldap_user_ssh_public_key = {{ domain.ldap_user_ssh_public_key }} {% if domain.ldap_user_email is defined %} ldap_user_email = {{ domain.ldap_user_email }} {% endif %} +{% if domain.ldap_user_gecos is defined %} +ldap_user_gecos = {{ domain.ldap_user_gecos }} +{% endif %} +{% if domain.ldap_pwdlockout_dn is defined %} +ldap_pwdlockout_dn = {{ domain.ldap_pwdlockout_dn }} +{% endif %} +{% if domain.ldap_access_filter is defined %} +ldap_access_filter = {{ domain.ldap_access_filter }} +{% endif %} {% if domain.override_gid is defined %} override_gid = {{ domain.override_gid }} {% endif %} +{% if domain.override_shell is defined %} +override_shell = {{ domain.override_shell }} +{% endif %} +{% if domain.override_homedir is defined %} +override_homedir = {{ domain.override_homedir }} +{% endif %} {# custom group settings #} {% if domain.ldap_group_search_base is defined %} ldap_group_search_base = {{ domain.ldap_group_search_base }} @@ -89,5 +104,11 @@ ldap_group_gid_number = {{ domain.ldap_group_gid_number }} {% if domain.ldap_group_member is defined %} ldap_group_member = {{ domain.ldap_group_member }} {% endif %} +{% if domain.ldap_schema is defined %} +ldap_schema = {{ domain.ldap_schema }} +{% endif %} +{% if domain.cache_credentials is defined %} +cache_credentials = {{ domain.cache_credentials }} +{% endif %} {% endfor %}