diff options
author | Nick <nick@somerandomnick.ano> | 2010-10-14 02:41:26 +0000 |
---|---|---|
committer | Nick <nick@somerandomnick.ano> | 2010-10-14 02:41:26 +0000 |
commit | eac496463ca0fcb1591f896e5fab6d2e3daf8f87 (patch) | |
tree | 6bfaf4dcfb4dee17e63469ddb6b0b995690ff64a | |
parent | cbb6736f7dd7cc7cbc2fbf7ac9dfc13619eedbec (diff) | |
parent | ee56176241396ceaf839f57c43bb73db77aeb225 (diff) | |
download | resdb-eac496463ca0fcb1591f896e5fab6d2e3daf8f87.tar.gz resdb-eac496463ca0fcb1591f896e5fab6d2e3daf8f87.zip |
Merge git://pragmo.ano
-rwxr-xr-x | scripts/nameserver_autogen/dnsmasq_tld_conffile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/scripts/nameserver_autogen/dnsmasq_tld_conffile b/scripts/nameserver_autogen/dnsmasq_tld_conffile index 5ba2853..83ea348 100755 --- a/scripts/nameserver_autogen/dnsmasq_tld_conffile +++ b/scripts/nameserver_autogen/dnsmasq_tld_conffile @@ -8,9 +8,12 @@ sh scripts/check_db_safety || exit 1 -for a in $(ls db/ip/); do - for b in $(ls db/ip/${a}); do - for c in $(ls db/ip/${a}/${b}); do + +LS="ls --color=never" + +for a in $($LS db/ip/); do + for b in $($LS db/ip/${a}); do + for c in $($LS db/ip/${a}/${b}); do if [ -d db/ip/${a}/${b}/${c}/ns/ ]; then for ns in $(cat db/ip/${a}/${b}/${c}/ns/*); do A1=$(scripts/hex2dec ${a}) @@ -26,8 +29,8 @@ done echo -for tld in $(ls db/dom/); do - for domain in $(ls db/dom/${tld}/); do +for tld in $($LS db/dom/); do + for domain in $($LS db/dom/${tld}/); do for ns in $(cat db/dom/${tld}/${domain}/ns/*); do STR="server=/${domain}.${tld}/${ns}" echo $STR |