view scripts/nameserver_autogen/bind_tld_zonefile @ 819:f1f0ab9d41b7 draft

i changed the she-bang on configure from sh to bash because it keeps giving people trouble: /CA/pikaj00> ./configure: 132: Bad substitution /CA/pikaj00> root@pikaj00-M-7323U:/services/ircd/resdb# /relayhell/d3v11> use /relayhell/d3v11> bash configure /relayhell/d3v11> did you run that command on slackware? /relayhell/d3v11> ./configure? /CA/pikaj00> sorry /CA/pikaj00> one sec /CA/pikaj00> yes /relayhell/d3v11> LOL /relayhell/d3v11> then the problem is not ubuntu or debian /CA/shuttle> =) /relayhell/d3v11> if slackware has the same problem /CA/pikaj00> bash /CA/shuttle> what do you think pik /CA/pikaj00> worked
author d3v11 <d3v11@d3v11.ano>
date Sat, 10 Dec 2011 22:23:18 +0000
parents c9b4cd6ac74e
children c95369b825a2
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;
  if (substr($name, -4) == ".ano") $name .= ".";
  $fqserver = $server;
  if (substr($server, -4) == ".ano") $fqserver .= ".";
  print($name.' IN NS '.$fqserver."\n");
  $ips = file($name.'/ns/'.$server, FILE_IGNORE_NEW_LINES |
   FILE_SKIP_EMPTY_LINES);
  foreach ($ips as $ip) {
   print($fqserver.' IN A '.$ip."\n");
  }
 }
}
?>