view scripts/nameserver_autogen/bind_tld_zonefile @ 340:1299c56b6d5c draft

Fixed the bind generator to qualify full domain names properly in the generated zonefile
author lex <lex@lynx.ano>
date Mon, 10 Jan 2011 17:25:44 -0600
parents 2e7c94478881
children 4a4f9682f43e
line wrap: on
line source

#!/usr/bin/php
<?php
print('$ttl 600'."\n");
chdir('../db/dom/ano');
$names = scandir('./');
foreach ($names as $name) {
 if (!file_exists($name.'/ns/')) continue;
 $servers = scandir($name.'/ns/');
 foreach ($servers as $server) {
  if ($server[0] == '.') continue;
  print($name.' IN NS '.$server."\n");
  $ips = file($name.'/ns/'.$server, FILE_IGNORE_NEW_LINES |
   FILE_SKIP_EMPTY_LINES);
  if (substr($server, -4, 4) == ".ano") $server .= ".";
  foreach ($ips as $ip) {
   print($server.' IN A '.$ip."\n");
  }
 }
}
?>