netbt
This module modifies the netbiosoptions registry setting for all interfaces on a Windows system.
Version information
released May 18th 2016
This version is compatible with:
- Puppet Enterprise >= 2015.1.0 < 2015.4.0
- Puppet >= 4.0.0 < 5.0.0
Start using this module
Add this module to your Puppetfile:
mod 'velocity303-netbt', '0.0.1'
Learn more about managing modules with a PuppetfileDocumentation
velocity303/netbt — version 0.0.1 May 18th 2016
puppet_netbt
This module modifies the netbiosoptions registry setting for all interfaces on a Windows system.
Overview
This module controls whether NetBIOS is enabled on all interfaces. Note: Due to the registry key that is created, the registry key DHCPNetbiosOptions is ignored. If you need to use dhcp to control this, just set the netbt_setting
parameter to say so within this module.
Doing a regular include of this module will ensure that the dhcp server is the source of this setting.
include netbt
A parameterized instantiation of this module will allow you to explicitly enable or disable netbios for all interfaces.
class { netbt:
netbt_setting => 'enable'
}
Options:
netbt_setting:
The NetBIOS options are 'Enable NetBIOS over TCP\IP', 'Disable NetBIOS over TCP\IP', or 'Use NetBIOS setting from the DHCP' server. The default is to use NetBIOS setting from DHCP server. Choose from enabled
, disabled
, or dhcp
to explicitly set this.
Dependencies
- puppetlabs/stdlib (>= 2.3.0)
- puppetlabs/registry (>= 1.1.3)