improved init scripts

This commit is contained in:
SJ 2015-04-28 09:57:32 +02:00
parent 0e3f2836fe
commit f06448f035
2 changed files with 8 additions and 4 deletions

View File

@ -44,9 +44,11 @@ case "$1" in
status)
if check_status;
then
echo "${NAME} is running."
echo "${NAME} is running."
exit 0
else
echo "${NAME} is not running."
echo "${NAME} is not running."
exit 1
fi
;;

View File

@ -54,9 +54,11 @@ case "$1" in
status)
if check_status;
then
echo "${NAME} is running."
echo "${NAME} is running."
exit 0
else
echo "${NAME} is not running."
echo "${NAME} is not running."
exit 1
fi
;;