Skip to content

Commit

Permalink
winusb: run qrexec agent in stubdom before the main qrexec daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
easydozen committed Jan 27, 2021
1 parent 29daff1 commit 8ebc7aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qubes/vm/qubesvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1210,10 +1210,10 @@ def start(self, start_guid=True, notify_function=None,
self.log.warning('Activating the {} VM'.format(self.name))
self.libvirt_domain.resume()

yield from self.start_qrexec_daemon()
if self.virt_mode == 'hvm' and \
self.features.check_with_template('stubdom_qrexec', False):
self.features.check_with_template('stubdom-qrexec', False):
yield from self.start_qrexec_daemon(stubdom=True)
yield from self.start_qrexec_daemon()

yield from self.fire_event_async('domain-start',
start_guid=start_guid)
Expand Down

0 comments on commit 8ebc7aa

Please sign in to comment.