2018-01-18 13:39:39 +01:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
2018-09-13 22:02:25 +02:00
|
|
|
description="Pan.do/ra container"
|
2018-01-18 13:39:39 +01:00
|
|
|
|
|
|
|
depend() {
|
2018-09-14 10:41:00 +02:00
|
|
|
need postgres rabbitmq
|
2018-01-18 13:39:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
2018-09-13 22:02:25 +02:00
|
|
|
lxc-start pandora
|
2018-01-18 13:39:39 +01:00
|
|
|
}
|
|
|
|
|
2018-03-25 23:18:24 +02:00
|
|
|
start_post() {
|
2018-09-04 21:42:26 +02:00
|
|
|
/usr/bin/vmmgr register-proxy pandora
|
2018-04-29 20:48:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stop_pre() {
|
2018-09-04 21:42:26 +02:00
|
|
|
/usr/bin/vmmgr unregister-proxy pandora
|
2018-03-25 23:18:24 +02:00
|
|
|
}
|
|
|
|
|
2018-01-18 13:39:39 +01:00
|
|
|
stop() {
|
2018-09-13 22:02:25 +02:00
|
|
|
lxc-stop pandora
|
2018-01-18 13:39:39 +01:00
|
|
|
}
|