25 lines
508 B
YAML
25 lines
508 B
YAML
- name: Set NRPE PVE configuration
|
|
copy:
|
|
src: nrpe.cfg
|
|
dest: /etc/nagios/nrpe.d/95-pve.cfg
|
|
owner: root
|
|
group: root
|
|
mode: u=rw,g=r,o=r
|
|
notify: restart-nrpe
|
|
- name: Copy PVE NRPE plugins
|
|
copy:
|
|
src: nrpe/
|
|
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
|