Maciej Kwiek f8f8c0d622 Change sudo to become in bootstrap playbooks
As we are using ansible 2.0, we should move from sudo to become to
avoid deprecation.

Change-Id: I7a99df005dcdcd12e9a2afdeb0c908fe2069cc57
Related-bug: 1547430
2016-02-22 10:17:16 +01:00

15 lines
276 B
YAML

---
- name: Main build script
hosts: all
become: yes
vars:
ssh_ip_mask: "10.*.*.*"
tasks:
- include: tasks/base.yaml
- include: tasks/puppet.yaml
- include: tasks/docker.yaml
- include: tasks/cloud_archive.yaml
- include: tasks/ssh_conf.yaml