mirror of
https://github.com/dj-wasabi/ansible-telegraf.git
synced 2025-07-17 08:46:37 +00:00
23 lines
417 B
YAML
23 lines
417 B
YAML
---
|
|
- hosts: all
|
|
pre_tasks:
|
|
- name: "Installing which on CentOS"
|
|
yum:
|
|
name: which
|
|
state: present
|
|
when:
|
|
- ansible_os_family == 'RedHat'
|
|
|
|
- name: "Installing wget on Debian"
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: present
|
|
when:
|
|
- ansible_os_family == 'Debian'
|
|
with_items:
|
|
- wget
|
|
- gpg
|
|
|
|
roles:
|
|
- role: ansible-telegraf
|