Spotter-VM/motech/setup/etc/init.d/motech
2018-09-13 21:14:53 +02:00

24 lines
269 B
Plaintext
Executable File

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