31 lines
646 B
YAML
31 lines
646 B
YAML
- name: Install PVE NRPE base packages
|
|
apt:
|
|
name:
|
|
- libxml-simple-perl
|
|
- libmonitoring-plugin-perl
|
|
state: present
|
|
- name: Set NRPE PVE configuration
|
|
copy:
|
|
src: nrpe.d/95-pve.cfg
|
|
dest: /etc/nagios/nrpe.d/
|
|
owner: root
|
|
group: root
|
|
mode: u=rw,g=r,o=r
|
|
notify: restart-nrpe
|
|
- name: Copy PVE NRPE plugins
|
|
copy:
|
|
src: plugins/
|
|
dest: /etc/nagios/plugins/
|
|
owner: root
|
|
group: root
|
|
mode: u=rwx,g=rx,o=rx
|
|
notify: restart-nrpe
|
|
- name: Add nagios to sudoers
|
|
copy:
|
|
src: sudoers
|
|
dest: /etc/sudoers.d/nagios
|
|
mode: u=rw,g=r,o=
|
|
owner: root
|
|
group: root
|
|
notify: restart-nrpe
|