Skip to content

Instantly share code, notes, and snippets.

@rroemhild
Created May 11, 2016 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rroemhild/2e4d7ee5061f56f3300843c6ee8e67b5 to your computer and use it in GitHub Desktop.
Save rroemhild/2e4d7ee5061f56f3300843c6ee8e67b5 to your computer and use it in GitHub Desktop.
Errbot init.d start script
#!/bin/sh
### BEGIN INIT INFO
# Provides: errbot
# Required-Start: $local_fs $remote_fs $network
# Required-Stop: $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Errbot
### END INIT INFO
set -e
# /etc/init.d/errbot: start and stop errbot
USER="errbot"
HOME="/home/errbot"
CONFIG="$HOME/config.py"
PIDPATH="$HOME"
PIDFILE="$PIDPATH/errbot.pid"
DAEMON="$HOME/venv/bin/errbot"
DAEMON_ARGS="--config $CONFIG --pidfile $PIDFILE --daemon"
test -x "$DAEMON" || exit 0
if [ -f /etc/default/errbot ] ; then
. /etc/default/errbot
fi
# Check that user exists
check_user() {
if ! getent passwd $USER >/dev/null; then
exit 1;
fi
}
. /lib/lsb/init-functions
case "$1" in
start)
check_user
log_daemon_msg "Starting errbot" "errbot"
if start-stop-daemon --start --quiet --oknodo --pidfile "$PIDFILE" --chuid $USER --exec $DAEMON -- $DAEMON_ARGS
then
log_end_msg 0
else
log_end_msg 1
fi
;;
stop)
log_daemon_msg "Stopping errbot" "errbot"
if start-stop-daemon --stop --retry 30 --quiet --oknodo --pidfile "$PIDFILE"
then
log_end_msg 0
else
log_end_msg 1
fi
;;
force-reload|restart)
$0 stop
$0 start
;;
*)
log_action_msg "Usage: /etc/init.d/errbot {start|stop|restart}"
exit 1
;;
esac
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment