diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-12-21 14:54:59 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-12-21 14:54:59 +0000 |
commit | d648c6c5c257c541e8cbb8253d4f3ed1f275b703 (patch) | |
tree | b96773b150c37a62b44a7ecc89a99a41559be4b4 | |
parent | c0594dc68e91165a1c5357296a6a5bcda2bfe2b1 (diff) | |
download | drakx-backup-do-not-use-d648c6c5c257c541e8cbb8253d4f3ed1f275b703.tar drakx-backup-do-not-use-d648c6c5c257c541e8cbb8253d4f3ed1f275b703.tar.gz drakx-backup-do-not-use-d648c6c5c257c541e8cbb8253d4f3ed1f275b703.tar.bz2 drakx-backup-do-not-use-d648c6c5c257c541e8cbb8253d4f3ed1f275b703.tar.xz drakx-backup-do-not-use-d648c6c5c257c541e8cbb8253d4f3ed1f275b703.zip |
/proc/sys/kernel/modprobe wants something non empty, otherwise it doesn't change anything
-rw-r--r-- | perl-install/install2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 8d0744dfe..632b33041 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -433,7 +433,7 @@ sub main { log::openLog(($::testing || $o->{localInstall}) && 'debug.log'); log::l("second stage install running (", any::drakx_version(), ")"); - eval { output('/proc/sys/kernel/modprobe', '') } if !$::testing; #- disable kmod, otherwise we get a different behaviour in kernel vs kernel-BOOT + eval { output('/proc/sys/kernel/modprobe', "\n") } if !$::testing; #- disable kmod, otherwise we get a different behaviour in kernel vs kernel-BOOT eval { fs::mount('none', '/sys', 'sysfs', 1) }; if ($::move) { |