contrib/gitea/gitea.service

43 lines
863 B
SYSTEMD
Raw Normal View History

2023-02-20 13:22:48 +01:00
#!/bin/sh
#
# /etc/rc.d/gitea: start/stop gitea daemon
#
SSD=/sbin/start-stop-daemon
PROG=/usr/bin/gitea
2024-03-03 23:18:18 +01:00
OPTS="web"
2023-02-20 13:22:48 +01:00
USER="gitea"
2024-03-03 23:18:18 +01:00
GROUP="www"
PID=/run/gitea/gitea.pid
2023-02-20 13:22:48 +01:00
case $1 in
start)
2024-03-03 23:18:18 +01:00
if [ ! -e /run/gitea ]; then
install -d -o $USER -g $GROUP -m 644 /run/gitea
fi
$SSD --start -b --pidfile $PID --make-pidfile -c $USER -u $USER --exec $PROG -- $OPTS
2023-02-20 13:22:48 +01:00
;;
stop)
2024-03-03 23:18:18 +01:00
$SSD --stop -u $USER --retry 10 --pidfile $PID
2023-02-20 13:22:48 +01:00
;;
restart)
$0 stop
$0 start
;;
status)
2024-03-03 23:18:18 +01:00
$SSD --status --pidfile $PID
2023-02-20 13:22:48 +01:00
case $? in
0) echo "$PROG is running with pid $(pidof $PROG)" ;;
1) echo "$PROG is not running but the pid file $PID exists" ;;
3) echo "$PROG is not running" ;;
4) echo "Unable to determine the program status" ;;
esac
;;
*)
echo "usage: $0 [start|stop|restart|status]"
;;
esac
# End of file