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