mirror of
https://github.com/CISOfy/lynis.git
synced 2026-03-11 08:55:28 +00:00
Corrected if-statement
This commit is contained in:
parent
e0ca517aaa
commit
247eb7d9a6
1 changed files with 1 additions and 1 deletions
|
|
@ -1717,7 +1717,7 @@
|
|||
if [ ! -z "${RPMBINARY}" ]; then
|
||||
output=$(${RPMBINARY} --quiet -q ${package} 2> /dev/null)
|
||||
exit_code=$?
|
||||
elif ! -z "${DPKGBINARY}" ]; then
|
||||
elif [ ! -z "${DPKGBINARY}" ]; then
|
||||
output=$(${DPKGBINARY} -l ${package} 2> /dev/null)
|
||||
exit_code=$?
|
||||
elif [ ! -z "${ZYPPERBINARY}" ]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue