summaryrefslogtreecommitdiffstats
path: root/core/modules/run-virt/data/opt/openslx/vmchooser/run-virt-includes/vmchooser_runvirt_functions.inc
diff options
context:
space:
mode:
authorJannik Schönartz2021-11-29 01:11:46 +0100
committerJannik Schönartz2021-11-29 01:11:46 +0100
commit743f83acbec09e3e6f3c2e37e0f9798ad1c24d95 (patch)
tree08c349d99c6b844817a495592143643d0664f662 /core/modules/run-virt/data/opt/openslx/vmchooser/run-virt-includes/vmchooser_runvirt_functions.inc
parent[qemu] Start virt-manager without any forks (diff)
downloadmltk-remote-edit-vm.tar.gz
mltk-remote-edit-vm.tar.xz
mltk-remote-edit-vm.zip
[qemu] Add edit support via remoteremote-edit-vm
vmchooser: fix so that autostart uuid parameter works run-virt: replace cleanuploop with a while, so firefox can interrup the session shutdown
Diffstat (limited to 'core/modules/run-virt/data/opt/openslx/vmchooser/run-virt-includes/vmchooser_runvirt_functions.inc')
-rw-r--r--core/modules/run-virt/data/opt/openslx/vmchooser/run-virt-includes/vmchooser_runvirt_functions.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/modules/run-virt/data/opt/openslx/vmchooser/run-virt-includes/vmchooser_runvirt_functions.inc b/core/modules/run-virt/data/opt/openslx/vmchooser/run-virt-includes/vmchooser_runvirt_functions.inc
index a5c20aea..4b50f537 100644
--- a/core/modules/run-virt/data/opt/openslx/vmchooser/run-virt-includes/vmchooser_runvirt_functions.inc
+++ b/core/modules/run-virt/data/opt/openslx/vmchooser/run-virt-includes/vmchooser_runvirt_functions.inc
@@ -135,7 +135,8 @@ cleanexit() {
"${TASK}" &
cleanups+=( "$!" )
done
- for i in 1 1 2 2 3 3 4 4; do
+ #for i in 1 1 2 2 3 3 4 4; do
+ while true; do
usleep 500000
kill -0 "${cleanups[@]}" &> /dev/null || break
done