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