Files
role-check-mk-agent/tasks/RedHat.yml

31 lines
785 B
YAML
Raw Normal View History

2020-10-13 16:33:32 +13:00
---
# Tasks for installation on RedHat Family
- name: Ensure xinetd installed
2020-11-25 21:48:55 +13:00
package:
2020-10-13 16:33:32 +13:00
name: xinetd
2020-11-25 21:54:04 +13:00
state: present
2020-10-13 16:33:32 +13:00
notify: restart xinetd
- name: Gather facts of packages
package_facts:
manager: "auto"
2020-11-26 15:37:47 +13:00
- name: Install check-mk-agent
2021-05-07 15:52:53 +12:00
block:
2020-11-26 15:37:47 +13:00
- name: Download the agent from Server
2021-05-07 15:52:53 +12:00
shell: wget -O /tmp/check-mk-agent.rpm "{{ cmk_rpm_agent }}{{ cmk_auth }}"
args:
warn: no
2021-05-07 15:33:22 +12:00
2020-10-13 16:33:32 +13:00
- name: Ensure check_mk_agent installed
2020-11-27 00:07:33 +13:00
command: /usr/bin/yum install --nogpgcheck -y /tmp/check-mk-agent.rpm
args:
warn: no
2020-10-13 23:40:02 +13:00
notify:
2020-10-13 16:33:32 +13:00
- restart xinetd
- cmk fresh install
2020-10-15 14:23:17 +13:00
- ensure firewall open
when: "'check-mk-agent' not in ansible_facts.packages or cmk_force_install"
2020-10-13 16:33:32 +13:00
tags:
- check_mk_agent