2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

silence rm error message

This commit is contained in:
Mark Andrews
2016-06-20 14:33:33 +10:00
parent eff62988e6
commit c1bf332c7c

View File

@@ -1862,7 +1862,7 @@ ret=0
echo "I:killing ns4 with SIGTERM" echo "I:killing ns4 with SIGTERM"
cd ns4 cd ns4
kill -TERM `cat named.pid` kill -TERM `cat named.pid`
rm named.pid rm -f named.pid
cd .. cd ..
# #
@@ -1925,7 +1925,7 @@ grep "flags:[^;]* ad[^;]*;" dig.out.ns4.test$n.2 > /dev/null || ret=1
echo "I:killing ns4 with SIGTERM" echo "I:killing ns4 with SIGTERM"
cd ns4 cd ns4
kill -TERM `cat named.pid` kill -TERM `cat named.pid`
rm named.pid rm -f named.pid
cd .. cd ..
echo "I:sleeping for an additional 4 seconds for ns4 to fully shutdown" echo "I:sleeping for an additional 4 seconds for ns4 to fully shutdown"
@@ -1984,7 +1984,7 @@ grep "flags:[^;]* ad[^;]*;" dig.out.ns4.test$n.2 > /dev/null || ret=1
echo "I:killing ns4 with SIGTERM" echo "I:killing ns4 with SIGTERM"
cd ns4 cd ns4
kill -TERM `cat named.pid` kill -TERM `cat named.pid`
rm named.pid rm -f named.pid
cd .. cd ..
echo "I:sleeping for an additional 4 seconds for ns4 to fully shutdown" echo "I:sleeping for an additional 4 seconds for ns4 to fully shutdown"
@@ -2033,7 +2033,7 @@ echo "I: testing loading out of bounds lifetime from NTA file ($n)"
echo "I:killing ns4 with SIGTERM" echo "I:killing ns4 with SIGTERM"
cd ns4 cd ns4
kill -TERM `cat named.pid` kill -TERM `cat named.pid`
rm named.pid rm -f named.pid
cd .. cd ..
echo "I:sleeping for an additional 4 seconds for ns4 to fully shutdown" echo "I:sleeping for an additional 4 seconds for ns4 to fully shutdown"