Skip to content

Commit

Permalink
qvm-template-postprocess: fix allowed features list
Browse files Browse the repository at this point in the history
Add missing coma, otherwise 'gui-emulated' and 'qrexec' were glued
together.
  • Loading branch information
marmarek committed Feb 19, 2021
1 parent c4efdf4 commit 2c5572b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubesadmin/tools/qvm_template_postprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def import_template_config(args, conf_path, vm):
'pci-e820-host',
'linux-stubdom',
'gui',
'gui-emulated'
'gui-emulated',
'qrexec'):
if key in conf:
if conf[key] == '1':
Expand Down

0 comments on commit 2c5572b

Please sign in to comment.