mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-11 00:04:36 +02:00
11 lines
187 B
Bash
11 lines
187 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="$SVCNAME"
|
|
command="/usr/sbin/nscd"
|
|
command_args="$NSCD_OPTS"
|
|
pidfile="/run/$SVCNAME.pid"
|
|
command_background=true
|
|
|
|
start_pre() {
|
|
mkdir -p /var/run/nscd
|
|
}
|