summaryrefslogtreecommitdiffstats
path: root/dhcp_wizard
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2006-06-21 08:53:36 +0000
committerAntoine Ginies <aginies@mandriva.com>2006-06-21 08:53:36 +0000
commit4a6671b8ab500aa7742cb468ea2ab29d6451e3fa (patch)
treee107325fd3108883726c36ba7a28cb3a718cbd1b /dhcp_wizard
parent2336df509951e61fe31876d6df1d6f2caa91ee84 (diff)
downloaddrakwizard-4a6671b8ab500aa7742cb468ea2ab29d6451e3fa.tar
drakwizard-4a6671b8ab500aa7742cb468ea2ab29d6451e3fa.tar.gz
drakwizard-4a6671b8ab500aa7742cb468ea2ab29d6451e3fa.tar.bz2
drakwizard-4a6671b8ab500aa7742cb468ea2ab29d6451e3fa.tar.xz
drakwizard-4a6671b8ab500aa7742cb468ea2ab29d6451e3fa.zip
- add a third NTP server server
- fix layout of various wizards - remove sambaprint wizard (user should now use draksambashare) - fix ftp default port to 21 - disable kolab and inn wizards (don't know how to use/fix them, help welcome)
Diffstat (limited to 'dhcp_wizard')
-rwxr-xr-xdhcp_wizard/Dhcp.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/dhcp_wizard/Dhcp.pm b/dhcp_wizard/Dhcp.pm
index 34688f80..bf2a322b 100755
--- a/dhcp_wizard/Dhcp.pm
+++ b/dhcp_wizard/Dhcp.pm
@@ -66,10 +66,11 @@ $o->{pages} = {
data => [
{ list => [ keys %{$wiz->{net}{itf}} ], val => \$o->{var}{interface} },
],
- next => 'ip_range', no_back => 1,
+ next => 'ip_range',
+ no_back => 1,
},
ip_range => {
- name => N("Range of addresses used by DHCP") . "\n\n\n" . N("Select the range of addresses assigned to the workstations by the DHCP service; unless you have special needs, you can safely accept the proposed values. (ie: 192.168.100.20 192.168.100.40)") . "\n\n" . N("If you want to enable PXE in your dhcp server please check the box (Pre-boot eXecution Environment, a protocol that allows computers to boot through the network)."),
+ name => N("Range of addresses used by DHCP") . "\n" . N("Select the range of addresses assigned to the workstations by the DHCP service; unless you have special needs, you can safely accept the proposed values. (ie: 192.168.100.20 192.168.100.40)") . "\n\n" . N("If you want to enable PXE in your dhcp server please check the box (Pre-boot eXecution Environment, a protocol that allows computers to boot through the network)."),
pre => sub {
#($wiz_ip_server) = `/sbin/ip addr show dev $o->{var}{interface}` =~ /^\s*inet\s+(\d+\.\d+\.\d+\.\d+)/m;
($wiz_ip_server) = $wiz->{net}->{itf}{$o->{var}{interface}}{IPADDR};
@@ -86,6 +87,7 @@ $o->{pages} = {
{ label => N("Enable PXE:"), type => 'bool', val => \$o->{var}{pxe} },
],
next => 'summary',
+ no_back => 1,
},
dhcp_warning => {
name => N("Warning") . "\n\n" . N("You are in dhcp, server may not work with your configuration."),