hvm: do not kill stubdom GUI in debug mode
This commit is contained in:
parent
cd54af231b
commit
b17bf72b8a
@ -446,7 +446,7 @@ class QubesHVm(QubesVm):
|
|||||||
if not before_qrexec and self.guiagent_installed:
|
if not before_qrexec and self.guiagent_installed:
|
||||||
super(QubesHVm, self).start_guid(verbose, notify_function, extra_guid_args=["-Q"], **kwargs)
|
super(QubesHVm, self).start_guid(verbose, notify_function, extra_guid_args=["-Q"], **kwargs)
|
||||||
stubdom_guid_pidfile = '/var/run/qubes/guid-running.%d' % self.stubdom_xid
|
stubdom_guid_pidfile = '/var/run/qubes/guid-running.%d' % self.stubdom_xid
|
||||||
if os.path.exists(stubdom_guid_pidfile):
|
if os.path.exists(stubdom_guid_pidfile) and not self.debug:
|
||||||
try:
|
try:
|
||||||
stubdom_guid_pid = int(open(stubdom_guid_pidfile, 'r').read())
|
stubdom_guid_pid = int(open(stubdom_guid_pidfile, 'r').read())
|
||||||
os.kill(stubdom_guid_pid, signal.SIGTERM)
|
os.kill(stubdom_guid_pid, signal.SIGTERM)
|
||||||
|
Loading…
Reference in New Issue
Block a user