mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
13 lines
304 B
Bash
13 lines
304 B
Bash
#!/sbin/openrc-run
|
|
|
|
name=$RC_SVCNAME
|
|
description="OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors"
|
|
supervisor="supervise-daemon"
|
|
command="/usr/bin/dex-idp"
|
|
supervise_daemon_args=" serve /etc/dex.yaml"
|
|
command_user="dex-idp:dex-idp"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|