24 lines
242 B
Plaintext
Executable File
24 lines
242 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="Odoo container"
|
|
|
|
depend() {
|
|
need postgres
|
|
}
|
|
|
|
start() {
|
|
lxc-start odoo
|
|
}
|
|
|
|
start_post() {
|
|
/usr/bin/vmmgr register-proxy odoo
|
|
}
|
|
|
|
stop_pre() {
|
|
/usr/bin/vmmgr unregister-proxy odoo
|
|
}
|
|
|
|
stop() {
|
|
lxc-stop odoo
|
|
}
|