24 lines
252 B
Plaintext
Raw Normal View History

#!/sbin/openrc-run
description="EcoGIS container"
depend() {
need postgres
}
start() {
lxc-start ecogis
}
start_post() {
/usr/bin/vmmgr register-proxy ecogis
}
stop_pre() {
/usr/bin/vmmgr unregister-proxy ecogis
}
stop() {
lxc-stop ecogis
}