mirror of https://github.com/Icinga/icinga2.git
Merge pull request #7183 from hlsolutions/bugfix/systemv-returncode
Fix System-V return codes according to LSB
This commit is contained in:
commit
f8a82b5e28
|
@ -138,7 +138,7 @@ status() {
|
||||||
|
|
||||||
if [ ! -e $ICINGA2_PID_FILE ]; then
|
if [ ! -e $ICINGA2_PID_FILE ]; then
|
||||||
echo "Not running"
|
echo "Not running"
|
||||||
exit 7
|
exit 3
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pid=`cat $ICINGA2_PID_FILE`
|
pid=`cat $ICINGA2_PID_FILE`
|
||||||
|
@ -146,7 +146,7 @@ status() {
|
||||||
echo "Running"
|
echo "Running"
|
||||||
else
|
else
|
||||||
echo "Not running"
|
echo "Not running"
|
||||||
exit 7
|
exit 3
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -168,7 +168,8 @@ case "$1" in
|
||||||
start
|
start
|
||||||
;;
|
;;
|
||||||
condrestart)
|
condrestart)
|
||||||
status > /dev/null 2>&1 || exit 0
|
STATUS=$(status > /dev/null 2>&1)
|
||||||
|
if [ $? != 0 ]; then exit 0; fi
|
||||||
checkconfig restart fail
|
checkconfig restart fail
|
||||||
stop nofail
|
stop nofail
|
||||||
start
|
start
|
||||||
|
|
Loading…
Reference in New Issue