summaryrefslogtreecommitdiff
path: root/scripts/nameserver_autogen/dnsmasq_tld_conffile
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/nameserver_autogen/dnsmasq_tld_conffile')
-rwxr-xr-xscripts/nameserver_autogen/dnsmasq_tld_conffile12
1 files changed, 7 insertions, 5 deletions
diff --git a/scripts/nameserver_autogen/dnsmasq_tld_conffile b/scripts/nameserver_autogen/dnsmasq_tld_conffile
index b418ac1..97aa10b 100755
--- a/scripts/nameserver_autogen/dnsmasq_tld_conffile
+++ b/scripts/nameserver_autogen/dnsmasq_tld_conffile
@@ -31,11 +31,13 @@ echo
for tld in $($LS db/dom/); do
for domain in $($LS db/dom/${tld}/); do
- 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;
+ if [ -d $($LS -d db/dom/${tld}/${domain}/) ]; then
+ if [ -d $($LS -d 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
fi
done;
done