]> granicus.if.org Git - icinga2/blob - test/config/6968.conf
Move new password functions into tlsutility
[icinga2] / test / config / 6968.conf
1 object Host "6968-server" {
2   import "test-generic-host"
3   address = "127.0.0.1"
4 }
5
6 object Service "6968-test" {
7   import "test-generic-service"
8
9   host_name = "6968-server"
10   check_command = "6968-check_vmware"
11   vars.vmware_check = "vCenter_License_Status"
12 }
13
14 object CheckCommand "6968-check_vmware" {
15   command = [ PluginDir + "/check_vmware.pl" ]
16
17   arguments = {
18     "--server" = "$address$" 
19     "--username" = "***" 
20     "--password" = "***" 
21     "--check" = { 
22       set_if = "$vmware_check$" 
23     }
24   }
25 }
26
27