diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-14 17:46:05 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-14 17:46:05 +0000 |
commit | a848b4b877d2c5933328b37d6a1bb1793281026d (patch) | |
tree | 6938a817884633dcc54e6b49ff4751da480e5e81 /perl-install/install2.pm | |
parent | b8af68bc93d9a637641e104cb23efc28b0adca4b (diff) | |
download | drakx-a848b4b877d2c5933328b37d6a1bb1793281026d.tar drakx-a848b4b877d2c5933328b37d6a1bb1793281026d.tar.gz drakx-a848b4b877d2c5933328b37d6a1bb1793281026d.tar.bz2 drakx-a848b4b877d2c5933328b37d6a1bb1793281026d.tar.xz drakx-a848b4b877d2c5933328b37d6a1bb1793281026d.zip |
fix bogus use of old netwok module instead of network::network (missed when
cleaning up this)
Diffstat (limited to 'perl-install/install2.pm')
-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 d898690df..47b519607 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -447,7 +447,7 @@ sub main { #- done before auto_install is called to allow the -IP feature on auto_install file name if (-e '/tmp/network') { - require network; + require network::network; #- get stage1 network configuration if any. log::l('found /tmp/network'); $o->{netc} ||= {}; |