24 lines
224 B
Plaintext
Raw Normal View History

2018-11-17 22:08:10 +01:00
#!/sbin/openrc-run
description="Odoo container"
depend() {
need postgres
}
start() {
lxc-start odoo
}
start_post() {
vmmgr register-proxy odoo
2018-11-17 22:08:10 +01:00
}
stop_pre() {
vmmgr unregister-proxy odoo
2018-11-17 22:08:10 +01:00
}
stop() {
lxc-stop odoo
}