Added files for quick & dirty daemonization of the app.

This commit is contained in:
2018-10-04 15:36:02 -04:00
parent 18cb664bc3
commit 3c245eaab3
2 changed files with 94 additions and 0 deletions

62
init.sh Executable file
View File

@@ -0,0 +1,62 @@
#! /bin/bash
### BEGIN INIT INFO
# Provides: weblabsd
# Required-Start: $network $mysql
# Required-Stop: $network $mysql
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Laboratory inscription daemon.
### END INIT INFO
start() {
PID=`pidof weblabsd`
if [ $? -eq 0 ]
then
echo "weblabsd already started."
return
else
echo "Starting weblabsd."
cd /home/miky/Documentos/repos/Weblabs.py
weblabsd &
echo "Done."
fi
}
stop() {
PID=`pidof weblabsd`
if [ $? -eq 0 ]
then
echo "Stopping weblabsd."
kill -9 -- -`pidof weblabsd`
echo "Done."
else
echo "weblabsd already stopped."
fi
}
case "$1" in
start)
start
;;
stop)
stop
;;
status)
PID=`pidof weblabsd`
if [ $? -eq 0 ]
then
echo "weblabsd is running."
else
echo "weblabsd is down."
fi
;;
restart)
stop
start
;;
*)
echo "Usage: {start|stop|restart|status}"
exit 1
;;
esac
exit $?