added system tests

This commit is contained in:
Andreas Gustafsson
2000-05-15 22:53:15 +00:00
parent 43383a70d3
commit 0e9dcd5480
35 changed files with 814 additions and 0 deletions

12
bin/tests/system/stop.sh Normal file
View File

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