From 2c5572b3d9253c1ba4a0fcc6ff80420d888fa5f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Fri, 19 Feb 2021 14:58:30 +0100 Subject: [PATCH] qvm-template-postprocess: fix allowed features list Add missing coma, otherwise 'gui-emulated' and 'qrexec' were glued together. --- qubesadmin/tools/qvm_template_postprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubesadmin/tools/qvm_template_postprocess.py b/qubesadmin/tools/qvm_template_postprocess.py index dca649a..b5b33d8 100644 --- a/qubesadmin/tools/qvm_template_postprocess.py +++ b/qubesadmin/tools/qvm_template_postprocess.py @@ -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':