Fixed init script.

This commit is contained in:
Florian Pose 2007-08-14 14:00:07 +00:00
parent ec0291fddb
commit ae80a7fbb3
1 changed files with 16 additions and 1 deletions

View File

@ -103,6 +103,7 @@ function exit_fail()
{
if [ -r /etc/rc.status ]; then
rc_failed
rc_status -v
rc_exit
else
echo " failed"
@ -112,6 +113,20 @@ function exit_fail()
#------------------------------------------------------------------------------
function exit_dead()
{
if [ -r /etc/rc.status ]; then
rc_failed
rc_status -v
rc_exit
else
echo " dead"
exit 1
fi
}
#------------------------------------------------------------------------------
function parse_mac_address()
{
if [ -z "${1}" ]; then
@ -241,7 +256,7 @@ status)
if [ ${MASTERS_RUNNING} -eq 0 -a ${MASTERS_IDLE} -eq 0 ]; then
exit_running
else
exit_fail
exit_dead
fi
;;