From: Silvio Rhatto Date: Wed, 8 Dec 2021 00:00:12 +0000 (-0300) Subject: Fix: kvmx_running on debian bullseye (2) X-Git-Tag: 0.1.0~46 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=e1a1bd36c6df22ae9c2af75cf07cbd940e824733;p=kvmx.git Fix: kvmx_running on debian bullseye (2) --- diff --git a/kvmx b/kvmx index 7478494..a486271 100755 --- a/kvmx +++ b/kvmx @@ -992,7 +992,7 @@ function kvmx_running { #ps $PID &> /dev/null # Better check were process should match a qemu binary - ps -o command $PID | grep -q -E '(^qemu)|(qemu)' + ps -o command $PID | grep -q -E '(^kvm)|(^qemu)' return $? }