ansible/roles/netdata/tasks/debian.yml

18 lines
379 B
YAML
Raw Normal View History

2021-01-23 18:45:20 -06:00
---
- name: debian | Installing git
apt:
name: git
state: present
become: true
- name: debian | Installing iproute Package
apt:
name: iproute
state: present
become: true
when: >
(ansible_distribution == "Debian" and
ansible_distribution_version|int < 10) or
(ansible_distribution == "Ubuntu" and
ansible_distribution_version < "18.04")