From fc31161361297ba28d2caf430adbfa6af501c2bb Mon Sep 17 00:00:00 2001 From: Joanna Rutkowska Date: Sat, 2 Jul 2011 22:12:43 +0200 Subject: [PATCH] Dom0: Fix calling syntax for qrexec_client for updatevm --- dom0/qvm-core/qubes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom0/qvm-core/qubes.py b/dom0/qvm-core/qubes.py index daa6802b..da0bb49b 100755 --- a/dom0/qvm-core/qubes.py +++ b/dom0/qvm-core/qubes.py @@ -959,7 +959,7 @@ class QubesVm(object): # Sync RPMDB subprocess.call(["/usr/lib/qubes/sync_rpmdb_updatevm.sh"]) # Start polling - subprocess.call([qrexec_client_path, '-d', xid, '-e', + subprocess.call([qrexec_client_path, '-d', str(xid), '-e', "while true; do sleep %d; /usr/lib/qubes/qubes_download_dom0_updates.sh; done" % dom0_update_check_interval]) # perhaps we should move it before unpause and fork?