#!/sbin/openrc-run description="EcoGIS container" depend() { need postgres } start() { lxc-start ecogis } start_post() { vmmgr register-proxy ecogis } stop_pre() { vmmgr unregister-proxy ecogis } stop() { lxc-stop ecogis }