Check apt less often, add apt_timeout for lime2

This commit is contained in:
Tunui Franken 2025-03-25 20:46:43 +01:00
parent 6fa92661be
commit eb3272252a
2 changed files with 7 additions and 0 deletions

View file

@ -3,6 +3,9 @@
object Host "{{ icinga2_master }}" { object Host "{{ icinga2_master }}" {
import "generic-host" import "generic-host"
address = "{{ hostvars[icinga2_master].ipv4_addr }}" address = "{{ hostvars[icinga2_master].ipv4_addr }}"
{% if icinga2_master == 'lime2' %}
vars.apt_timeout = 45
{% endif %}
{% if hostvars[icinga2_master].smart_devices is defined %} {% if hostvars[icinga2_master].smart_devices is defined %}
{% for device in hostvars[icinga2_master].smart_devices %} {% for device in hostvars[icinga2_master].smart_devices %}
vars.smart_devices["smart::{{ device }}"] = { vars.smart_devices["smart::{{ device }}"] = {
@ -15,6 +18,9 @@ object Host "{{ icinga2_master }}" {
object Host "{{ icinga2_agent }}" { object Host "{{ icinga2_agent }}" {
import "generic-host" import "generic-host"
address = "{{ hostvars[icinga2_agent].ipv4_addr }}" address = "{{ hostvars[icinga2_agent].ipv4_addr }}"
{% if icinga2_agent == 'lime2' %}
vars.apt_timeout = 45
{% endif %}
{% if hostvars[icinga2_agent].smart_devices is defined %} {% if hostvars[icinga2_agent].smart_devices is defined %}
{% for device in hostvars[icinga2_agent].smart_devices %} {% for device in hostvars[icinga2_agent].smart_devices %}
vars.smart_devices["smart::{{ device }}"] = { vars.smart_devices["smart::{{ device }}"] = {

View file

@ -34,6 +34,7 @@ apply Service "disk" {
apply Service "apt" { apply Service "apt" {
import "generic-service" import "generic-service"
check_command = "apt" check_command = "apt"
check_interval = 1d
command_endpoint = host.name command_endpoint = host.name
assign where true assign where true
} }