
As we are using ansible 2.0, we should move from sudo to become to avoid deprecation. Change-Id: Ia084759b9c38f5c045ab14eab3af63a2ad33069f Closes-bug: 1547430
7 lines
190 B
YAML
7 lines
190 B
YAML
- hosts: '*'
|
|
become: yes
|
|
roles:
|
|
- { role: "lxc_hosts", tags: [ "lxc-host", "host-setup" ] }
|
|
post_tasks:
|
|
- shell: pip install git+https://github.com/lxc/python2-lxc.git#egg=lxc
|