stop.sh revision 0e9dcd548051a8ec34744bfa18b4e09fea742a39
#!/bin/sh
#
# Stop name servers.
#
cd $1
for d in ns*
do
pidfile="$d/named.pid"
test ! -f $pidfile || kill -INT `cat $pidfile`
done