Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #10 from willwh/ad-ldap
Browse files Browse the repository at this point in the history
Update LDAP/AD classes & don't quote wrap their values
  • Loading branch information
kevincoakley authored Dec 15, 2017
2 parents c8939ce + 46ef585 commit 4074b97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/shiro.ini.j2
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@

[main]
{% if zeppelin_auth_active_directory_enabled %}
activeDirectoryRealm = org.apache.zeppelin.server.ActiveDirectoryGroupRealm
activeDirectoryRealm = org.apache.zeppelin.realm.ActiveDirectoryGroupRealm
{% for option, value in zeppelin_auth_active_directory_options | default({}) | dictsort %}
activeDirectoryRealm.{{ option }} = "{{ value }}"
activeDirectoryRealm.{{ option }} = {{ value }}
{% endfor %}
{% endif %}

{% if zeppelin_auth_ldap_enabled %}
ldapRealm = org.apache.zeppelin.server.LdapGroupRealm
ldapRealm = org.apache.zeppelin.realm.LdapGroupRealm
{% for option, value in zeppelin_auth_ldap_options | default({}) | dictsort %}
ldapRealm.{{ option }} = "{{ value }}"
ldapRealm.{{ option }} = {{ value }}
{% endfor %}
{% endif %}

Expand Down

0 comments on commit 4074b97

Please sign in to comment.