<!-- A list of services that can be installed on a host, and their
     configuration details -->
<services>
  <service id="ipfw-firewall">
    <kernel>
      <option>IPFIREWALL</option>
      <option>IPFIREWALL_VERBOSE</option>
      <option>IPFIREWALL_VERBOSE_LIMIT=100</option>
      <option>IPDIVERT</option>
    </kernel>

    <file path="/etc/rc.conf">
firewall_enable="YES"         # Run the firewall script
</file>

    <file path="/etc/rc.firewall">
    </file>
  </service>

  <service id="dns">
    <file path="/etc/rc.conf">
named_enable="YES"            # Run named
</file>
  </service>

  <service id="wins">
    <file path="/usr/local/etc/smb.conf">
      <section name="global">
	<param name="workgroup" value="I9"/>
	<param name="wins support" value="yes"/>
      </section>
    </file>
  </service>
</services>
    
