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