From e2fb91aeabcf25ac7df5aac82111073c4c6c74a9 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 11 Feb 2019 19:49:26 +0000 Subject: [PATCH] feat: glibc data now pulled from serverlist.csv --- lgsm/functions/info_glibc.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lgsm/functions/info_glibc.sh b/lgsm/functions/info_glibc.sh index 2ca239991..b33d979b5 100644 --- a/lgsm/functions/info_glibc.sh +++ b/lgsm/functions/info_glibc.sh @@ -6,5 +6,4 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" -glibcrequired=$(grep "${shortname}" "${serverlist}" | awk -F "," '{ print $5 }') -glibcfix=$(grep "${shortname}" "${serverlist}" | awk -F "," '{ print $6 }') \ No newline at end of file +glibcrequired=$(awk -F "," '{ print $1,$5 }' "${serverlist}" | grep "${shortname}" ) \ No newline at end of file