I have a host template that assigns the host to a particular hostgroup. i.e.<br><br><span style="font-family: courier new,monospace;">define host{<br>    name          example-host-template<br>    hostgroups    example-servers
<br>    use           host-template<br>    register      0<br>}<br></span><br>but I want to assign additional hostgroups to some servers, i.e.<br><br><span style="font-family: courier new,monospace;">define host{<br>
    host_name     webhost<br>
    hostgroups    web-servers<br>
    use           </span><span style="font-family: courier new,monospace;">example-</span><span style="font-family: courier new,monospace;">host-template<br>    ...<br>}</span><br><span style="font-family: courier new,monospace;">
</span><br> want this host to be a member of example-servers and web-servers.  Is this possible to do using templates?<br>