diff options
author | Tomas Mozes <hydrapolic@gmail.com> | 2017-08-24 07:13:55 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-08-29 11:44:48 +0200 |
commit | 9ab083e709e7b243f531f2ba477709bf43fbeed0 (patch) | |
tree | c568ed3046505864fd582562b0c1564266bdc864 /app-admin/filebeat/files | |
parent | dev-util/dbus-test-runner: keyword ~arm64 (diff) | |
download | gentoo-9ab083e709e7b243f531f2ba477709bf43fbeed0.tar.gz gentoo-9ab083e709e7b243f531f2ba477709bf43fbeed0.tar.bz2 gentoo-9ab083e709e7b243f531f2ba477709bf43fbeed0.zip |
app-admin/filebeat: version bump to 5.5.2.
Package-Manager: Portage-2.3.8, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/5498
Diffstat (limited to 'app-admin/filebeat/files')
-rw-r--r-- | app-admin/filebeat/files/filebeat.initd | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/app-admin/filebeat/files/filebeat.initd b/app-admin/filebeat/files/filebeat.initd index 01fccad2ea33..92b8369a41d7 100644 --- a/app-admin/filebeat/files/filebeat.initd +++ b/app-admin/filebeat/files/filebeat.initd @@ -12,11 +12,12 @@ FILEBEAT_OPTS="${FILEBEAT_OPTS:-}" command="/usr/bin/filebeat" command_args="-c ${FILEBEAT_CONFIG} ${FILEBEAT_OPTS} -path.config $(dirname $FILEBEAT_CONFIG) \ -path.data ${FILEBEAT_DATADIR} -path.home ${FILEBEAT_DATADIR} -path.logs ${FILEBEAT_LOGDIR}" -extra_commands="checkconfig" command_background="true" -start_stop_daemon_args="--user ${FILEBEAT_USER}:${FILEBEAT_GROUP} \ - --chdir ${FILEBEAT_DATADIR}" -pidfile="/run/filebeat/filebeat.pid" +command_user="${FILEBEAT_USER}:${FILEBEAT_GROUP}" +extra_commands="checkconfig" +pidfile="/run/filebeat.pid" +retry="TERM/5/KILL/5" +start_stop_daemon_args="--chdir ${FILEBEAT_DATADIR}" depend() { use net @@ -37,14 +38,6 @@ checkconfig() { start_pre() { checkconfig || return 1 - checkpath -d -o "${FILEBEAT_USER}":"${FILEBEAT_GROUP}" -m750 "$(dirname "${pidfile}")" checkpath -d -o "${FILEBEAT_USER}":"${FILEBEAT_GROUP}" -m750 "${FILEBEAT_DATADIR}" checkpath -d -o "${FILEBEAT_USER}":"${FILEBEAT_GROUP}" -m750 "${FILEBEAT_LOGDIR}" } - -stop() { - ebegin "Stopping filebeat" - start-stop-daemon --stop \ - --pidfile=${pidfile} \ - --retry=TERM/5/KILL/5 -} |