f8f8c0d622
As we are using ansible 2.0, we should move from sudo to become to avoid deprecation. Change-Id: I7a99df005dcdcd12e9a2afdeb0c908fe2069cc57 Related-bug: 1547430
11 lines
239 B
YAML
11 lines
239 B
YAML
---
|
|
|
|
- hosts: all
|
|
become: yes
|
|
vars:
|
|
ssh_ip_mask: "10.*.*.*"
|
|
tasks:
|
|
# upgrade pbr first, old version throws strange errors
|
|
- shell: pip install pbr -U
|
|
- shell: pip install git+git://github.com/Mirantis/solar-agent.git
|