diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2014-02-12 14:21:59 +0100 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2014-02-12 14:21:59 +0100 |
commit | f3e42da230b1d457ff8b3e54ba4b9b3893779296 (patch) | |
tree | 65bdbad136ee9443e1025561ddf8a69ce883ad3b | |
parent | 3db5208f3e73a0a87309ff8df57b6c4a3b2aadb2 (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-x | minimunin | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | ;; |