mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 05:57:14 +02:00
13 lines
235 B
Bash
13 lines
235 B
Bash
#!/sbin/openrc-run
|
|
|
|
name=kanidmd
|
|
command="/usr/bin/kanidmd"
|
|
command_args="server -c /etc/kanidm/server.toml"
|
|
command_user="kanidmd:kanidmd"
|
|
command_background=true
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|