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