24 lines
268 B
Plaintext
Executable File
24 lines
268 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Pan.do/ra container"
|
|
|
|
depend() {
|
|
need postgres rabbitmq
|
|
}
|
|
|
|
start() {
|
|
lxc-start pandora
|
|
}
|
|
|
|
start_post() {
|
|
/usr/bin/vmmgr register-proxy pandora
|
|
}
|
|
|
|
stop_pre() {
|
|
/usr/bin/vmmgr unregister-proxy pandora
|
|
}
|
|
|
|
stop() {
|
|
lxc-stop pandora
|
|
}
|