2020-12-25 20:00:18 +01:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
|
|
|
supervisor=supervise-daemon
|
|
|
|
|
|
|
|
name="Anbox container manager"
|
|
|
|
command=/usr/bin/anbox
|
|
|
|
command_args="container-manager --daemon --privileged --data-path=/var/lib/anbox --android-image=/usr/share/anbox/android.img"
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
need localmount sysfs cgroups fuse
|
|
|
|
use net
|
|
|
|
after firewall
|
|
|
|
}
|
|
|
|
|
|
|
|
start_pre() {
|
|
|
|
# that's all you need to avoid the lxc dependency
|
|
|
|
checkpath --directory /usr/lib/lxc
|
|
|
|
checkpath --directory /usr/lib/lxc/rootfs
|
|
|
|
|
|
|
|
modprobe loop
|
|
|
|
modprobe tun
|
|
|
|
|
2020-12-31 01:16:50 +01:00
|
|
|
if ! [[ -d /dev/binderfs ]]; then
|
|
|
|
mkdir /dev/binderfs
|
|
|
|
mount -t binder binder /dev/binderfs
|
|
|
|
fi
|
|
|
|
|
2020-12-25 20:00:18 +01:00
|
|
|
if ip link show anbox0 >/dev/null 2>&1; then
|
|
|
|
ewarn "anbox0 network interface already exists"
|
|
|
|
else
|
|
|
|
ebegin "Creating anbox0 network interface"
|
|
|
|
/usr/share/anbox/anbox-bridge.sh start
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
stop_post() {
|
|
|
|
if ip link show anbox0 >/dev/null 2>&1; then
|
|
|
|
ebegin "Removing anbox0 network interface"
|
|
|
|
/usr/share/anbox/anbox-bridge.sh stop
|
|
|
|
eend $?
|
|
|
|
fi
|
|
|
|
}
|