I have a couple of questions about inheritance:<br><br>1. Is it possible to inhetit from more than one template?<br><br>define service{<br>    ...<br>   use ping-service-template<br>   use dev-group<br>}<br>

<br><br>2. is it possible to append to, rather than override, a parameter?  For example, is there a way to make the example below result in contact_groups equalling db-admins and server-admins?<br><br>define host{<br>    contact_groups db-admins
<br>    name db-host-template<br>    register 0<br>}<br><br><br>define host{<br>    ...<br>    contact_groups server-admins<br>    use db-host-template<br>}<br><br>Thanks for your help.<br><br>Shawn K.<br>