https://bugzilla.novell.com/show_bug.cgi?id=326794#c8 Marius Tomaschewski <mt@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW Info Provider|mt@novell.com | --- Comment #8 from Marius Tomaschewski <mt@novell.com> 2007-09-21 08:25:01 MST --- Yes, the patch from comment #4 fixes the problem, but I'd also change the order of the fixed lines: return 0 if ($home_size == 0 && $org_size == 0); # nothing to do + return 0 if (!defined $pw && !defined $new_pw); # no change without password provided :-( return 0 if ($home eq $org_home && $username eq $org_username && $home_size == $org_size && $pw eq $new_pw); - return 0 if (!defined $pw && !defined $new_pw); # no change without password provided :-( Just to make the defined checks before $pw eq $new_pw are compared. The "No such file or directory" and "Failed to setup pam_mount" messages are from cryptconfig: 14039 execve("/usr/sbin/cryptconfig", ["cryptconfig", "pm-enable", "--replace", "mt"], [/* 61 vars */]) = 0 [...] 14039 open("/etc/pam.d/gnome-passwd", O_RDWR|O_APPEND) = -1 ENOENT (No such file or directory) 14039 open("/usr/lib64/charset.alias", O_RDONLY) = -1 ENOENT (No such file or directory) 14039 open("/usr/lib64/gconv/gconv-modules.cache", O_RDONLY) = 3 14039 fstat(3, {st_mode=S_IFREG|0644, st_size=25488, ...}) = 0 14039 mmap(NULL, 25488, PROT_READ, MAP_SHARED, 3, 0) = 0x2b19a571d000 14039 close(3) = 0 14039 write(2, "open: No such file or directory\n", 32) = 32 14039 write(2, "Failed to enable pam_mount\n", 27) = 27 14039 exit_group(1) = ? So feel free to reassign to Chris Rivera. -- 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.