summaryrefslogtreecommitdiffstats
path: root/perl-install/modules
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-06-02 05:38:11 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-06-02 05:38:11 +0000
commit0493ab2a5e7d5f8f4038730efc37919d90f647be (patch)
tree2cfe8a332ea6731308db2ad2ac0e93636c9d4ce0 /perl-install/modules
parent6e9c6ce48159d3df1cb69788bebc503ff8697e26 (diff)
downloaddrakx-0493ab2a5e7d5f8f4038730efc37919d90f647be.tar
drakx-0493ab2a5e7d5f8f4038730efc37919d90f647be.tar.gz
drakx-0493ab2a5e7d5f8f4038730efc37919d90f647be.tar.bz2
drakx-0493ab2a5e7d5f8f4038730efc37919d90f647be.tar.xz
drakx-0493ab2a5e7d5f8f4038730efc37919d90f647be.zip
read in existing modprobe.conf on upgrade (bugzilla #13309)
Diffstat (limited to 'perl-install/modules')
-rw-r--r--perl-install/modules/any_conf.pm10
1 files changed, 9 insertions, 1 deletions
diff --git a/perl-install/modules/any_conf.pm b/perl-install/modules/any_conf.pm
index c6174fd81..fbf488937 100644
--- a/perl-install/modules/any_conf.pm
+++ b/perl-install/modules/any_conf.pm
@@ -168,8 +168,16 @@ sub write {
modules::write_preload_conf($conf);
}
+sub merge_into {
+ my ($conf, $conf2) = @_;
-
+ if (ref($conf) eq ref($conf2)) {
+ log::l("merging " . ref($conf));
+ add2hash($conf, $conf2);
+ } else {
+ log::l("not merging modules_conf " . ref($conf2) . " into " . ref($conf));
+ }
+}
################################################################################
sub read_handled {