Check apt less often, add apt_timeout for lime2
This commit is contained in:
parent
6fa92661be
commit
eb3272252a
2 changed files with 7 additions and 0 deletions
|
@ -3,6 +3,9 @@
|
|||
object Host "{{ icinga2_master }}" {
|
||||
import "generic-host"
|
||||
address = "{{ hostvars[icinga2_master].ipv4_addr }}"
|
||||
{% if icinga2_master == 'lime2' %}
|
||||
vars.apt_timeout = 45
|
||||
{% endif %}
|
||||
{% if hostvars[icinga2_master].smart_devices is defined %}
|
||||
{% for device in hostvars[icinga2_master].smart_devices %}
|
||||
vars.smart_devices["smart::{{ device }}"] = {
|
||||
|
@ -15,6 +18,9 @@ object Host "{{ icinga2_master }}" {
|
|||
object Host "{{ icinga2_agent }}" {
|
||||
import "generic-host"
|
||||
address = "{{ hostvars[icinga2_agent].ipv4_addr }}"
|
||||
{% if icinga2_agent == 'lime2' %}
|
||||
vars.apt_timeout = 45
|
||||
{% endif %}
|
||||
{% if hostvars[icinga2_agent].smart_devices is defined %}
|
||||
{% for device in hostvars[icinga2_agent].smart_devices %}
|
||||
vars.smart_devices["smart::{{ device }}"] = {
|
||||
|
|
|
@ -34,6 +34,7 @@ apply Service "disk" {
|
|||
apply Service "apt" {
|
||||
import "generic-service"
|
||||
check_command = "apt"
|
||||
check_interval = 1d
|
||||
command_endpoint = host.name
|
||||
assign where true
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue