#!/sbin/openrc-run description="OpenDataKit Build container" depend() { need postgres } start() { lxc-start opendatakit-build } start_post() { /usr/bin/vmmgr register-proxy opendatakit-build } stop_pre() { /usr/bin/vmmgr unregister-proxy opendatakit-build } stop() { lxc-stop opendatakit-build }