https://bugzilla.novell.com/show_bug.cgi?id=814626 https://bugzilla.novell.com/show_bug.cgi?id=814626#c18 --- Comment #18 from Stanislav Brabec <sbrabec@suse.com> 2013-09-16 20:48:20 CEST --- Ad comment 17: Well, first problem localized: There is a known problem while upgrading symlink to file or directory by rpm. Exactly this happens if somebody installs Factory as upgrade: /etc/pam.d/su-l remains to be a link to /etc/pam.d/su-l.core (which does not exist), and the new file is installed as /etc/pam.d/su-l.rpmnew /etc/pam.d/su remains to be a link to /etc/pam.d/su.core (which does not exist), and the new file is installed as /etc/pam.d/su.rpmnew Manual fixing of this issue: if test -L /etc/pam.d/su ; then rm /etc/pam.d/su if test -f /etc/pam.d/su.rpmnew ; then mv /etc/pam.d/su.rpmnew /etc/pam.d/su else echo "Error: /etc/pam.d/su is a link, but /etc/pam.d/su.rpmnew does not exist." exit 1 fi fi if test -L /etc/pam.d/su-l ; then rm /etc/pam.d/su-l if test -f /etc/pam.d/su-l.rpmnew ; then mv /etc/pam.d/su-l.rpmnew /etc/pam.d/su-l else echo "Error: /etc/pam.d/su-l is a link, but /etc/pam.d/su-l.rpmnew does not exist." exit 1 fi fi gnomesu starts to work after this fix, but it still does not work properly: There is about 20 seconds delay between entering password and application start. Note: I'll look into an old version, whether it makes sense to keep su.core and su-l.core. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.