mirror of https://github.com/CISOfy/lynis.git
Added more logging
This commit is contained in:
parent
cfc3fae91c
commit
b67d9233eb
|
@ -870,7 +870,9 @@
|
||||||
Register --test-no PKGS-7387 --preqs-met ${PREQS_MET} --os Linux --weight L --network NO --category security --description "Check for GPG signing in YUM security package"
|
Register --test-no PKGS-7387 --preqs-met ${PREQS_MET} --os Linux --weight L --network NO --category security --description "Check for GPG signing in YUM security package"
|
||||||
if [ ${SKIPTEST} -eq 0 ]; then
|
if [ ${SKIPTEST} -eq 0 ]; then
|
||||||
if [ ! -z "${PYTHONBINARY}" ]; then
|
if [ ! -z "${PYTHONBINARY}" ]; then
|
||||||
|
LogText "Test: checking enabled repositories"
|
||||||
REPOS=$(${PYTHONBINARY} -c 'import yum ; yb = yum.YumBase() ; print [(r.id + "=" + str(r.gpgcheck)) for r in yb.repos.listEnabled()]' | ${GREPBINARY} "^\[" | ${TRBINARY} -d '[] ' ${TRBINARY} -d "'" | ${SEDBINARY} 's/,/ /g')
|
REPOS=$(${PYTHONBINARY} -c 'import yum ; yb = yum.YumBase() ; print [(r.id + "=" + str(r.gpgcheck)) for r in yb.repos.listEnabled()]' | ${GREPBINARY} "^\[" | ${TRBINARY} -d '[] ' ${TRBINARY} -d "'" | ${SEDBINARY} 's/,/ /g')
|
||||||
|
if [ -z "${REPOS}" ]; then LogText "Result: found no repositories"; fi
|
||||||
for I in ${REPOS}; do
|
for I in ${REPOS}; do
|
||||||
REPO=$(echo ${I} | ${AWKBINARY} -F= '{print $1}')
|
REPO=$(echo ${I} | ${AWKBINARY} -F= '{print $1}')
|
||||||
GPGSIGNED=$(echo ${I} | ${AWKBINARY} -F= '{print $2}')
|
GPGSIGNED=$(echo ${I} | ${AWKBINARY} -F= '{print $2}')
|
||||||
|
|
Loading…
Reference in New Issue