Style - Not in YAML dictionary format

Depends-On: I2271fe8468840884f19f41abba37e696c6296350
Change-Id: I5829e60e85c8c5671edfcd28f5be0c0912dd30a0
This commit is contained in:
Ryan Moore 2016-02-11 14:56:33 +00:00 committed by Jesse Pretorius (odyssey4me)
parent c8630f72be
commit e5a35a963e
3 changed files with 12 additions and 8 deletions

View File

@ -22,4 +22,7 @@
failed_when: false failed_when: false
- name: Ensure tgt service restarted - name: Ensure tgt service restarted
service: name=tgt state=restarted pattern=tgtd service:
name: tgt
state: restarted
pattern: tgtd

View File

@ -50,7 +50,8 @@
- neutron-upgrade - neutron-upgrade
- name: Print neutron migrations facts - name: Print neutron migrations facts
debug: var=neutron_migrations debug:
var: neutron_migrations
when: neutron_plugin_type == 'ml2' when: neutron_plugin_type == 'ml2'
tags: tags:
- neutron-db-setup - neutron-db-setup

View File

@ -29,12 +29,12 @@
- nova-kvm - nova-kvm
- name: Set libvirtd config - name: Set libvirtd config
template: > template:
src=libvirtd.conf.j2 src: libvirtd.conf.j2
dest=/etc/libvirt/libvirtd.conf dest: /etc/libvirt/libvirtd.conf
owner="root" owner: "root"
group="root" group: "root"
mode=0644 mode: 0644
notify: Restart libvirt-bin notify: Restart libvirt-bin
tags: tags:
- nova-kvm - nova-kvm