In Bing!

| No Comments

While OpenNSD.org is still not in Google's index, it is in Bing's.

What's up with that??

Still Not in Google's Index

| No Comments
OpenNSD.org remains absent from Google's index. That's too bad, as I continue using NSD3 and AOL Server. I'd like to use this as a platform for sharing  my ideas about these great software packages, but since Google is the primary information research tool for many people, I'm not sure if its worth it.

Too bad!

My NSD3 Restart Script

| No Comments
I'm starting to use this, along with rsync and incrond, to automatically restart nsd3 on replicated name servers:

#!/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;