diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2024-02-12 21:25:32 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-02-24 17:53:58 +0100 |
commit | 27d408eda1c027c48312e7b9ae96b01cae508474 (patch) | |
tree | e5c54b7ff262454f612b60c854c4254735d5bb60 /dev-db/influxdb | |
parent | dev-python/setuptools-rust: Bump to 1.9.0 (diff) | |
download | gentoo-27d408eda1c027c48312e7b9ae96b01cae508474.tar.gz gentoo-27d408eda1c027c48312e7b9ae96b01cae508474.tar.bz2 gentoo-27d408eda1c027c48312e7b9ae96b01cae508474.zip |
dev-db/influxdb: fix config handling
The config handling changed in v2 completly.
This means, the parameter "-config" is gone and does not exist anymore.
Instead, INFLUXD_CONFIG_PATH needs to be defined with the path,
where InfluxDB v2 needs to look for config files.
For compatibility reason, we will use '/etc/influxdb'.
This can be overriden by user.
Closes: https://bugs.gentoo.org/908437
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/35289
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-db/influxdb')
-rw-r--r-- | dev-db/influxdb/files/influxdb.confd-r1 | 18 | ||||
-rw-r--r-- | dev-db/influxdb/files/influxdb.initd-r1 | 47 | ||||
-rw-r--r-- | dev-db/influxdb/influxdb-2.7.3-r1.ebuild (renamed from dev-db/influxdb/influxdb-2.7.3.ebuild) | 6 |
3 files changed, 70 insertions, 1 deletions
diff --git a/dev-db/influxdb/files/influxdb.confd-r1 b/dev-db/influxdb/files/influxdb.confd-r1 new file mode 100644 index 000000000000..7c225cfea51f --- /dev/null +++ b/dev-db/influxdb/files/influxdb.confd-r1 @@ -0,0 +1,18 @@ +#The convention in this file is to show the default setting commented +#out. +#To change the setting, uncomment it then change the value. + +#This is the influxd error log: +#error_log="/var/log/influxdb/influxd.log" + +#This is the influxd output log: +#output_log="/dev/null" + +#The influxd Config path location: +#config_path="/etc/influxdb/." + +# Extra options to pass to influxd: +#influxd_opts="" + +# Uncomment / edit to enable healthchecks +#INFLUXDB_HEALTHCHECK_URI="127.0.0.1:8086/ping" diff --git a/dev-db/influxdb/files/influxdb.initd-r1 b/dev-db/influxdb/files/influxdb.initd-r1 new file mode 100644 index 000000000000..ef7da61d271d --- /dev/null +++ b/dev-db/influxdb/files/influxdb.initd-r1 @@ -0,0 +1,47 @@ +#!/sbin/openrc-run + +# Logging +error_log="${error_log:-/var/log/influxdb/influxd.log}" +output_log="${output_log:-/dev/null}" + +config_path="${config_path:-/etc/influxdb/.}" +influxd_opts=${influxd_opts:-} + +command=/usr/bin/influxd +command_args="${influxd_opts}" +command_user="influxdb:influxdb" +extra_commands="version" + +retry=SIGTERM/30/SIGKILL/10 +supervisor="supervise-daemon" + +# Max open files +rc_ulimit="-n 65536" + +start_pre() { + # Check if config file exist + if [ -n "${config_path}" ] && [ ! -e "${config_path}" ]; then + checkpath -d -o "${command_user}" "$(dirname "${config_path}")" + fi + if [ -n "${error_log}" ] && [ ! -e "${error_log}" ]; then + checkpath -d -o "${command_user}" "$(dirname "${error_log}")" + fi + if [ -n "${output_log}" ] && [ ! -e "${output_log}" ]; then + checkpath -d -o "${command_user}" "$(dirname "${output_log}")" + fi + return 0 +} + +version() { + $command version +} + +if [ -n "${INFLUXDB_HEALTHCHECK_URI}" ]; then + healthcheck_delay=300 + healthcheck_timer=60 + + healthcheck() { + command -v wget || return 0 + wget -Oq- "${INFLUXDB_HEALTHCHECK_URI}" + } +fi diff --git a/dev-db/influxdb/influxdb-2.7.3.ebuild b/dev-db/influxdb/influxdb-2.7.3-r1.ebuild index 6e2b4f1de31e..f14c9edbd5c8 100644 --- a/dev-db/influxdb/influxdb-2.7.3.ebuild +++ b/dev-db/influxdb/influxdb-2.7.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -267,6 +267,10 @@ src_install() { newinitd "${FILESDIR}"/influxdb.initd influxdb keepdir /var/log/influxdb fowners influxdb:influxdb /var/log/influxdb + + newenvd - "99${PN}" <<-_EOF_ + INFLUXD_CONFIG_PATH="/etc/influxdb" + _EOF_ } pkg_postinst() { |