diff options
author | Jason DeTiberus <detiber@gmail.com> | 2015-04-15 20:36:52 -0400 |
---|---|---|
committer | Jason DeTiberus <detiber@gmail.com> | 2015-04-15 20:36:52 -0400 |
commit | e85ad297c1be0186261e7be4403e8e0a702277ab (patch) | |
tree | 5afdd45cb977081ec407b34036d607d0cdda18f1 /inventory | |
parent | bc0b703b70d9f36b3ad841409454dd21b1934d92 (diff) | |
parent | aaee17b0fc8feddf31d4e5b46a1bfe2f8dabf16b (diff) | |
download | openshift-e85ad297c1be0186261e7be4403e8e0a702277ab.tar.gz openshift-e85ad297c1be0186261e7be4403e8e0a702277ab.tar.bz2 openshift-e85ad297c1be0186261e7be4403e8e0a702277ab.tar.xz openshift-e85ad297c1be0186261e7be4403e8e0a702277ab.zip |
Merge pull request #21 from lhuard1A/fix_ansible_libvirt_metadata
Fix libvirt metadata used to store ansible tags
Diffstat (limited to 'inventory')
-rwxr-xr-x | inventory/libvirt/hosts/libvirt_generic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inventory/libvirt/hosts/libvirt_generic.py b/inventory/libvirt/hosts/libvirt_generic.py index 2e1437903..4652f112e 100755 --- a/inventory/libvirt/hosts/libvirt_generic.py +++ b/inventory/libvirt/hosts/libvirt_generic.py @@ -131,7 +131,7 @@ class LibvirtInventory(object): root = ET.fromstring(domain.XMLDesc()) ns = {'ansible': 'https://github.com/ansible/ansible'} - for tag_elem in root.findall('./metadata/ansible:tag', ns): + for tag_elem in root.findall('./metadata/ansible:tags/ansible:tag', ns): tag = tag_elem.text self.push(inventory, "tag_%s" % tag, domain_name) self.push(hostvars, 'libvirt_tags', tag) |