Add check-mk-agent plugin installs
These are used by various Ansible tasks, even if the administrator is not using Check_MK for monitoring.
This commit is contained in:
parent
2b0398dec8
commit
2d1b76ecdf
|
@ -470,6 +470,21 @@
|
||||||
- { src: "etc/fail2ban/jail.d/sshd.local.j2", dest: "/etc/fail2ban/jail.d/sshd.local" }
|
- { src: "etc/fail2ban/jail.d/sshd.local.j2", dest: "/etc/fail2ban/jail.d/sshd.local" }
|
||||||
tags: fail2ban
|
tags: fail2ban
|
||||||
|
|
||||||
|
# check-mk-agent
|
||||||
|
- name: install check_mk agent plugins
|
||||||
|
copy:
|
||||||
|
src: "usr/lib/check_mk_agent/plugins/{{ item }}"
|
||||||
|
dest: "/usr/lib/check_mk_agent/plugins/{{ item }}"
|
||||||
|
with_items:
|
||||||
|
- backup
|
||||||
|
- cephfsmounts
|
||||||
|
- dpkg
|
||||||
|
- entropy
|
||||||
|
- freshness
|
||||||
|
- kernelversion
|
||||||
|
- ownership
|
||||||
|
tags: check-mk-agent
|
||||||
|
|
||||||
#
|
#
|
||||||
# Configure users
|
# Configure users
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue