forked from infra/ansible
20 lines
429 B
YAML
20 lines
429 B
YAML
---
|
|
|
|
- name: Download Check_MK Agent
|
|
get_url:
|
|
dest: /opt/check-mk-agent_1.4.0p34-1_all.deb
|
|
mode: 0644
|
|
validate_certs: no
|
|
url: https://forseti.binary.kitchen/bk/check_mk/agents/check-mk-agent_1.5.0b7-1_all.deb
|
|
|
|
- name: Install Check_MK Agent dependencies
|
|
apt: name={{ item }}
|
|
with_items:
|
|
- xinetd
|
|
|
|
- name: Install Check_MK Agent
|
|
apt:
|
|
deb: "/opt/check-mk-agent_1.5.0b7-1_all.deb"
|
|
state: present
|
|
|