From c5eb1b01a22cbb0543a5af35a8be1ce14a1a97ab Mon Sep 17 00:00:00 2001 From: James Vaughn Date: Mon, 25 Jan 2021 16:02:21 +0000 Subject: [PATCH] Fix SPICE agent setting in Train nova.conf template Prior to this commit the SPICE agent was hard set to True regardless of the nova-cloud-controller spice-agent-enabled value, preventing the use of hw_pointer_model=usbtablet for Windows guests. Change-Id: I6553623414acfadeb415342e8601a00ba5d80660 --- templates/train/nova.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/train/nova.conf b/templates/train/nova.conf index d508b96d..2f6ebab8 100644 --- a/templates/train/nova.conf +++ b/templates/train/nova.conf @@ -215,7 +215,7 @@ vendordata_dynamic_targets = {{ vendor_data_url }} {% if console_access_protocol == 'spice' -%} [spice] -agent_enabled = True +agent_enabled = {{ spice_agent_enabled }} enabled = True html5proxy_base_url = {{ spice_proxy_address }} keymap = {{ console_keymap }}