Warning DAEMON is missing from init.d script

Change-Id: I14ec4cb91430318391d4b20ab02b7151799a024c
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2016-10-08 11:25:43 -04:00
parent c95988bccb
commit 470bbd7908
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ USER=nodepool
DAEMON=$PREFIX/bin/nodepoold
# Exit if the package is not installed
[ -x "$DAEMON" ] || exit 5
[ -x "$DAEMON" ] || (echo "$DAEMON: command not found" && exit 5)
# Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh

View File

@ -23,7 +23,7 @@ USER=nodepool
DAEMON=$PREFIX/bin/nodepool-builder
# Exit if the package is not installed
[ -x "$DAEMON" ] || exit 5
[ -x "$DAEMON" ] || (echo "$DAEMON: command not found" && exit 5)
# Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh

View File

@ -23,7 +23,7 @@ USER=nodepool
DAEMON=$PREFIX/bin/nodepoold
# Exit if the package is not installed
[ -x "$DAEMON" ] || exit 5
[ -x "$DAEMON" ] || (echo "$DAEMON: command not found" && exit 5)
# Load the VERBOSE setting and other rcS variables
. /lib/init/vars.sh