24 lines
655 B
Text
24 lines
655 B
Text
#!/sbin/openrc-run
|
|
|
|
name="$RC_SVCNAME"
|
|
cfgfile="/etc/conf.d/$RC_SVCNAME"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
working_directory="/usr/share/webapps/authentik"
|
|
command="/usr/bin/authentik-ldap"
|
|
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 authentik
|
|
}
|
|
|
|
start_pre() {
|
|
cd "$working_directory"
|
|
checkpath --directory --owner $command_user:$command_group --mode 0775 \
|
|
/var/log/authentik
|
|
export AUTHENTIK_HOST AUTHENTIK_TOKEN AUTHENTIK_INSECURE AUTHENTIK_DEBUG
|
|
}
|