12345678910111213141516171819 |
- 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"
- }
|