12345678910111213141516171819 |
- #
- # Old Icinga2 doesn't ship with check command for ssl_cert check
- # and new version have a different arguments definitions, so we
- # hack this by adding our own CheckCommand \o/
- #
- object CheckCommand "ssl_host_cert" {
- import "plugin-check-command"
- command = [ PluginDir + "/check_ssl_cert" ]
- arguments = {
- "-H" = "$ssl_cert_host$"
- "-f" = "$ssl_cert_file$"
- "-w" = "$ssl_cert_warn$"
- "-c" = "$ssl_cert_crit$"
- }
- vars.ssl_cert_host = "localhost"
- }
|