mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
13 lines
212 B
Text
13 lines
212 B
Text
#!/sbin/openrc-run
|
|
# (c) 2016 Alpine Linux
|
|
|
|
command="/usr/sbin/lxd"
|
|
command_args="${LXD_OPTIONS}"
|
|
command_background="true"
|
|
pidfile="/var/run/${RC_SVCNAME}.pid"
|
|
|
|
depend() {
|
|
need net
|
|
use lxcfs
|
|
after firewall
|
|
}
|