Hi have written an own plugin under bash script witch need two arguments.
One is the ip address and the other is an http host.
The ip address I can get it from $address$ on the Host object.
But how can I set the http host in Host object for my script.
When I set the http_host in the the Service object it is running well but i need different http host for different Hosts.
Means I would like to put the “host.vars.ep_host” in the Host Object.
But when I use in the Host Object
vars.ep_host[“www.abc.com”] = {}
or
vars.ep_host = “www.abc.com”
it doesn´t work 
Would be great if anybody has an idea 
Here are my Service:
apply Service “EP_Homepage” {
import “generic-service”
check_command = “check_local_ep_website”
host.vars.ep_host = “www.abc.com”
assign where host.vars.host_group == “ep-dev-front”
}

