contrib/authelia/authelia.service

40 lines
727 B
SYSTEMD
Raw Normal View History

#!/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)
2024-07-19 20:46:46 +02:00
$SSD --stop --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