I have a host template that assigns the host to a particular hostgroup. i.e.

define host{
    name          example-host-template
    hostgroups    example-servers
    use           host-template
    register      0
}

but I want to assign additional hostgroups to some servers, i.e.

define host{
    host_name     webhost
    hostgroups    web-servers
    use          
example-host-template
    ...
}


 want this host to be a member of example-servers and web-servers.  Is this possible to do using templates?

Reply via email to