diff options
author | damien <damien@mandriva.com> | 2002-01-21 12:42:51 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2002-01-21 12:42:51 +0000 |
commit | 46250798595733082831db5785d03efd61bfa4c7 (patch) | |
tree | e56f139bcda63d0499991d3d33d1686be4943b94 | |
parent | 4164d6b0846b983665c9c2f04185b80fc7226f97 (diff) | |
download | drakx-46250798595733082831db5785d03efd61bfa4c7.tar drakx-46250798595733082831db5785d03efd61bfa4c7.tar.gz drakx-46250798595733082831db5785d03efd61bfa4c7.tar.bz2 drakx-46250798595733082831db5785d03efd61bfa4c7.tar.xz drakx-46250798595733082831db5785d03efd61bfa4c7.zip |
corrected network down
-rw-r--r-- | perl-install/install_steps.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index ab82c6a84..03ffa01b3 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -968,15 +968,15 @@ sub upNetwork { #------------------------------------------------------------------------------ sub downNetwork { - my ($o, $pppOnly) = @_; + my ($o, $costlyOnly) = @_; modules::write_conf($o->{prefix}); if (hasNetwork($o)) { - if (!$pppOnly && $o->{netc}{type} =~ /adsl|lan|cable/) { + if (!$costlyOnly) { require network::netconnect; network::netconnect::stop_internet($o); return 1; - } else { + } elsif ($o->{netc}{type} !~ /adsl|lan|cable/) { require network::netconnect; network::netconnect::stop_internet($o); run_program::rooted($o->{prefix}, "/etc/rc.d/init.d/syslog", "stop"); |