mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
50 lines
932 B
Bash
Executable File
50 lines
932 B
Bash
Executable File
#!/bin/bash
|
|
### BEGIN INIT INFO
|
|
# Provides: plinth
|
|
# Required-Start: $syslog
|
|
# Required-Stop: $syslog
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: plinth web frontend
|
|
# Description:
|
|
#
|
|
### END INIT INFO
|
|
|
|
# This file is /etc/init.d/plinth
|
|
DAEMON=/usr/local/bin/plinth.py
|
|
PID_FILE=/var/run/plinth.pid
|
|
|
|
start_plinth (){
|
|
if [ -f $PID_FILE ]; then
|
|
echo Already running with a pid of `cat $PID_FILE`.
|
|
else
|
|
$DAEMON --pidfile=$PID_FILE
|
|
fi
|
|
}
|
|
|
|
stop_plinth () {
|
|
if [ -f $PID_FILE ]; then
|
|
kill -15 `cat $PID_FILE`
|
|
rm -rf $PID_FILE
|
|
else
|
|
echo "No pid file at $PID_FILE suggests plinth is not running."
|
|
fi
|
|
}
|
|
|
|
test -x $DAEMON || exit 0
|
|
case "$1" in
|
|
start)
|
|
echo "Starting Plinth."
|
|
start_plinth
|
|
;;
|
|
stop)
|
|
echo "Stoping Plinth."
|
|
stop_plinth
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
$0 start
|
|
;;
|
|
|
|
esac
|