muninlite: add support for minimal runtime configuration file (#10)

It's executed as shell script. For example, you can remove unwanted
plugin by adding following line to /etc/munin/muninlite.conf:

PLUGINS=${PLUGINS/ swap/}

It could also be used to add more plugins (with runtime on/off detection!),
although pluginsdir is the preferred way to do it.

It can also be used to override other hardcoded settings, like NTP_PEER or
DF_IGNORE_FILESYSTEM_REGEX.
This commit is contained in:
Kim B. Heino 2020-10-08 15:02:37 +03:00 committed by GitHub
parent 00cfedfd92
commit 389c22a0de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,9 @@ set -eu
@@CONF@@
# Name of runtime configuration file
CONFIG_FILE=/etc/munin/muninlite.conf
# if plugindir_ is present in $PLUGINS, executables (scripts, binaries) in the specified path
# and matching the pattern will be scanned and operated as plugins
PLUGIN_DIRECTORY=/etc/munin/plugins
@ -69,6 +72,8 @@ do_quit() {
}
# ===== Runtime config =====
# shellcheck source=/dev/null
[ -f ${CONFIG_FILE} ] && . ${CONFIG_FILE}
RES=""
for PLUG in $PLUGINS; do
case "$PLUG" in