#!/bin/sh # # /etc/rc.d/authelia: start/stop authelia daemon # SSD=/sbin/start-stop-daemon PROG=/usr/bin/authelia OPTS="--config /etc/authelia/configuration.yml" case $1 in start) $SSD --start --background --exec $PROG -- $OPTS ;; stop) $SSD --stop -u $USER --retry 10 --exec $PROG ;; restart) $0 stop $0 start ;; reload) $0 stop $0 start ;; status) $SSD --status -u $USER --name authelia case $? in 0) echo "$PROG is running with pid $(cat $PIDFILE)" ;; 1) echo "$PROG is not running but the pid file $PIDFILE exists" ;; 3) echo "$PROG is not running" ;; 4) echo "Unable to determine the program status" ;; esac ;; *) echo "usage: $0 [start|stop|restart|reload|status]" ;; esac # End of file