Spotter-VM/lxc-apps/seeddms/install/etc/init.d/seeddms

24 lines
239 B
Plaintext
Raw Normal View History

2018-01-08 15:06:11 +01:00
#!/sbin/openrc-run
2018-09-14 09:02:16 +02:00
description="SeedDMS container"
2018-01-08 15:06:11 +01:00
depend() {
need postgres
2018-01-08 15:06:11 +01:00
}
start() {
2018-09-14 09:02:16 +02:00
lxc-start seeddms
2018-01-08 15:06:11 +01:00
}
start_post() {
vmmgr register-proxy seeddms
}
stop_pre() {
vmmgr unregister-proxy seeddms
}
2018-01-08 15:06:11 +01:00
stop() {
2018-09-14 09:02:16 +02:00
lxc-stop seeddms
2018-01-08 15:06:11 +01:00
}