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: 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