From 09e12a6d4fc01f9252de5cbf869cfa55ea1aaf23 Mon Sep 17 00:00:00 2001 From: Jason Levine Date: Mon, 27 Feb 2017 09:38:16 -0500 Subject: fix readme to reflect need to quote command-line, space-separated username/password env vars add backward compatibility for previous MUNIN_USER and MUNIN_PASSWORD env vars --- start-munin.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'start-munin.sh') diff --git a/start-munin.sh b/start-munin.sh index 4ab8e1c..fef4449 100755 --- a/start-munin.sh +++ b/start-munin.sh @@ -1,8 +1,8 @@ #!/bin/bash NODES=${NODES:-} SNMP_NODES=${SNMP_NODES:-} -MUNIN_USERS=${MUNIN_USERS:-user} -MUNIN_PASSWORDS=${MUNIN_PASSWORDS:-password} +MUNIN_USERS=${MUNIN_USERS:-${MUNIN_USER:-user}} +MUNIN_PASSWORDS=${MUNIN_PASSWORDS:-${MUNIN_PASSWORD:-password}} MAIL_CONF_PATH='/var/lib/munin/.mailrc' SMTP_USE_TLS=${SMTP_USE_TLS:-false} SMTP_ALWAYS_SEND=${SMTP_ALWAYS_SEND:-true} -- cgit v1.2.1