diff options
-rwxr-xr-x | minimunin | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -319,7 +319,7 @@ env_for_plugin_from_config() { | |||
319 | 319 | ||
320 | call_plugin() { | 320 | call_plugin() { |
321 | _param=$2 | 321 | _param=$2 |
322 | _plug=`/usr/bin/find ${PLUGIN_DIR} -type f -perm +111 -name $1 2>/dev/null | /usr/bin/head -n 1` | 322 | _plug=`/usr/bin/find ${PLUGIN_DIR} \( -type l -or -type f \) -perm +111 -name $1 2>/dev/null | /usr/bin/head -n 1` |
323 | [ -z "${_plug}" ] && return 1 | 323 | [ -z "${_plug}" ] && return 1 |
324 | 324 | ||
325 | _env=$( printf "%s\n" "${CONFIGS}" | env_for_plugin_from_config ${_plug} ) | 325 | _env=$( printf "%s\n" "${CONFIGS}" | env_for_plugin_from_config ${_plug} ) |