enabled apache snmp check

This commit is contained in:
2023-07-28 19:27:30 +02:00
parent bc2fc0dc6e
commit 8d9ae65c63
2 changed files with 32 additions and 12 deletions

View File

@@ -0,0 +1,26 @@
- name: webserver | snmpd | create cache directory
file:
path: "/var/cache/librenms/"
state: directory
owner: "{{ snmp-user | default('root)'' }}"
- name: webserver | snmpd | install requirement
package:
name: "python3-urllib3"
state: latest
- name: webserver | snmpd | get script
get_url:
url: "https://raw.githubusercontent.com/librenms/librenms-agent/master/snmp/apache-stats.py"
dest: "/etc/snmp/apache-stats.py"
mode: "0755"
owner: "root"
group: "root"
- name: webserver | snmpd | configure extend
lineinfile:
path: "{{ snmpd_conf }}"
state: present
line: "extend apache /etc/snmp/apache-stats.py"
insertafter: "# SECTION: custom settings"
notify: restart_snmpd