[TIDY] Set some "diff: false", fix linter warnings

This commit is contained in:
Jannik Beyerstedt 2023-04-28 23:25:21 +02:00
parent f97ef4dee6
commit fe97b0ae76
19 changed files with 189 additions and 175 deletions

View file

@ -1,16 +1,17 @@
---
# Server/Telegraf: Install and Setup Telegraf Monitoring - FreeBSD Version
- name: telegraf - Install telegraf
become: yes
- name: Telegraf - Install telegraf
become: true
ansible.builtin.package:
name: telegraf
state: latest
diff: false
# # Install SNMP utilities for telegraf monitoring
# - name: telegraf - Install SNMP utilities
# - name: Telegraf - Install SNMP utilities
# when: telegraf_ubnt_ns_ips is defined
# become: yes
# become: true
# ansible.builtin.package:
# name: "{{ packages }}"
# state: present
@ -18,10 +19,11 @@
# packages:
# - snmp
# - snmp-mibs-downloader
# diff: false
- name: telegraf - Install SNMP utilities
- name: Telegraf - Install SNMP utilities
when: telegraf_ubnt_ns_ips is defined
become: yes
become: true
ansible.builtin.package:
name: "{{ packages }}"
state: present
@ -29,3 +31,4 @@
packages:
- snmp
- snmp-mibs-downloader
diff: false