Some NRPE checks will get fishy results when using a PrivateTmp.

E.g check_apt:
https://askubuntu.com/questions/1415415/check-apt-issue-with-nagios
This commit is contained in:
Maria Haider 2024-05-31 17:39:33 +02:00
parent df750ff6a3
commit 5f738270e4
Signed by: mariah
GPG key ID: 7414A760CA747E57

View file

@ -913,6 +913,28 @@ class nrpe {
sunet::nagios::nrpe_command {'check_needrestart':
command_line => "sudo /usr/sbin/needrestart -p -l"
}
exec { "create_${name}_service_dir":
command => '/bin/mkdir -p /etc/systemd/system/nagios-nrpe-server.service.d/',
unless => '/usr/bin/test -d /etc/systemd/system/nagios-nrpe-server.service.d/',
}
exec { "${name}_daemon_reload":
command => 'systemctl daemon-reload',
refreshonly => true,
}
$str = "# Some NRPE checks will get fishy results when using a PrivateTmp.
# E.g check_apt: https://askubuntu.com/questions/1415415/check-apt-issue-with-nagios
[Service]
PrivateTmp=false"
file {
'/etc/systemd/system/nagios-nrpe-server.service.d/privatetmp.conf':
ensure => file,
mode => '0444',
content => $str,
require => [Exec["create_${name}_service_dir"], Package[$nrpe_service]],
notify => [Exec["${name}_daemon_reload"],Service[$nrpe_service]],
}
}
class redis_cluster_node {