Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2019-08-13 22:00:43 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-08-13 22:00:43 +0300
commit914f34363544254a741d9d9c9b0ff829adfcac69 (patch)
tree31da87320cda28ebada7d933f29ec0585651db6c /include
parent2af2d0a89591a52798a9230b4a56e8a47201b500 (diff)
Corrected variable
Diffstat (limited to 'include')
-rw-r--r--include/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions b/include/functions
index e803930e..4e4c9a00 100644
--- a/include/functions
+++ b/include/functions
@@ -1897,7 +1897,7 @@
output=$(${EQUERYBINARY} --quiet ${package} > /dev/null 2>&1)
exit_code=$? # 0=package installed, 3=package not installed
elif [ -n "${PACMANBINARY}" ]; then
- output=$(PACMANBINARY -Qs ${PKG} | grep "local/${PKG} " >/dev/null 2>&1)
+ output=$(${PACMANBINARY} -Qs ${PKG} | grep "local/${PKG} " >/dev/null 2>&1)
exit_code=$? # 0=package installed, 1=package not installed
elif [ -n "${PKG_BINARY}" ]; then
output=$(${PKG_BINARY} -N info ${package} >/dev/null 2>&1)