[upd] add status for service
By adding status to ffsync service, it allows it to be managed vie the webinterface :)
This commit is contained in:
parent
ee0346eba6
commit
a643c6d033
13
conf/ffsync
13
conf/ffsync
@ -43,6 +43,16 @@ stop() {
|
|||||||
rm -f ${pidfile}
|
rm -f ${pidfile}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
status(){
|
||||||
|
if [[ -f ${pidfile} ]]; then
|
||||||
|
echo "Status: running."
|
||||||
|
exit 0;
|
||||||
|
else
|
||||||
|
echo "Status: not running."
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
start)
|
start)
|
||||||
start
|
start
|
||||||
@ -50,6 +60,9 @@ case "$1" in
|
|||||||
stop)
|
stop)
|
||||||
stop
|
stop
|
||||||
;;
|
;;
|
||||||
|
status)
|
||||||
|
status
|
||||||
|
;;
|
||||||
restart)
|
restart)
|
||||||
stop
|
stop
|
||||||
start
|
start
|
||||||
|
Loading…
x
Reference in New Issue
Block a user