Spotter-VM/ecogis/install/etc/init.d/ecogis

24 lines
234 B
Plaintext
Executable File

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