117:c2d1c06172e5
Anton Shestakov <av6@dwimlabs.net>, Fri, 29 Jul 2016 19:22:46 +0800
provision: role vars are now legit super evil, confirmed by Ansible 2.1.0.0 They are so extremely high-priority now that they cannot be redefined in a playbook. At least defaults should work as expected?

previous change 108:f24c7fee1b0d

provision/playbook.yml

Permissions: -rw-r--r--

Other formats: Feeds:
---
- hosts: all
become: yes
vars:
umbrella: localhost
pre_tasks:
- lineinfile:
dest: /etc/hosts
line: '127.0.0.1 fruitbar.{{ umbrella }}'
when: ansible_virtualization_type == "virtualbox"
- apt:
update_cache: yes
cache_valid_time: 3600
roles:
- role: fruitbar
...