Skip to content

Commit

Permalink
Merge pull request #84 from scabrero/SLE-12-SP5
Browse files Browse the repository at this point in the history
Default bind_policy to 'soft' if not present in the config
  • Loading branch information
scabrero authored Feb 21, 2020
2 parents b682f4b + 92ac0ff commit 0a7999d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
7 changes: 7 additions & 0 deletions package/yast2-auth-client.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Jan 30 09:57:03 UTC 2020 - Samuel Cabrero <scabrero@suse.de>

- Default bind_policy to 'soft' if not present in the config
(bsc#1162025).
- 3.3.19

-------------------------------------------------------------------
Fri Nov 3 14:56:08 UTC 2017 - hguo@suse.com

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-auth-client.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-auth-client
Version: 3.3.18
Version: 3.3.19
Release: 0
Url: https://github.com/yast/yast-auth-client
Summary: YaST2 - Centralised System Authentication Configuration
Expand Down
6 changes: 6 additions & 0 deletions src/lib/authui/ldapkrb/main_dialog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,12 @@ def save_ldap
when :ldap_tls_method_starttls
AuthConfInst.ldap_conf['ssl'] = 'start_tls'
end

# bsc#1162025: Default bind_policy to soft if not present.
if !AuthConfInst.ldap_conf.key?('bind_policy')
AuthConfInst.ldap_conf['bind_policy'] = 'soft'
end

AuthConfInst.mkhomedir_pam = UI.QueryWidget(Id(:mkhomedir_enable), :Value)
end

Expand Down

0 comments on commit 0a7999d

Please sign in to comment.