fix: typo in bare metal detection (fixes #269)

This commit is contained in:
Stéphane Lesimple 2018-12-12 00:24:17 +01:00
parent b0083d918e
commit d7d2e6934b
1 changed files with 2 additions and 2 deletions

View File

@ -3767,9 +3767,9 @@ check_CVE_2018_3646_linux()
_debug "hypervisor: dmesg truncated"
fi
# test for kernel detected paravirtualization
dmesg_grep "Booting paravirtualized kernel on bare metal" ; ret=$?
dmesg_grep "Booting paravirtualized kernel on bare hardware" ; ret=$?
if [ $ret -eq 0 ]; then
_debug "hypervisor: not present (bare metal)- found in dmesg: $dmesg_grepped"
_debug "hypervisor: not present (bare hardware)- found in dmesg: $dmesg_grepped"
elif [ $ret -eq 2 ]; then
_debug "hypervisor: dmesg truncated"
else