diff options
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r-- | perl-install/network/netconnect.pm | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 8f9caeafc..569b9d8d2 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -283,24 +283,6 @@ If you don't want to use the auto detection, deselect the checkbox. }, }, - cable => - { - name => N("Connect to the Internet") . "\n\n" . - N("Which dhcp client do you want to use ? (default is dhcp-client)"), - data => - [ { val => \$netcnx->{dhcp_client}, list => ["dhcp-client", "dhcpcd", "dhcpxd"] } ], - - post => sub { - $in->do_pkgs->install($netcnx->{dhcp_client}); - write_cnx_script($netc, "cable", qq( -/sbin/ifup $netc->{NET_DEVICE} -), - qq( -/sbin/ifdown $netc->{NET_DEVICE} -), $netcnx->{type}); - return "go_ethernet"; - }, - }, go_ethernet => { |