From 9d8b12e0f8683d5a0c93dd0aac845241e464119e Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Mon, 4 Mar 2019 12:13:47 +0100 Subject: [PATCH] Initial lookup with awk corrected --- include/osdetection | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osdetection b/include/osdetection index 83ba2312..ef105eba 100644 --- a/include/osdetection +++ b/include/osdetection @@ -515,8 +515,8 @@ if [ ! -z "${OS_VERSION}" ]; then if [ -f "${DBDIR}/software-eol.db" ]; then FIND="${OS_FULLNAME}" - # Does not work on FreeBSD: EOL_DATE=$(awk -v value="${FIND}" -F: '{if ($1=="os" && $2 ~ value){print $3}}' ${DBDIR}/software-eol.db | head -n 1) - EOL_DATE=$(grep "os:${FIND}" ${DBDIR}/software-eol.db | awk -F: '{print $3}' | head -n 1) + EOL_DATE=$(awk -v value="${FIND}" -F: '{if ($1=="os" && value ~ $2){print $3}}' ${DBDIR}/software-eol.db | head -n 1) + #EOL_DATE=$(grep "os:${FIND}" ${DBDIR}/software-eol.db | awk -F: '{print $3}' | head -n 1) if [ ! -z "${EOL_DATE}" ]; then NOW=$(date "+%s") FIND=$(date "+%s" --date=${EOL_DATE})