Avoid jinja2 templating in when warnings

Exerpt from log:
```
[WARNING]: when statements should not include jinja2
templating delimiters such as {{ }} or {% %}. Found:
{{ neutron_plugin_type == 'ml2.ovs.dvr' }}
```

Change-Id: Ie628be544a2f33212987c2d3b64f422fb5deb382
This commit is contained in:
Jean-Philippe Evrard 2017-05-19 19:42:51 +00:00 committed by Jesse Pretorius (odyssey4me)
parent ca6d36f742
commit 8d8e76c404

View File

@ -19,6 +19,6 @@
name: "{{ item }}"
with_items: "{{ groups[src_group] }}"
when:
- "{{ groups[src_group] is defined }}"
- "src_group in groups"
tags:
- common-grouping