qubes-session-autostart: do not wait for applications exit

Since fixing QubesOS/qubes-issues#3213, launch function correctly waits
for some applications exit. This is undesirable for
qubes-session-autostart service, which should just start the
applications and exit.
这个提交包含在:
Marek Marczykowski-Górecki 2018-04-02 23:17:14 +02:00
父节点 646c9f1aae
当前提交 c525d6213c
找不到此签名对应的密钥
GPG 密钥 ID: 063938BA42CFA724

查看文件

@ -76,7 +76,7 @@ def process_autostart(environments):
else:
entry = DesktopEntry(entry_path)
if entry_should_be_started(entry, environments):
launch(entry_path)
launch(entry_path, wait=False)
except Exception as e:
print >>sys.stderr, "Failed to process '{}': {}".format(
entry_name, str(e)