diff options
Diffstat (limited to 'perl-install/network/ethernet.pm')
-rw-r--r-- | perl-install/network/ethernet.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index 361eb10fd..5b216a4ec 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -188,9 +188,12 @@ sub configureNetwork { N("Please enter your host name if you know it. Some DHCP servers require the hostname to work. Your host name should be a fully-qualified host name, -such as ``mybox.mylab.myco.com''."), +such as ``mybox.mylab.myco.com''.") . N(" + +Enter a Zeroconf host name without any dot if you don't +want to use the default host name."), [ { label => N("Host name"), val => \$netc->{HOSTNAME} }, - if_($netc->{ZEROCONF}, { label => N("Zeroconf Host name"), val => \$netc->{ZEROCONF_HOSTNAME} }), + { label => N("Zeroconf Host name"), val => \$netc->{ZEROCONF_HOSTNAME} }, ], complete => sub { if ($netc->{ZEROCONF_HOSTNAME} and $netc->{ZEROCONF_HOSTNAME} =~ /\./) { |