view scripts/nameserver_autogen/tinydns_tld_datafile @ 122:fa0053d4cb53 draft

Added atomictorrent repo, and added multirepo support for pragmo: now inside /db/usr/pragmo there is th repos dir which contains one dir for each pragmo's repo. resdb2 is the classic resdb (rebooted ;)), while atomictorrent is a new repo containing torrents.
author pragmo <pragmo@pragmo.ano>
date Tue, 24 Aug 2010 07:21:06 +0000
parents 9a0e9ee425cc
children 18ac7e165dde
line wrap: on
line source

#!/bin/sh
if ! ./scripts/check_db_safety; then
 exit 1
fi
tldsrvrname="$(./scripts/conf_var tinydns__tldsrvrname b30a3fc880c970d4b4f945dd82af4de2.ns.pragmo.ano)"
tldsrvrip="$(./scripts/conf_var tinydns__tldsrvrip 1.0.16.100)"
for tld in db/ip/?? ; do
 if [ "x$(basename $tld)" != 'x??' ]; then
  first="$(basename $tld | ./scripts/hex2dec)"
  tldname="$first.in-addr.arpa"
  echo "+$tldsrvrname:$tldsrvrip:3600"
  echo ".$tldname::$tldsrvrname"
  for ip in $tld/??/?? ; do
   if [ "x$(basename $ip)" != 'x??' ]; then
    third="$(basename $ip | ./scripts/hex2dec)"
    second="$(basename $(dirname $ip) | ./scripts/hex2dec)"
    first="$(basename $(dirname $(dirname $ip)) | ./scripts/hex2dec)"
    domain="$third.$second.$first.in-addr.arpa"
    for ns in $ip/ns/* ; do
     nsname="$(basename $ns)"
     if [ "x$nsname" != 'x*' ]; then
      nsip="$(cat $ns)"
      echo "&$domain:$nsip:$nsname"
     fi
    done
   fi
  done
 fi
done
for tld in db/dom/* ; do
 tldname="$(basename $tld)"
 echo "+$tldsrvrname:$tldsrvrip:3600"
 echo ".$tldname::$tldsrvrname"
 for zone in $tld/* ; do
  for ns in $zone/ns/* ; do
   domain="$(basename $zone).$(basename $tld)"
   nsip="$(cat $ns)"
   nsname="$(basename $ns)"
   echo "&$domain:$nsip:$nsname"
  done
 done
done