From 250fb965d3e2a20695cde104579dacff292f9031 Mon Sep 17 00:00:00 2001 From: David <2069735+Marzal@users.noreply.github.com> Date: Wed, 17 Jul 2019 23:08:20 +0200 Subject: [PATCH 1/2] Strict mode needs this vars initialized --- include/consts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/consts b/include/consts index 343567df..4f8c5246 100644 --- a/include/consts +++ b/include/consts @@ -313,6 +313,16 @@ unset LANG XARGSBINARY="" YUMBINARY="" ZYPPERBINARY="" + +# == Variables for strict mode == + IFCONFIGBINARY="" + LOCATEBINARY="" + SEARCH_VERSION="" + SHA1SUMBINARY="" + SHA256SUMBINARY="" + OPENSSLBINARY="" + LICENSE_KEY="" + # ################################################################################# # From 06413994cfaa2281567d7482c5da29dedf1ce383 Mon Sep 17 00:00:00 2001 From: David <2069735+Marzal@users.noreply.github.com> Date: Wed, 17 Jul 2019 23:16:47 +0200 Subject: [PATCH 2/2] Initialize some vars to allow strict mode to work IsRunning(): To check if $users is empty in strict mode we need the var to be initializez ReportException: Some test call this function without the second parameter, this is not allowed in strict mode if we don't initialize the variable --- include/functions | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/functions b/include/functions index d8c39740..a48c338d 100644 --- a/include/functions +++ b/include/functions @@ -1400,7 +1400,8 @@ # AIX does not fully support pgrep options, so using ps instead if [ -n "${PGREPBINARY}" -a ! "${OS}" = "AIX" ]; then # When --user is used, perform a search using the -u option - if [ -n "${users}" ]; then + # Initialize users for strict mode + if [ -n "${users:-}" ]; then for u in "${users}"; do user_uid=$(getent passwd ${u} 2> /dev/null | ${AWKBINARY} -F: '{print $3}') # Only perform search if user exists and we had no match yet @@ -2641,8 +2642,9 @@ # Log exceptions ReportException() { - Report "exception_event[]=$1|$2|" - LogText "Exception: test has an exceptional event ($1) with text $2" + # Allow this function with only 1 parameter in strict mode with ${2-Text} + Report "exception_event[]=$1|${2-NoInfo}|" + LogText "Exception: test has an exceptional event ($1) with text ${2-NoText}" }