From 1bd97059bd7eec03f9ca1aa6d9582b65e50afbdf Mon Sep 17 00:00:00 2001 From: Nicolas Pochet Date: Wed, 12 Jun 2019 11:20:38 +0200 Subject: [PATCH] Enclose VFS_LIST in double quotes * It is necessary to enclose it in double quotes. If not, the environment variable will be empty when sourced. Change-Id: Ic4e50dec04eee3b4cdb9d790da4af37f39c07b31 Closes-Bug: 1832378 --- templates/kilo/neutron-openvswitch-networking-sriov | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/kilo/neutron-openvswitch-networking-sriov b/templates/kilo/neutron-openvswitch-networking-sriov index f27f5800..c627c419 100644 --- a/templates/kilo/neutron-openvswitch-networking-sriov +++ b/templates/kilo/neutron-openvswitch-networking-sriov @@ -22,5 +22,5 @@ VFS_BLANKET=auto # #VFS_LIST=ens3p0:16 ens4p0:16 {% if sriov_vfs_list -%} -VFS_LIST={{ sriov_vfs_list }} +VFS_LIST="{{ sriov_vfs_list }}" {% endif -%}