Ansible checkmk agent Installation: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „ *host.ini <pre> [windows] 10.82.55.10 [windows:vars] ansible_user=xinux ansible_password=sysadm ansible_port=5986 ansible_connection=winrm ansible_winrm_tran…“) |
|||
| Zeile 1: | Zeile 1: | ||
| − | + | *[[Windows Host Inventory File]] | |
| − | * | ||
| − | |||
| − | [ | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
*main.yml | *main.yml | ||
Version vom 7. Februar 2023, 15:11 Uhr
- main.yml
---
# Install Check_MK Agent on Windows
- name: Checkmk Agent install
hosts: 10.82.55.10
tasks:
- name: Download agent -> https://checkmk.xinux.org/xinux_monitor/check_mk/agents/windows/check_mk_agent.msi"
win_get_url:
url: https://checkmk.xinux.org/xinux_monitor/check_mk/agents/windows/check_mk_agent.msi/"
dest: "C:\\Users\\xinux\\AppData\\Local\\Temp"
validate_certs: false
- name: Install agent -> C:\\Users\\xinux\\AppData\\Local\\Temp\\check_mk_agent.msi
win_package:
path: "C:\\Users\\xinux\\AppData\\Local\\Temp\\check_mk_agent.msi"
state: present