Revert "Start qrexec daemon when VM is running (but qrexec not)"

This functionality has already been implemented by:

d6bdb85883

This reverts commit 97403a8e45.
This commit is contained in:
Joanna Rutkowska 2011-04-04 09:35:48 +02:00
parent 3f31a5f3a7
commit b779fadda6

View File

@ -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():