diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/nameserver_autogen/dnsmasq_tld_conffile | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/scripts/nameserver_autogen/dnsmasq_tld_conffile b/scripts/nameserver_autogen/dnsmasq_tld_conffile index 20eefd1..f155601 100755 --- a/scripts/nameserver_autogen/dnsmasq_tld_conffile +++ b/scripts/nameserver_autogen/dnsmasq_tld_conffile @@ -31,9 +31,11 @@ echo  for tld in $($LS db/dom/); do   	for domain in $($LS db/dom/${tld}/); do  -		for ns in $($LS db/dom/${tld}/${domain}/ns/); do  -			STR="server=/${domain}.${tld}/$(scripts/ns2ip -f ${ns})" -			echo $STR -		done;  +		if [ -d $($LS db/dom/${tld}/{$domain}/ns/ ]; then +			for ns in $($LS db/dom/${tld}/${domain}/ns/); do  +				STR="server=/${domain}.${tld}/$(scripts/ns2ip -f ${ns})" +				echo $STR +			done;  +		fi  	done;   done | 
