Hello community, here is the log from the commit of package yast2-pam for openSUSE:Factory checked in at 2020-10-18 16:23:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-pam (Old) and /work/SRC/openSUSE:Factory/.yast2-pam.new.3486 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-pam" Sun Oct 18 16:23:23 2020 rev:42 rq:841797 version:4.3.3 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-pam/yast2-pam.changes 2020-07-30 10:00:11.131224262 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-pam.new.3486/yast2-pam.changes 2020-10-18 16:23:37.988549891 +0200 @@ -1,0 +2,7 @@ +Wed Oct 14 12:42:35 UTC 2020 - Josef Reidinger <jreidin...@suse.com> + +- Fix initialize of packager to not break command line + (bsc#1177632) +- 4.3.3 + +------------------------------------------------------------------- Old: ---- yast2-pam-4.3.2.tar.bz2 New: ---- yast2-pam-4.3.3.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-pam.spec ++++++ --- /var/tmp/diff_new_pack.qyRRai/_old 2020-10-18 16:23:39.604550610 +0200 +++ /var/tmp/diff_new_pack.qyRRai/_new 2020-10-18 16:23:39.608550612 +0200 @@ -1,7 +1,7 @@ # # spec file for package yast2-pam # -# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,12 +12,12 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: yast2-pam -Version: 4.3.2 +Version: 4.3.3 Release: 0 Summary: YaST2 - PAM Agent License: GPL-2.0-only ++++++ yast2-pam-4.3.2.tar.bz2 -> yast2-pam-4.3.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-pam-4.3.2/package/yast2-pam.changes new/yast2-pam-4.3.3/package/yast2-pam.changes --- old/yast2-pam-4.3.2/package/yast2-pam.changes 2020-07-28 14:27:50.000000000 +0200 +++ new/yast2-pam-4.3.3/package/yast2-pam.changes 2020-10-14 17:06:27.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Wed Oct 14 12:42:35 UTC 2020 - Josef Reidinger <jreidin...@suse.com> + +- Fix initialize of packager to not break command line + (bsc#1177632) +- 4.3.3 + +------------------------------------------------------------------- Tue Jul 28 11:35:47 UTC 2020 - Ancor Gonzalez Sosa <an...@suse.com> - Fixed a bug, introduced in the latest version, related to diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-pam-4.3.2/package/yast2-pam.spec new/yast2-pam-4.3.3/package/yast2-pam.spec --- old/yast2-pam-4.3.2/package/yast2-pam.spec 2020-07-28 14:27:50.000000000 +0200 +++ new/yast2-pam-4.3.3/package/yast2-pam.spec 2020-10-14 17:06:27.000000000 +0200 @@ -16,7 +16,7 @@ # Name: yast2-pam -Version: 4.3.2 +Version: 4.3.3 Release: 0 Summary: YaST2 - PAM Agent diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-pam-4.3.2/src/modules/Autologin.rb new/yast2-pam-4.3.3/src/modules/Autologin.rb --- old/yast2-pam-4.3.2/src/modules/Autologin.rb 2020-07-28 14:27:50.000000000 +0200 +++ new/yast2-pam-4.3.3/src/modules/Autologin.rb 2020-10-14 17:06:27.000000000 +0200 @@ -56,9 +56,6 @@ # Login without passwords? @pw_less = false - # Is autologin feature available? - @available = supported? - # Is autologin used? Usualy true when user is not empty, but for the first # time (during installation), this can be true by default although user is "" # (depends on the control file) @@ -71,6 +68,11 @@ @pkg_initialized = false end + def available + @available = supported? if @available.nil? + @available + end + # Read autologin settings # @return used? def Read @@ -102,7 +104,7 @@ # @param [Boolean] write_only when true, suseconfig script will not be run # @return written anything? def Write(write_only) - return false if !@available || !@modified + return false if !available || !@modified Builtins.y2milestone( "writing user %1 for autologin; pw_less is %2", @@ -212,7 +214,6 @@ publish :variable => :user, :type => "string" publish :variable => :pw_less, :type => "boolean" - publish :variable => :available, :type => "boolean" publish :variable => :used, :type => "boolean" publish :variable => :modified, :type => "boolean" publish :function => :Read, :type => "boolean ()"