Fix wrong service apply rule examples for ping{4,6}.

Refs #6266
This commit is contained in:
Michael Friedrich 2014-05-22 23:05:39 +02:00
parent 8e05f6ce4b
commit e873ce6b9c
2 changed files with 8 additions and 8 deletions

View File

@ -306,8 +306,8 @@ a valid `address` resp. `address6` attribute will be excluded.
check_command = "ping4"
vars.sla = "24x7"
assign where "linux-server" in host.groups
assign where "windows-server" in host.groups
assign where "linux-servers" in host.groups
assign where "windows-servers" in host.groups
ignore where host.address == ""
}
@ -317,8 +317,8 @@ a valid `address` resp. `address6` attribute will be excluded.
check_command = "ping6"
vars.sla = "24x7"
assign where "linux-server" in host.groups
assign where "windows-server" in host.groups
assign where "linux-servers" in host.groups
assign where "windows-servers" in host.groups
ignore where host.address6 == ""
}

View File

@ -13,8 +13,8 @@ apply Service "ping4" {
check_command = "ping4"
vars.sla = "24x7"
assign where "linux-server" in host.groups
assign where "windows-server" in host.groups
assign where "linux-servers" in host.groups
assign where "windows-servers" in host.groups
ignore where host.address == ""
}
@ -24,8 +24,8 @@ apply Service "ping6" {
check_command = "ping6"
vars.sla = "24x7"
assign where "linux-server" in host.groups
assign where "windows-server" in host.groups
assign where "linux-servers" in host.groups
assign where "windows-servers" in host.groups
ignore where host.address6 == ""
}