diff options
author | Thierry Vignaud <tv@mageia.org> | 2011-05-21 09:22:35 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2011-05-21 09:22:35 +0000 |
commit | b50fc8de936702b97586e8f4bdf496866c17aeff (patch) | |
tree | a1cb6dd06830e1c0e71027044fd7afb215997968 /mgaapplet | |
parent | ac09c9869446b528d6af82f29c5256841842d160 (diff) | |
download | mgaonline-b50fc8de936702b97586e8f4bdf496866c17aeff.tar mgaonline-b50fc8de936702b97586e8f4bdf496866c17aeff.tar.gz mgaonline-b50fc8de936702b97586e8f4bdf496866c17aeff.tar.bz2 mgaonline-b50fc8de936702b97586e8f4bdf496866c17aeff.tar.xz mgaonline-b50fc8de936702b97586e8f4bdf496866c17aeff.zip |
(installUpdates) handle both MageiaUpdate & MandrivaUpdate
Diffstat (limited to 'mgaapplet')
-rwxr-xr-x | mgaapplet | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -686,7 +686,8 @@ sub add_media() { sub installUpdates() { return if $mdv_update_pid; log::explanations(N_("Launching MageiaUpdate\n")); - $mdv_update_pid = fork_exec('MageiaUpdate', '--no-media-update', '--no-confirmation', '--no-splash', + my $program = find { -x "/usr/bin/$_" } qw(MageiaUpdate MandrivaUpdate); + $mdv_update_pid = fork_exec($program, '--no-media-update', '--no-confirmation', '--no-splash', if_($root, "--urpmi-root=$root")); silentCheck(); gtkflush(); } |