diff options
Diffstat (limited to 'app-admin/filebeat/files/filebeat.initd')
-rw-r--r-- | app-admin/filebeat/files/filebeat.initd | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/app-admin/filebeat/files/filebeat.initd b/app-admin/filebeat/files/filebeat.initd index 3eb2fcafbf8b..da18022c20d7 100644 --- a/app-admin/filebeat/files/filebeat.initd +++ b/app-admin/filebeat/files/filebeat.initd @@ -1,19 +1,21 @@ #!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 FILEBEAT_USER="${FILEBEAT_USER:-root}" FILEBEAT_GROUP="${FILEBEAT_GROUP:-root}" FILEBEAT_CONFIG="${FILEBEAT_CONFIG:-/etc/filebeat/filebeat.yml}" -FILEBEAT_STATEDIR="${FILEBEAT_STATEDIR:-/var/lib/filebeat}" +FILEBEAT_DATADIR="${FILEBEAT_DATADIR:-/var/lib/filebeat}" +FILEBEAT_LOGDIR="${FILEBEAT_LOGDIR:-/var/log/filebeat}" FILEBEAT_OPTS="${FILEBEAT_OPTS:-}" command="/usr/bin/filebeat" -command_args="-c ${FILEBEAT_CONFIG} ${FILEBEAT_OPTS}" +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_STATEDIR}" + --chdir ${FILEBEAT_DATADIR}" pidfile="/run/filebeat/filebeat.pid" depend() { @@ -26,7 +28,7 @@ checkconfig() { eend "Please create a configuration file at ${FILEBEAT_CONFIG}" return 1 fi - + ebegin "Checking your configuration" ${command} ${command_args} -configtest eend $? "Configuration error. Please fix your configuration files." @@ -36,7 +38,8 @@ start_pre() { checkconfig || return 1 checkpath -d -o "${FILEBEAT_USER}":"${FILEBEAT_GROUP}" -m750 "$(dirname "${pidfile}")" - checkpath -d -o "${FILEBEAT_USER}":"${FILEBEAT_GROUP}" -m750 "${FILEBEAT_STATEDIR}" + checkpath -d -o "${FILEBEAT_USER}":"${FILEBEAT_GROUP}" -m750 "${FILEBEAT_DATADIR}" + checkpath -d -o "${FILEBEAT_USER}":"${FILEBEAT_GROUP}" -m750 "${FILEBEAT_LOGDIR}" } stop() { |