remove directory linux

This commit is contained in:
Ruben Blanco 2023-10-24 07:39:20 +02:00
parent 47c119c678
commit 6695c8bc5e
3 changed files with 0 additions and 64 deletions

View File

@ -1,2 +0,0 @@
zabbix_version: 6.4
zabbix_repo_url: https://repo.zabbix.com/zabbix/{{ zabbix_version }}/debian/pool/main/z/zabbix-release/zabbix-release_{{ zabbix_version }}-1%2Bdebian10_all.deb

View File

@ -1,51 +0,0 @@
---
- hosts: "{{ hosts_servers }}"
gather_facts: no
tasks:
- name: gather os specific variables
include_vars: "{{ item }}"
with_first_found:
- "Debian.yaml"
- name: Download zabbix repo package
get_url:
url: "{{ zabbix_repo_url}}"
dest: /tmp/zabbix.deb
- name: Install zabbix repo
become: yes
apt:
deb: /tmp/zabbix.deb
state: present
- name: Install zabbix agent
become: yes
apt:
name: zabbix-agent
state: present
update_cache: yes
- name: Stop service zabbix-agent
become: yes
service:
name: zabbix-agent
state: stopped
- name: Remove zabbix config file
become: yes
file:
path: /etc/zabbix/zabbix_agentd.conf
state: absent
- name: Create new zabbix config file from template
become: yes
template:
src: "zabbix_agentd.conf.j2"
dest: "/etc/zabbix/zabbix_agentd.conf"
- name: Start service zabbix-agent
become: yes
service:
name: zabbix-agent
state: started

View File

@ -1,11 +0,0 @@
PidFile=/run/zabbix/zabbix_agentd.pid
LogFile=/var/log/zabbix/zabbix_agentd.log
LogFileSize=0
Server=0.0.0.0/0
ServerActive=zabbixtest.verdnatura.es:10051
HostnameItem=system.hostname
HostMetadataItem=system.uname
HostInterfaceItem=system.hostname
RefreshActiveChecks=30
HeartbeatFrequency=30
Include=/etc/zabbix/zabbix_agentd.d/*.conf