2017-12-19 22:17:12 +01:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
2018-09-05 22:20:24 +02:00
|
|
|
description="CKAN container"
|
2017-12-19 22:17:12 +01:00
|
|
|
|
|
|
|
depend() {
|
2018-09-14 10:41:00 +02:00
|
|
|
need ckan-datapusher postgres redis solr
|
2017-12-19 22:17:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
2018-09-07 15:47:44 +02:00
|
|
|
lxc-start ckan
|
2017-12-19 22:17:12 +01:00
|
|
|
}
|
|
|
|
|
2018-03-25 22:55:15 +02:00
|
|
|
start_post() {
|
2018-09-12 11:56:31 +02:00
|
|
|
/usr/bin/vmmgr register-proxy ckan
|
2018-04-29 20:48:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
stop_pre() {
|
2018-09-12 11:56:31 +02:00
|
|
|
/usr/bin/vmmgr unregister-proxy ckan
|
2018-03-25 22:55:15 +02:00
|
|
|
}
|
|
|
|
|
2017-12-19 22:17:12 +01:00
|
|
|
stop() {
|
2018-09-07 15:47:44 +02:00
|
|
|
lxc-stop ckan
|
2017-12-19 22:17:12 +01:00
|
|
|
}
|