[yast-commit] r62260 - in /trunk/pam: VERSION package/yast2-pam.changes src/Pam.ycp
Author: jsuchome Date: Thu Jul 15 13:30:52 2010 New Revision: 62260 URL: http://svn.opensuse.org/viewcvs/yast?rev=62260&view=rev Log: - use full path for pam-config - 2.19.2 Modified: trunk/pam/VERSION trunk/pam/package/yast2-pam.changes trunk/pam/src/Pam.ycp Modified: trunk/pam/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/pam/VERSION?rev=62260&r1=62259&r2... ============================================================================== --- trunk/pam/VERSION (original) +++ trunk/pam/VERSION Thu Jul 15 13:30:52 2010 @@ -1 +1 @@ -2.19.1 +2.19.2 Modified: trunk/pam/package/yast2-pam.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/pam/package/yast2-pam.changes?rev... ============================================================================== --- trunk/pam/package/yast2-pam.changes (original) +++ trunk/pam/package/yast2-pam.changes Thu Jul 15 13:30:52 2010 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Jul 15 13:30:24 CEST 2010 - jsuchome@suse.cz + +- use full path for pam-config +- 2.19.2 + +------------------------------------------------------------------- Tue Feb 23 10:56:16 CET 2010 - jsuchome@suse.cz - lxdm can also suport autologin (bnc#581477) Modified: trunk/pam/src/Pam.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/pam/src/Pam.ycp?rev=62260&r1=6225... ============================================================================== --- trunk/pam/src/Pam.ycp (original) +++ trunk/pam/src/Pam.ycp Thu Jul 15 13:30:52 2010 @@ -22,7 +22,7 @@ global map Query (string mod) { map ret = $[]; - map out = (map)SCR::Execute (.target.bash_output, "pam-config -q --" + mod); + map out = (map)SCR::Execute (.target.bash_output, "/usr/sbin/pam-config -q --" + mod); if (out["exit"]:0 != 0) { y2warning ("pam-config for %1 returned %2", mod, out); @@ -53,7 +53,7 @@ */ global boolean Add (string mod) { - map out = (map)SCR::Execute (.target.bash_output, "pam-config -a --" + mod); + map out = (map)SCR::Execute (.target.bash_output, "/usr/sbin/pam-config -a --" + mod); if (out["exit"]:0 != 0) { y2warning ("pam-config for %1 returned %2", mod, out); @@ -69,7 +69,7 @@ */ global boolean Remove (string mod) { - map out = (map)SCR::Execute (.target.bash_output, "pam-config -d --" + mod); + map out = (map)SCR::Execute (.target.bash_output, "/usr/sbin/pam-config -d --" + mod); if (out["exit"]:0 != 0) { y2warning ("pam-config for %1 returned %2", mod, out); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsuchome@svn.opensuse.org