aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2021-12-07 21:00:12 -0300
committerSilvio Rhatto <rhatto@riseup.net>2021-12-07 21:00:12 -0300
commite1a1bd36c6df22ae9c2af75cf07cbd940e824733 (patch)
tree0b077c81d460aa89b906cde586f5deb10206ae34
parent4d7e56a671f66b8e25077dd5b4bf55c40ab53253 (diff)
downloadkvmx-e1a1bd36c6df22ae9c2af75cf07cbd940e824733.tar.gz
kvmx-e1a1bd36c6df22ae9c2af75cf07cbd940e824733.tar.bz2
Fix: kvmx_running on debian bullseye (2)
-rwxr-xr-xkvmx2
1 files changed, 1 insertions, 1 deletions
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 $?
}