Merge "update pci_passthrough template variables"

This commit is contained in:
Zuul 2019-02-19 20:35:43 +00:00 committed by Gerrit Code Review
commit f826f9c7bc
1 changed files with 2 additions and 2 deletions

View File

@ -352,12 +352,12 @@ enabled_vgpu_types = {{ enabled_vgpu_types | join(',') }}
[pci]
{% if nova_pci_passthrough_whitelist %}
# White list of PCI devices available to VMs.
passthrough_whitelist = "{{ nova_pci_passthrough_whitelist }}"
passthrough_whitelist = {{ nova_pci_passthrough_whitelist }}
{% endif %}
{% if nova_pci_alias %}
# PCI Alias
{% for item in nova_pci_alias %}
alias = "{{item}}"
alias = {{item}}
{% endfor %}
{% endif %}
{% endif %}