Rename lxc to lxd in various tasks

lxc has been replaced by lxd as the nova_virt_type.
This change fixes a few missed instances of the
variable.

Change-Id: I1f6c57393a4c1c351c1152e3355a5676be992544
This commit is contained in:
Michael Gugino 2016-08-25 23:42:41 -04:00
parent 41c1dbcdcb
commit c3c0813c9e
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
when: nova_virt_type == 'powervm'
- include: nova_compute_lxd.yml
when: nova_virt_type == 'lxc'
when: nova_virt_type == 'lxd'
- include: nova_compute_key_populate.yml

View File

@ -128,7 +128,7 @@
with_items: "{{ nova_compute_lxd_packages }}"
when:
- inventory_hostname in groups['nova_compute']
- nova_virt_type == 'lxc'
- nova_virt_type == 'lxd'
tags:
- nova-apt-packages
- nova-compute-lxd-apt-packages