diff options
author | damien <damien@mandriva.com> | 2001-07-30 17:11:53 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-07-30 17:11:53 +0000 |
commit | f90455ca3629e1efbb3dc2781f716c8eb210bcd2 (patch) | |
tree | ec8389a23ea5601e113f35e13194c4dcf1e211dd /perl-install/network | |
parent | 1a40947dcb1ca6cf43349972d2062fddeda4daa5 (diff) | |
download | drakx-f90455ca3629e1efbb3dc2781f716c8eb210bcd2.tar drakx-f90455ca3629e1efbb3dc2781f716c8eb210bcd2.tar.gz drakx-f90455ca3629e1efbb3dc2781f716c8eb210bcd2.tar.bz2 drakx-f90455ca3629e1efbb3dc2781f716c8eb210bcd2.tar.xz drakx-f90455ca3629e1efbb3dc2781f716c8eb210bcd2.zip |
added cable internet connection selection
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/ethernet.pm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index db7c6d376..9776924e6 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -46,6 +46,15 @@ Default is dhcpcd"), $install->(qw(dhcpcd)); } go_ethernet($netc, $intf, 'dhcp', '', '', $first_time); + write_cnx_script($netc, "cable", +qq( +#!/bin/bash +ifup $netc->{NET_DEVICE} +), +qq( +#!/bin/bash +ifdown $netc->{NET_DEVICE} +)); } sub configure_lan { @@ -166,15 +175,6 @@ sub go_ethernet { conf_network_card($netc, $intf, $type, $ipadr, $netadr) or return; $netc->{NET_INTERFACE}=$netc->{NET_DEVICE}; configureNetwork($netc, $intf, $first_time) or return; - write_cnx_script($netc, "Local network", -qq( -#!/bin/bash -ifup $netc->{NET_DEVICE} -), -qq( -#!/bin/bash -ifdown $netc->{NET_DEVICE} -)); if ( $::isStandalone and $netc->{NET_DEVICE}) { $in->ask_yesorno(_("Network interface"), _("I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"), 1) and system("$prefix/sbin/ifdown $netc->{NET_DEVICE}; $prefix/sbin/ifup $netc->{NET_DEVICE}"); |