app-admin/logstash-bin: Add reload to init script #579032
authorPatrick Lauer <patrick@gentoo.org>
Tue, 5 Apr 2016 09:48:15 +0000 (11:48 +0200)
committerPatrick Lauer <patrick@gentoo.org>
Tue, 5 Apr 2016 09:48:15 +0000 (11:48 +0200)
Package-Manager: portage-2.2.28

app-admin/logstash-bin/files/logstash.initd-r2 [new file with mode: 0644]
app-admin/logstash-bin/logstash-bin-2.3.0-r1.ebuild

diff --git a/app-admin/logstash-bin/files/logstash.initd-r2 b/app-admin/logstash-bin/files/logstash.initd-r2
new file mode 100644 (file)
index 0000000..81d5ceb
--- /dev/null
@@ -0,0 +1,65 @@
+#!/sbin/openrc-run
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+LS_USER=${LS_USER:-logstash}
+LS_GROUP=${LS_GROUP:-$LS_USER}
+LS_LOG_FILE=${LS_LOG_FILE:-/var/log/logstash/logstash.log}
+LS_CONF_DIR=${LS_CONF_DIR:-/etc/logstash/conf.d}
+LS_HOME=${LS_HOME:-/var/lib/logstash}
+LS_HEAP_SIZE=${LS_HEAP_SIZE:-500m}
+LS_NICE=${LS_NICE:-19}
+LS_JAVA_OPTS=${LS_JAVA_OPTS:-"-Djava.io.tmpdir=${LS_HOME}"}
+LS_USE_GC_LOGGING=${LS_USE_GC_LOGGING:-false}
+LS_OPEN_FILES=${LS_OPEN_FILES:-16384}
+KILL_ON_STOP_TIMEOUT=${KILL_ON_STOP_TIMEOUT:-0}
+
+command="/opt/logstash/bin/logstash"
+command_args="agent --config ${LS_CONF_DIR} --log ${LS_LOG_FILE} ${LS_OPTS}"
+command_background="true"
+pidfile=${LS_PIDFILE:-"/run/logstash/logstash.pid"}
+
+start_stop_daemon_args="--user ${LS_USER}:${LS_GROUP} \
+       --chdir ${LS_HOME}
+       --nicelevel ${LS_NICE}
+       --env LS_HEAP_SIZE=${LS_HEAP_SIZE}
+       --env LS_JAVA_OPTS=${LS_JAVA_OPTS}
+       --env LS_USE_GC_LOGGING=${LS_USE_GC_LOGGING}"
+
+extra_commands="checkconfig"
+extra_started_commands="reload"
+
+checkconfig() {
+       ebegin "Checking your configuration"
+       ${command} ${command_args} --configtest
+       eend $? "Configuration error. Please fix your configuration files."
+}
+
+reload() {
+       checkconfig || return 1
+       ebegin "Reloading configuration"
+       start-stop-daemon --signal HUP --pidfile "${pidfile}"
+       eend $?
+}
+
+start_pre() {
+       checkconfig || return 1
+
+       rc_ulimit="-n ${LS_OPEN_FILES}"
+
+       checkpath -d -o "${LS_USER}":"${LS_GROUP}" -m750 "$(dirname "${pidfile}")"
+       checkpath -d -o "${LS_USER}":"${LS_GROUP}" -m750 "$(dirname "${LS_LOG_FILE}")"
+       checkpath -f -o "${LS_USER}":"${LS_GROUP}" -m640 "${LS_LOG_FILE}"
+}
+
+stop() {
+       ebegin "Stopping logstash"
+       if [ "${KILL_ON_STOP_TIMEOUT}" == "1" ]; then
+               start-stop-daemon --stop \
+                       --pidfile=${pidfile} \
+                       --retry=TERM/5/KILL/5
+       else
+               start-stop-daemon --stop \
+                       --pidfile=${pidfile}
+       fi
+}
index 7fcd1d8e0f570da96246eefa9aa6e77e77609c46..e7cee56e5b713980cc67d0958b962c8a828f1235 100644 (file)
@@ -46,7 +46,7 @@ src_install() {
        newins "${FILESDIR}/${MY_PN}.logrotate-r2" "${MY_PN}"
 
        newconfd "${FILESDIR}/${MY_PN}.confd-r1" "${MY_PN}"
-       newinitd "${FILESDIR}/${MY_PN}.initd-r1" "${MY_PN}"
+       newinitd "${FILESDIR}/${MY_PN}.initd-r2" "${MY_PN}"
 }
 
 pkg_postinst() {