24 lines
234 B
Plaintext
Raw Normal View History

2018-09-14 08:53:27 +02:00
#!/sbin/openrc-run
description="SAMBRO container"
depend() {
need postgres
2018-09-14 08:53:27 +02:00
}
start() {
lxc-start sambro
}
start_post() {
vmmgr register-proxy sambro
2018-09-14 08:53:27 +02:00
}
stop_pre() {
vmmgr unregister-proxy sambro
2018-09-14 08:53:27 +02:00
}
stop() {
lxc-stop sambro
}