From 97d3e66da6d3aba9036de0716756909fcda009e1 Mon Sep 17 00:00:00 2001 From: Derek Jennings Date: Fri, 30 Aug 2013 23:50:00 +0100 Subject: fix detection of invalid domain names --- NEWS | 2 ++ common/Wizcommon.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index a04c111d..90019d4b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,5 @@ +- fix detection of invalid domain names + Version 3.11 - 30 Aug 2013, by Derek Jennings - use reload_or_restart for bind also diff --git a/common/Wizcommon.pm b/common/Wizcommon.pm index 34a94f48..f09341f8 100644 --- a/common/Wizcommon.pm +++ b/common/Wizcommon.pm @@ -72,7 +72,7 @@ sub test_host_domain { if ($SHORTHOSTNAME =~ /localhost/) { return 0, N("You need to readjust your hostname. 'localhost' is not a correct hostname for a DNS server. Hostname must be a FQDN: Fully Qualified Domain Name"); } - if (member($DOMAINNAME, qw(localdomain (none))) && -z $DOMAINNAME) { + if (member($DOMAINNAME, qw(localdomain (none))) || $DOMAINNAME eq '') { return 0, N("You need to readjust your domainname. For a DNS server you need a correct domainname, not equal to localdomain or none. Hostname must be a FQDN: Fully Qualified Domain Name. Launch drakconnect to adjust it."); } return 1; -- cgit v1.2.1