Skip to content
Snippets Groups Projects
Commit b50388f3 authored by Florian Pose's avatar Florian Pose
Browse files

Fixed init script.

parent 691b5c03
No related branches found
No related tags found
No related merge requests found
......@@ -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
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment