mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
14 lines
244 B
Text
14 lines
244 B
Text
#!/sbin/openrc-run
|
|
|
|
name="$SVCNAME"
|
|
command="/sbin/$SVCNAME"
|
|
command_args="${NLDEV_OPTS:--k}"
|
|
pidfile="/var/run/$SVCNAME.pid"
|
|
command_background="yes"
|
|
|
|
depend() {
|
|
provide dev
|
|
need sysfs dev-mount
|
|
before checkfs fsck
|
|
keyword -lxc -vserver
|
|
}
|