Spotter-VM/solr/setup/etc/init.d/solr

16 lines
135 B
Plaintext
Executable File

#!/sbin/openrc-run
description="Solr container"
depend() {
need lxc
}
start() {
lxc-start -n solr
}
stop() {
lxc-stop -n solr
}