summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/rc.subr8
1 files changed, 6 insertions, 2 deletions
diff --git a/etc/rc.subr b/etc/rc.subr
index 74a6b63..3a6f76a 100644
--- a/etc/rc.subr
+++ b/etc/rc.subr
@@ -399,12 +399,16 @@ wait_for_pids()
#
get_pidfile_from_conf()
{
+ if [ -z "$1" -o -z "$2" ]; then
+ err 3 "USAGE: get_pidfile_from_conf string file ($name)"
+ fi
+
local string file line
string="$1" ; file="$2"
- if [ -z "$string" -o -z "$file" ] || [ ! -s "$file" ]; then
- err 3 'USAGE: get_pidfile_from_conf string file'
+ if [ ! -s "$file" ]; then
+ err 3 "get_pidfile_from_conf: $file does not exist ($name)"
fi
while read line; do
OpenPOWER on IntegriCloud