Spotter-VM/sigmah/setup/etc/init.d/sigmah
2018-09-14 09:09:46 +02:00

24 lines
260 B
Plaintext
Executable File

#!/sbin/openrc-run
description="Sigmah container"
depend() {
need cgroups 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
}