blob: ed6f1e21baabe3d1865bb030a9e0b916b3190df8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/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
}
|