2018-09-14 08:42:37 +02:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
|
|
|
description="Sahana Eden Demo container"
|
|
|
|
|
|
|
|
depend() {
|
2018-09-14 10:41:00 +02:00
|
|
|
need postgres
|
2018-09-14 08:42:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
lxc-start sahana-demo
|
|
|
|
}
|
|
|
|
|
|
|
|
start_post() {
|
2019-02-26 21:11:08 +01:00
|
|
|
vmmgr register-proxy sahana-demo
|
2018-09-14 08:42:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stop_pre() {
|
2019-02-26 21:11:08 +01:00
|
|
|
vmmgr unregister-proxy sahana-demo
|
2018-09-14 08:42:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
lxc-stop sahana-demo
|
|
|
|
}
|