From b779fadda64c7b8c0e841136290796ad6531c12b Mon Sep 17 00:00:00 2001 From: Joanna Rutkowska Date: Mon, 4 Apr 2011 09:35:48 +0200 Subject: [PATCH] Revert "Start qrexec daemon when VM is running (but qrexec not)" This functionality has already been implemented by: d6bdb85883d858dbc942543a2ae2b5b11f37140d This reverts commit 97403a8e45009cf2823126968337e4dd5a5fb928. --- dom0/qvm-tools/qvm-run | 9 --------- 1 file changed, 9 deletions(-) diff --git a/dom0/qvm-tools/qvm-run b/dom0/qvm-tools/qvm-run index bfae342f..bafe3a79 100755 --- a/dom0/qvm-tools/qvm-run +++ b/dom0/qvm-tools/qvm-run @@ -124,15 +124,6 @@ def vm_run_cmd(vm, cmd, options): if options.tray: tray_notify_error ("ERROR: Cannot start the GUI daemon for this VM!") exit (1) - - if not os.path.exists("/var/run/qubes/qrexec.{0}".format(xid)): - retcode = subprocess.call ([qrexec_daemon_path, str(xid)]) - if (retcode != 0) : - print "ERROR: Cannot start qrexec!" - if options.tray: - tray_notify_error ("ERROR: Cannot start the QRexec daemon for this VM!") - exit (1) - actually_execute(str(xid), cmd, options); def main():