summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2014-02-12 14:21:59 +0100
committerDirk Engling <erdgeist@erdgeist.org>2014-02-12 14:21:59 +0100
commitf3e42da230b1d457ff8b3e54ba4b9b3893779296 (patch)
tree65bdbad136ee9443e1025561ddf8a69ce883ad3b
parent3db5208f3e73a0a87309ff8df57b6c4a3b2aadb2 (diff)
A missing _ led to the env-variable not being built properly, thus rendering plugin configs with more than one env entry broken
-rwxr-xr-xminimunin2
1 files changed, 1 insertions, 1 deletions
diff --git a/minimunin b/minimunin
index c9c0d10..98325f6 100755
--- a/minimunin
+++ b/minimunin
@@ -359,7 +359,7 @@ call_plugin() {
359 ;; 359 ;;
360 env.*) [ "${in_sect}" ] || continue 360 env.*) [ "${in_sect}" ] || continue
361 _pref=${line#*env.} 361 _pref=${line#*env.}
362 _env="${env} ${_pref%% *}='${_pref#* }'" 362 _env="${_env} ${_pref%% *}='${_pref#* }'"
363 ;; 363 ;;
364 user\ *) _user=${line#*user } 364 user\ *) _user=${line#*user }
365 ;; 365 ;;