remove spaces from I: statements

This commit is contained in:
Brian Wellington 2000-07-07 00:41:18 +00:00
parent 3658cf5419
commit 20e597d71c
2 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
# $Id: tests.sh,v 1.20 2000/07/05 22:13:56 gson Exp $
# $Id: tests.sh,v 1.21 2000/07/07 00:41:17 bwelling Exp $
#
# Perform tests
@ -58,7 +58,7 @@ cp ns2/example3.db ns2/example.db
sleep 6
if [ -f ns3/named.pid ]; then
echo "I: ns3 didn't die when sent a SIGTERM"
echo "I:ns3 didn't die when sent a SIGTERM"
kill -KILL `cat ns3/named.pid`
status=1
fi
@ -82,7 +82,7 @@ kill -TERM `cat ns2/named.pid`
sleep 6
if [ -f ns2/named.pid ]; then
echo "I: ns2 didn't die when sent a SIGTERM"
echo "I:ns2 didn't die when sent a SIGTERM"
kill -KILL `cat ns2/named.pid`
status=1
fi

View file

@ -15,7 +15,7 @@
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
# $Id: stop.sh,v 1.10 2000/07/05 23:28:07 bwelling Exp $
# $Id: stop.sh,v 1.11 2000/07/07 00:41:18 bwelling Exp $
#
# Stop name servers.
@ -49,7 +49,7 @@ for d in ns*
do
pidfile="$d/named.pid"
if [ -f $pidfile ]; then
echo "I: $d didn't die when sent a SIGTERM"
echo "I:$d didn't die when sent a SIGTERM"
status=`expr $status + 1`
kill -KILL `cat $pidfile`
fi
@ -59,7 +59,7 @@ for d in lwresd*
do
pidfile="$d/lwresd.pid"
if [ -f $pidfile ]; then
echo "I: $d didn't die when sent a SIGTERM"
echo "I:$d didn't die when sent a SIGTERM"
status=`expr $status + 1`
kill -KILL `cat $pidfile`
fi