Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions templates/sssd.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 %}