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() {
|
2018-09-14 10:41:00 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-03-25 23:21:24 +02:00
|
|
|
start_post() {
|
2019-02-26 21:11:08 +01:00
|
|
|
vmmgr register-proxy sigmah
|
2018-04-29 20:48:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stop_pre() {
|
2019-02-26 21:11:08 +01:00
|
|
|
vmmgr unregister-proxy sigmah
|
2018-03-25 23:21:24 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|