mirror of https://github.com/CISOfy/lynis.git
Fixed an comparison error when Docker is present, but the daemon is not running (or unset).
This commit is contained in:
parent
0379bab6c1
commit
25c8567b57
|
@ -119,6 +119,9 @@
|
||||||
# Check total of containers
|
# Check total of containers
|
||||||
logtext "Test: checking total amount of Docker containers"
|
logtext "Test: checking total amount of Docker containers"
|
||||||
DOCKER_CONTAINERS_TOTAL=`${DOCKERBINARY} info 2> /dev/null | grep "^Containers: " | awk '{ print $2 }'`
|
DOCKER_CONTAINERS_TOTAL=`${DOCKERBINARY} info 2> /dev/null | grep "^Containers: " | awk '{ print $2 }'`
|
||||||
|
if [ ${DOCKER_CONTAINERS_TOTAL} -z ]; then
|
||||||
|
DOCKER_CONTAINERS_TOTAL=0
|
||||||
|
fi
|
||||||
logtext "Result: docker info shows ${DOCKER_CONTAINERS_TOTAL} containers"
|
logtext "Result: docker info shows ${DOCKER_CONTAINERS_TOTAL} containers"
|
||||||
DOCKER_CONTAINERS_TOTAL2=`${DOCKERBINARY} ps -a 2> /dev/null | grep -v "CONTAINER" | wc -l`
|
DOCKER_CONTAINERS_TOTAL2=`${DOCKERBINARY} ps -a 2> /dev/null | grep -v "CONTAINER" | wc -l`
|
||||||
logtext "Result: docker ps -a shows ${DOCKER_CONTAINERS_TOTAL2} containers"
|
logtext "Result: docker ps -a shows ${DOCKER_CONTAINERS_TOTAL2} containers"
|
||||||
|
@ -131,7 +134,7 @@
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check running instances
|
# Check running instances
|
||||||
DOCKER_CONTAINERS_RUNNING=`${DOCKERBINARY} ps | grep -v "CONTAINER" | wc -l`
|
DOCKER_CONTAINERS_RUNNING=`${DOCKERBINARY} ps 2> /dev/null | grep -v "CONTAINER" | wc -l`
|
||||||
Display --indent 8 --text "- Running containers" --result "${DOCKER_CONTAINERS_RUNNING}" --color GREEN
|
Display --indent 8 --text "- Running containers" --result "${DOCKER_CONTAINERS_RUNNING}" --color GREEN
|
||||||
if [ ${DOCKER_CONTAINERS_RUNNING} -gt 0 ]; then
|
if [ ${DOCKER_CONTAINERS_RUNNING} -gt 0 ]; then
|
||||||
logtext "Result: ${DOCKER_CONTAINERS_RUNNING} containers are currently active"
|
logtext "Result: ${DOCKER_CONTAINERS_RUNNING} containers are currently active"
|
||||||
|
|
Loading…
Reference in New Issue