mirror of
https://github.com/CISOfy/lynis.git
synced 2025-07-25 23:05:01 +02:00
Redirect stderr for host command
This commit is contained in:
parent
3f7d0260e5
commit
2ce4cf5c57
@ -117,7 +117,7 @@
|
||||
else
|
||||
FIND=`which host 2> /dev/null`
|
||||
if [ ! "${FIND}" = "" ]; then
|
||||
PROGRAM_LV=`host -t txt lynis-lv.rootkit.nl | awk '{ if ($1=="lynis-lv.rootkit.nl" && $3=="text") { print $4 }}' | sed 's/"//g'`
|
||||
PROGRAM_LV=`host -t txt lynis-lv.rootkit.nl 2> /dev/null | awk '{ if ($1=="lynis-lv.rootkit.nl" && $3=="text") { print $4 }}' | sed 's/"//g'`
|
||||
if [ "${PROGRAM_LV}" = "" ]; then PROGRAM_LV=0; fi
|
||||
else
|
||||
logtext "Result: dig and host not installed, update check skipped"
|
||||
@ -751,8 +751,8 @@
|
||||
# Skip if a test is root only and we are running a non-privileged test
|
||||
if [ ${ROOT_ONLY} -eq 1 -a ! ${MYID} = "0" ]; then
|
||||
SKIPTEST=1; SKIPREASON="This test needs root permissions"
|
||||
Debug "Test ${TEST_NO} skipped as this one required root permissions to work"
|
||||
SKIPPED_TESTS_ROOTONLY="${SKIPPED_TESTS_ROOTONLY}====${TEST_NO}:space:${TEST_DESCRIPTION}"
|
||||
SKIPPED_TESTS_ROOTONLY="${SKIPPED_TESTS_ROOTONLY}====${TEST_NO}:space:-:space:${TEST_DESCRIPTION}"
|
||||
#SkipTest "${TEST_NO}:Test:space:requires:space:root:space:permissions:-:-:"
|
||||
fi
|
||||
|
||||
# Skip test if it's configured in profile
|
||||
|
Loading…
x
Reference in New Issue
Block a user