summaryrefslogtreecommitdiffstats
path: root/perl-install/drakcluster/server_conf.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/drakcluster/server_conf.pm')
-rw-r--r--perl-install/drakcluster/server_conf.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/drakcluster/server_conf.pm b/perl-install/drakcluster/server_conf.pm
index 23fe16741..bf5c4cd91 100644
--- a/perl-install/drakcluster/server_conf.pm
+++ b/perl-install/drakcluster/server_conf.pm
@@ -34,10 +34,8 @@ sub fields {
my @l = (
[ NODENAME => 'Node name (Administration network)' , check => \&check_non_empty ],
[ COMPUTENODENAME => 'Node Name (Computing network)', check => \&check_non_empty ],
-
[ STARTNODE => 'IP of the first node', check => \&check_number ],
[ FINISHNODE => 'IP of the last node', check => sub { &check_number || $conf->{STARTNODE} >= $conf->{FINISHNODE} && N("\"The First node\" must have an IP lower than \"the last node\"") } ],
-
[ ADMIN_INTERFACE => 'Administration Network Interface', list => $network_interfaces ],
[ EXTERNAL_INTERFACE => 'External Network Interface', list => $network_interfaces ],
[ COMPUTE_INTERFACE => 'Computing Network Interface', list => $network_interfaces ],
@@ -45,7 +43,7 @@ sub fields {
[ DOMAINNAME => N("Administration node domain name"), check => sub { check_default(@_, $default_conf->{DOMAINNAME}, $current_conf->{DOMAINNAME}) } ],
[ NISDOMAINNAME => N("NIS domain name"), check => \&check_non_empty ],
[ DOMAINCOMP => N("Computing domain name"), check => \&check_non_empty ],
- [ IPOFFORWARDER => 'IP address of your external DNS', check => sub { $_[0] && check_ip(@_) || check_default(@_, $default_conf->{IPOFFORWARDER} } ],
+ [ IPOFFORWARDER => 'IP address of your external DNS', check => sub { $_[0] && check_ip(@_) || check_default(@_, $default_conf->{IPOFFORWARDER}) } ],
[ DNSKEY => 'DNS server dnskey', check => \&check_non_empty ],
[ ADDSEARCH => 'ADDSEARCH ' . N("Domain name of your external network") ],
[ USERADMIN => 'PBS administrator user name', check => \&check_non_empty ],