From 2e8aa6cc2ca374e694637d964366b4c8dbb21b04 Mon Sep 17 00:00:00 2001 From: vvto33 <54504675+vvto33@users.noreply.github.com> Date: Mon, 4 Mar 2024 13:32:12 +0900 Subject: [PATCH] Update bench.sh: check_virt Adjusted to recognize 'KVM' when 'sys_manu' contains 'QEMU'. (Detection was failing on BuyVM.net's KVM VPS) --- bench.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bench.sh b/bench.sh index 7dfc56f..f6114c7 100644 --- a/bench.sh +++ b/bench.sh @@ -159,6 +159,8 @@ check_virt() { virt="KVM" elif [[ "${sys_product}" == *KVM* ]]; then virt="KVM" + elif [[ "${sys_manu}" == *QEMU* ]]; then + virt="KVM" elif [[ "${cname}" == *KVM* ]]; then virt="KVM" elif [[ "${cname}" == *QEMU* ]]; then