diff options
author | Nick <nick@somerandomnick.ano> | 2011-11-10 05:46:56 +0000 |
---|---|---|
committer | Nick <nick@somerandomnick.ano> | 2011-11-10 05:46:56 +0000 |
commit | 874c32601d7098850d45ec634bfe5091171e6f10 (patch) | |
tree | 6b0051b58e0e53090e153c08d51750bdec149bba /scripts/nameserver_autogen/dnsmasq_tld_conffile | |
parent | 202331dbb514446ec9cbf04dee56a0434c72727a (diff) | |
download | resdb-874c32601d7098850d45ec634bfe5091171e6f10.tar.gz resdb-874c32601d7098850d45ec634bfe5091171e6f10.zip |
bugfix (thx Nomius)
Diffstat (limited to 'scripts/nameserver_autogen/dnsmasq_tld_conffile')
-rwxr-xr-x | scripts/nameserver_autogen/dnsmasq_tld_conffile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nameserver_autogen/dnsmasq_tld_conffile b/scripts/nameserver_autogen/dnsmasq_tld_conffile index 95c1a48..b418ac1 100755 --- a/scripts/nameserver_autogen/dnsmasq_tld_conffile +++ b/scripts/nameserver_autogen/dnsmasq_tld_conffile @@ -31,7 +31,7 @@ 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 + 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 |