While OpenNSD.org is still not in Google's index, it is in Bing's.
What's up with that??
While OpenNSD.org is still not in Google's index, it is in Bing's.
What's up with that??
#!/bin/sh
# Copyright: Savonix Corporation - http://www.savonix.com/
# Author: Albert Lash
# License: MIT
# Date: 20090602
lockfile="/var/lock/rebuild_nsd.lock"
if [ ! -f $lockfile ]
then
touch $lockfile
sleep 30
cd /etc/nsd3
cat nsd_top.conf nsd_bottom.conf > nsd.conf
/usr/sbin/nsdc rebuild
/etc/init.d/nsd3 restart
rm $lockfile
exit 0
fi;