diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-05 15:07:03 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-05 15:07:03 +0000 |
commit | 3af053ecfc2105a9637a86864012b6a6a1492c75 (patch) | |
tree | 962cc1510c92eb8b8682a0036692e5d5ff8c21aa /perl-install/install_steps.pm | |
parent | cbde3bb17d6727f6c8cdee03f78bf0b784c295b9 (diff) | |
download | drakx-3af053ecfc2105a9637a86864012b6a6a1492c75.tar drakx-3af053ecfc2105a9637a86864012b6a6a1492c75.tar.gz drakx-3af053ecfc2105a9637a86864012b6a6a1492c75.tar.bz2 drakx-3af053ecfc2105a9637a86864012b6a6a1492c75.tar.xz drakx-3af053ecfc2105a9637a86864012b6a6a1492c75.zip |
write_conf() doesn't need $prefix anymore
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index a7156e69b..00184f3fc 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -981,7 +981,7 @@ sub upNetwork { symlinkf("$o->{prefix}/etc/$_", "/etc/$_") foreach qw(resolv.conf protocols services); } member($o->{method}, qw(ftp http nfs)) and return 1; - modules::write_conf($o->{prefix}); + modules::write_conf(); if (hasNetwork($o)) { if ($o->{netcnx}{type} =~ /adsl|lan|cable/) { require network::netconnect; @@ -1003,7 +1003,7 @@ sub downNetwork { my ($o, $costlyOnly) = @_; $o->{method} eq "ftp" || $o->{method} eq "http" || $o->{method} eq "nfs" and return 1; - modules::write_conf($o->{prefix}); + modules::write_conf(); if (hasNetwork($o)) { if (!$costlyOnly) { require network::netconnect; |