21 lines
359 B
D
21 lines
359 B
D
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2015 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
start_stop_daemon_args="-u solr:solr"
|
||
|
|
||
|
command="/bin/solr"
|
||
|
command_args="start ${SOLR_OPTS}"
|
||
|
|
||
|
depend() {
|
||
|
need net
|
||
|
use logger
|
||
|
}
|
||
|
|
||
|
start_pre() {
|
||
|
rm -rf /var/tmp/solr
|
||
|
mkdir /var/tmp/solr
|
||
|
chown solr:solr /var/tmp/solr
|
||
|
}
|