diff options
author | damien <damien@mandriva.com> | 2002-01-10 12:55:09 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2002-01-10 12:55:09 +0000 |
commit | 8d606a1d23e1840f232c439cd56deddb06867d87 (patch) | |
tree | b4c1240b47a2366389a7044607ec4709e1614a20 /perl-install | |
parent | 26f364d6608223588dfcc70e12d6a42c27db11a3 (diff) | |
download | drakx-8d606a1d23e1840f232c439cd56deddb06867d87.tar drakx-8d606a1d23e1840f232c439cd56deddb06867d87.tar.gz drakx-8d606a1d23e1840f232c439cd56deddb06867d87.tar.bz2 drakx-8d606a1d23e1840f232c439cd56deddb06867d87.tar.xz drakx-8d606a1d23e1840f232c439cd56deddb06867d87.zip |
corrected read_resolv => read_conf
Diffstat (limited to 'perl-install')
-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 c94cd1f6e..739e083a0 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -550,7 +550,7 @@ sub main { #- get stage1 network configuration if any. log::l('found /tmp/network'); $o->{netc} ||= {}; - add2hash($o->{netc}, network::read_resolv_conf('/tmp/network')); + add2hash($o->{netc}, network::read_conf('/tmp/network')); if (my ($file) = glob_('/tmp/ifcfg-*')) { log::l("found network config file $file"); my $l = network::read_interface_conf($file); |