summaryrefslogtreecommitdiffstats
path: root/perl-install/network
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-07-17 17:35:13 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-07-17 17:35:13 +0000
commitc16ec75bef0fcdcd9a90c474da3c211f7ebef41e (patch)
treecb54f67615134a379283aa599da3feaf31100993 /perl-install/network
parent7c5efa3977d21be86dcaa49f9303e132dcc58d8d (diff)
downloaddrakx-c16ec75bef0fcdcd9a90c474da3c211f7ebef41e.tar
drakx-c16ec75bef0fcdcd9a90c474da3c211f7ebef41e.tar.gz
drakx-c16ec75bef0fcdcd9a90c474da3c211f7ebef41e.tar.bz2
drakx-c16ec75bef0fcdcd9a90c474da3c211f7ebef41e.tar.xz
drakx-c16ec75bef0fcdcd9a90c474da3c211f7ebef41e.zip
properly use checkboxes
Diffstat (limited to 'perl-install/network')
-rw-r--r--perl-install/network/network.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm
index fadcea6b4..856f7b3f0 100644
--- a/perl-install/network/network.pm
+++ b/perl-install/network/network.pm
@@ -350,10 +350,10 @@ notation (for example, 1.2.3.4).");
{ label => N("Netmask"), val => \$intf->{NETMASK}, disabled => sub { $auto_ip } },
{ label => N("DHCP host name"), val => \$intf->{DHCP_HOSTNAME}, disabled => sub { ! $auto_ip }, advanced => 1 },
- { label => N("Track network card id (useful for laptops)"), val => \$track_network_id, type => "bool", advanced => 1 },
- { label => N("Network Hotplugging"), val => \$hotplug, type => "bool", advanced => 1 },
- { label => N("Assign host name from DHCP address"), val => \$needhostname, type => "bool", disabled => sub { ! $auto_ip }, advanced => 1 },
- { label => N("Start at boot"), val => \$onboot, type => "bool", advanced => 1 },
+ { text => N("Track network card id (useful for laptops)"), val => \$track_network_id, type => "bool", advanced => 1 },
+ { text => N("Network Hotplugging"), val => \$hotplug, type => "bool", advanced => 1 },
+ { text => N("Assign host name from DHCP address"), val => \$needhostname, type => "bool", disabled => sub { ! $auto_ip }, advanced => 1 },
+ { text => N("Start at boot"), val => \$onboot, type => "bool", advanced => 1 },
if_($intf->{wireless_eth},
{ label => "WIRELESS_MODE", val => \$intf->{WIRELESS_MODE}, list => [ "Ad-hoc", "Managed", "Master", "Repeater", "Secondary", "Auto" ] },
{ label => "WIRELESS_ESSID", val => \$intf->{WIRELESS_ESSID} },