diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-02-28 16:10:17 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-02-28 16:10:17 +0000 |
commit | 039f8f1b09c955fda84e9279df960fe5b3394a66 (patch) | |
tree | 29bcbdc4f386e957a66fc13ca6ef90250a13e715 /perl-install/modules.pm | |
parent | ea451fb403b23d1b6d385032837883d4f6c2ab5a (diff) | |
download | drakx-039f8f1b09c955fda84e9279df960fe5b3394a66.tar drakx-039f8f1b09c955fda84e9279df960fe5b3394a66.tar.gz drakx-039f8f1b09c955fda84e9279df960fe5b3394a66.tar.bz2 drakx-039f8f1b09c955fda84e9279df960fe5b3394a66.tar.xz drakx-039f8f1b09c955fda84e9279df960fe5b3394a66.zip |
run /sbin/insmod explicitely (not to call fake insmod in rescue)
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 44b119ed9..fcad326db 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -312,7 +312,7 @@ sub load_raw_install { my $m = '/tmp/' . $_ . module_extension(); if (-e $m) { my $stdout; - my $rc = run_program::run('insmod', '2>', \$stdout, $m, split(' ', $options->{$_})); + my $rc = run_program::run('/sbin/insmod', '2>', \$stdout, $m, split(' ', $options->{$_})); log::l(chomp_($stdout)) if $stdout; if ($rc) { unlink $m; |