Address Ansible bare variable usage

When executing the role with Ansible 2.1, the following
deprecation warning is issued in the output for some tasks.

[DEPRECATION WARNING]: Using bare variables is deprecated.

This patch addresses the tasks to fix the behaviour appropriately.

Change-Id: I30681030a7fe788c1e1bb0d5f0c8c60c32d37ecf
This commit is contained in:
Jesse Pretorius 2016-06-14 18:46:13 +01:00
parent b3707e0478
commit 7abd947a61
1 changed files with 4 additions and 4 deletions

View File

@ -82,7 +82,7 @@
name: "{{ inventory_hostname }}"
container_command: |
echo -e '{{ lxc_container_interface }}' | tee {{ lxc_container_interface_target }}
with_dict: container_networks|default({})
with_dict: "{{ container_networks | default({}) }}"
delegate_to: "{{ physical_host }}"
tags:
- lxc-container-networks
@ -93,7 +93,7 @@
container_command: |
echo -e '{{ lxc_container_default_route_interfaces.route_setup }}' | tee {{ lxc_container_default_route_interfaces.route_file }}
when: item.value.static_routes is defined
with_dict: container_networks|default({})
with_dict: "{{ container_networks | default({}) }}"
delegate_to: "{{ physical_host }}"
tags:
- lxc-container-networks
@ -105,7 +105,7 @@
owner: "root"
group: "root"
mode: "0644"
with_dict: container_networks|default({})
with_dict: "{{ container_networks | default({}) }}"
notify:
- Lxc container restart
delegate_to: "{{ physical_host }}"
@ -130,7 +130,7 @@
dest: "/var/lib/lxc/{{ inventory_hostname }}/config"
line: "lxc.include = /var/lib/lxc/{{ inventory_hostname }}/{{ item.value.interface }}.ini"
backup: "true"
with_dict: container_networks|default({})
with_dict: "{{ container_networks | default({}) }}"
when: >
item.value.interface is defined
notify: