32 lines
959 B
Text
32 lines
959 B
Text
#!/sbin/openrc-run
|
|
|
|
name="$RC_SVCNAME"
|
|
cfgfile="/etc/conf.d/$RC_SVCNAME.conf"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
working_directory="/usr/share/webapps/authentik"
|
|
command="celery"
|
|
command_args="-A authentik.root.celery worker -Ofair --max-tasks-per-child=1 --autoscale 3,1 -E -B -s /tmp/celerybeat-schedule -Q authentik,authentik_scheduled,authentik_events"
|
|
command_user="authentik"
|
|
command_group="authentik"
|
|
start_stop_daemon_args=""
|
|
command_background="yes"
|
|
output_log="/var/log/authentik/$RC_SVCNAME.log"
|
|
error_log="/var/log/authentik/$RC_SVCNAME.err"
|
|
|
|
depend() {
|
|
need redis
|
|
need postgresql
|
|
}
|
|
|
|
start_pre() {
|
|
cd "$working_directory"
|
|
checkpath --directory --owner $command_user:$command_group --mode 0775 \
|
|
/var/log/authentik \
|
|
/var/lib/authentik/certs \
|
|
/var/lib/authentik/blueprints
|
|
}
|
|
|
|
stop_pre() {
|
|
ebegin "Killing child processes"
|
|
kill $(ps -o pid= --ppid $(cat $pidfile)) || true
|
|
}
|