01a5388169
Test yaml syntax is correct on new changes. Fixes current warnings and errors Change-Id: I5888f8e4a9d27a08506036df2c564b9f2081ccee
16 lines
287 B
YAML
16 lines
287 B
YAML
---
|
|
- hosts: all
|
|
become: true
|
|
roles:
|
|
- collectd
|
|
tasks:
|
|
- name: Install dbus for debian system
|
|
apt: name=dbus
|
|
when: ansible_os_family == 'Debian'
|
|
|
|
- name: Install ansible
|
|
pip:
|
|
name: ansible
|
|
when:
|
|
- inventory_hostname == "primary"
|