mirror of
https://github.com/CISOfy/lynis.git
synced 2026-03-11 08:55:28 +00:00
Don't require sha1sum AND openssl AND csum, but just one of them to exist
This commit is contained in:
parent
a6ef89aa63
commit
bdf8347162
1 changed files with 1 additions and 1 deletions
|
|
@ -350,7 +350,7 @@
|
|||
{
|
||||
HOSTID="-"
|
||||
FIND=""
|
||||
if [ ! "${SHA1SUMBINARY}" = "" -a ! "${OPENSSLBINARY}" = "" -a ! "${CSUMBINARY}" = "" ]; then
|
||||
if [ ! "${SHA1SUMBINARY}" = "" -o ! "${OPENSSLBINARY}" = "" -o ! "${CSUMBINARY}" = "" ]; then
|
||||
|
||||
case "${OS}" in
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue