1
0
mirror of https://github.com/Icinga/icinga2.git synced 2025-04-08 17:05:25 +02:00

Merge pull request from sebastic/patch-1

Fix nested hostgroup example
This commit is contained in:
Michael Friedrich 2019-02-26 09:06:58 +01:00 committed by GitHub
commit c477018313
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -116,11 +116,11 @@ This can be migrated to Icinga 2 and [using group assign](17-language-reference.
object HostGroup "hg1" {
groups = [ "hg2" ]
assign where host.name in [ "host1", "host2" ]
}
object HostGroup "hg2" {
groups = [ "hg1" ]
assign where host.name == "host3"
}