From e5b77379e0e7338f6a1eb93361b01c83c975c103 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Wed, 8 Mar 2017 21:54:12 +0100 Subject: [PATCH] Fixes commands setting vars not working Some commands that require setting a variable, like "force-update" wouldn't work without this "eval" argument. Example: ```` $ ./insserver fu /home/insserver/lgsm/functions/core_getopt.sh: line 176: forceupdate=1;: command not found ```` This fixes the issue. Tested on Debian & Ubuntu. --- lgsm/functions/core_getopt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 92ef90002..a17487eb5 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -173,7 +173,7 @@ for i in "${optcommands[@]}"; do for ((currcmdindex=1; currcmdindex <= ${currcmdamount}; currcmdindex++)); do if [ "$(echo "${currentopt[index]}"| awk -F ';' -v x=${currcmdindex} '{ print $x }')" == "${getopt}" ]; then # Run command - ${currentopt[index+1]} + eval ${currentopt[index+1]} core_exit.sh break fi @@ -186,4 +186,4 @@ done echo -e "${red}Unknown command${default}: $0 ${getopt}" exitcode=2 fn_opt_usage -core_exit.sh \ No newline at end of file +core_exit.sh