mirror of https://github.com/Icinga/icinga2.git
17 lines
289 B
Plaintext
17 lines
289 B
Plaintext
|
|
||
|
|
||
|
object Host "6608-host" {
|
||
|
import "test-generic-host"
|
||
|
vars.BUMSTI = "keks"
|
||
|
vars.bumsti = "schaschlik"
|
||
|
}
|
||
|
|
||
|
object Service "6608-service" {
|
||
|
import "test-generic-service"
|
||
|
check_command = "dummy"
|
||
|
host_name = "6608-host"
|
||
|
vars.DINGDONG = "$BUMSTI$"
|
||
|
vars.dingdong = "$bumsti$"
|
||
|
}
|
||
|
|