Skip to content

Commit

Permalink
Merge pull request #115 from yast/backport_sp6
Browse files Browse the repository at this point in the history
Backport sp6
  • Loading branch information
jreidinger authored Sep 7, 2023
2 parents f186a6a + aada639 commit 894563b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
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 @@
-------------------------------------------------------------------
Mon Sep 04 16:47:05 UTC 2023 - Martin Vidner <mvidner@suse.com>

- Stop using File.exists? which no longer works in Ruby 3.2
(bsc#1206419)
- 4.6.1

-------------------------------------------------------------------
Fri Sep 01 19:57:03 UTC 2023 - Josef Reidinger <jreidinger@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: 4.6.0
Version: 4.6.1
Release: 0
Url: https://github.com/yast/yast-auth-client
Summary: YaST2 - Centralised System Authentication Configuration
Expand Down
2 changes: 1 addition & 1 deletion src/lib/auth/authconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def sssd_apply
end
end
# Write SSSD config file and correct its permission and ownerships
if File.exists?('/etc/sssd')
if File.exist?('/etc/sssd')
sssd_conf = File.new('/etc/sssd/sssd.conf', 'w')
sssd_conf.chmod(0600)
sssd_conf.chown(0, 0)
Expand Down

0 comments on commit 894563b

Please sign in to comment.