From c1bf332c7c1628a17eb3b3a618d8eaa1bb8fa19b Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Mon, 20 Jun 2016 14:33:33 +1000 Subject: [PATCH] silence rm error message --- bin/tests/system/dnssec/tests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/tests/system/dnssec/tests.sh b/bin/tests/system/dnssec/tests.sh index e2e944d426..fac593e111 100644 --- a/bin/tests/system/dnssec/tests.sh +++ b/bin/tests/system/dnssec/tests.sh @@ -1862,7 +1862,7 @@ ret=0 echo "I:killing ns4 with SIGTERM" cd ns4 kill -TERM `cat named.pid` -rm named.pid +rm -f named.pid cd .. # @@ -1925,7 +1925,7 @@ grep "flags:[^;]* ad[^;]*;" dig.out.ns4.test$n.2 > /dev/null || ret=1 echo "I:killing ns4 with SIGTERM" cd ns4 kill -TERM `cat named.pid` -rm named.pid +rm -f named.pid cd .. 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" cd ns4 kill -TERM `cat named.pid` -rm named.pid +rm -f named.pid cd .. 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" cd ns4 kill -TERM `cat named.pid` -rm named.pid +rm -f named.pid cd .. echo "I:sleeping for an additional 4 seconds for ns4 to fully shutdown"