summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2000-09-29 11:30:30 +0000
committerFrancois Pons <fpons@mandriva.com>2000-09-29 11:30:30 +0000
commitdde74c8fbdd2a4efe0bcfcfa7e41ded1bde27341 (patch)
treed6a93c648c37dbe4c21cc2f6260184735d24ebf7
parent054d97eb83c21b89613454c34903e3bc59c87a9d (diff)
downloaddrakx-backup-do-not-use-dde74c8fbdd2a4efe0bcfcfa7e41ded1bde27341.tar
drakx-backup-do-not-use-dde74c8fbdd2a4efe0bcfcfa7e41ded1bde27341.tar.gz
drakx-backup-do-not-use-dde74c8fbdd2a4efe0bcfcfa7e41ded1bde27341.tar.bz2
drakx-backup-do-not-use-dde74c8fbdd2a4efe0bcfcfa7e41ded1bde27341.tar.xz
drakx-backup-do-not-use-dde74c8fbdd2a4efe0bcfcfa7e41ded1bde27341.zip
*** empty log message ***
-rw-r--r--perl-install/ChangeLog4
-rw-r--r--perl-install/modules.pm2
2 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog
index 32390238f..79afc952f 100644
--- a/perl-install/ChangeLog
+++ b/perl-install/ChangeLog
@@ -1,3 +1,7 @@
+2000-09-29 François Pons <fpons@mandrakesoft.com>
+
+ * modules.pm (load): fixed when standalone, use modprobe.
+
2000-09-29 Guillaume Cottenceau <gc@mandrakesoft.com>
* share/compssList: sync with latest packages
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 9c099d434..571377836 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -421,7 +421,7 @@ sub load {
if ($::testing) {
log::l("i try to install $name module (@options)");
- } elsif ($::live) {
+ } elsif ($::isStandalone || $::live) {
return run_program::run("modprobe", $name, @options);
} else {
$conf{$name}{loaded} and return;