diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-11-23 14:31:28 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-11-23 14:31:28 +0000 |
commit | e95d8d1c5a1e2941d7a354dcb5290a1b65dcf50a (patch) | |
tree | a9d1b04a8422b44b87eccfc262f59609ea75a32d | |
parent | d47a9867fdbe730f37ea753f40e9dd5ff1b6678a (diff) | |
download | drakx-e95d8d1c5a1e2941d7a354dcb5290a1b65dcf50a.tar drakx-e95d8d1c5a1e2941d7a354dcb5290a1b65dcf50a.tar.gz drakx-e95d8d1c5a1e2941d7a354dcb5290a1b65dcf50a.tar.bz2 drakx-e95d8d1c5a1e2941d7a354dcb5290a1b65dcf50a.tar.xz drakx-e95d8d1c5a1e2941d7a354dcb5290a1b65dcf50a.zip |
fix another xguest file path
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 3bd9da53d..1d9ca6722 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -895,7 +895,7 @@ sub ask_user_and_root { ); if ($xguest && !is_xguest_installed()) { - $in->do_pkgs->ensure_is_installed('xguest', '/etc/security/namespace.d/guest.conf'); + $in->do_pkgs->ensure_is_installed('xguest', '/etc/security/namespace.d/xguest.conf'); } elsif (!$xguest && is_xguest_installed()) { $in->do_pkgs->remove('xguest') or return; } |