Spotter-VM/sigmah/install/etc/init.d/sigmah

24 lines
234 B
Plaintext
Raw Normal View History

2018-01-26 21:25:03 +01:00
#!/sbin/openrc-run
2018-09-14 09:09:46 +02:00
description="Sigmah container"
2018-01-26 21:25:03 +01:00
depend() {
need postgres
2018-01-26 21:25:03 +01:00
}
start() {
2018-09-14 09:09:46 +02:00
lxc-start sigmah
2018-01-26 21:25:03 +01:00
}
start_post() {
vmmgr register-proxy sigmah
}
stop_pre() {
vmmgr unregister-proxy sigmah
}
2018-01-26 21:25:03 +01:00
stop() {
2018-09-14 09:09:46 +02:00
lxc-stop sigmah
2018-01-26 21:25:03 +01:00
}