2018-04-21 23:06:16 +02:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
2018-09-13 21:52:38 +02:00
|
|
|
description="OpenDataKit Build container"
|
2018-04-21 23:06:16 +02:00
|
|
|
|
|
|
|
depend() {
|
2018-09-14 10:41:00 +02:00
|
|
|
need postgres
|
2018-04-21 23:06:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
2018-09-13 21:52:38 +02:00
|
|
|
lxc-start opendatakit-build
|
2018-04-21 23:06:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
start_post() {
|
2018-09-04 21:42:26 +02:00
|
|
|
/usr/bin/vmmgr register-proxy opendatakit-build
|
2018-04-21 23:06:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stop_pre() {
|
2018-09-04 21:42:26 +02:00
|
|
|
/usr/bin/vmmgr unregister-proxy opendatakit-build
|
2018-04-21 23:06:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2018-09-13 21:52:38 +02:00
|
|
|
lxc-stop opendatakit-build
|
2018-04-21 23:06:16 +02:00
|
|
|
}
|