summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2000-11-15 12:35:52 +0000
committerdamien <damien@mandriva.com>2000-11-15 12:35:52 +0000
commit78b60e5ca786616fdbc8a7fa523f95658a9e04d7 (patch)
tree8528ad2a0979588651c6ce1cad8db8656336ee4c
parent949a885497d3d05e4dc0dc20e52ecb758d9b677c (diff)
downloaddrakx-backup-do-not-use-78b60e5ca786616fdbc8a7fa523f95658a9e04d7.tar
drakx-backup-do-not-use-78b60e5ca786616fdbc8a7fa523f95658a9e04d7.tar.gz
drakx-backup-do-not-use-78b60e5ca786616fdbc8a7fa523f95658a9e04d7.tar.bz2
drakx-backup-do-not-use-78b60e5ca786616fdbc8a7fa523f95658a9e04d7.tar.xz
drakx-backup-do-not-use-78b60e5ca786616fdbc8a7fa523f95658a9e04d7.zip
when loading a new module, add an alias for it, even in standalone mode.
-rw-r--r--perl-install/modules.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 7178396ca..f9a9ed1e7 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -422,7 +422,7 @@ sub load {
if ($::testing) {
log::l("i try to install $name module (@options)");
} elsif ($::isStandalone || $::live) {
- return run_program::run("modprobe", $name, @options);
+ run_program::run("modprobe", $name, @options);
} else {
$conf{$name}{loaded} and return;