Manage dnsmasq via Puppet
- Puppet >= 4
- Last version supporting Puppet 3: v1.3.1
dnsmasq::conf { 'local-dns':
ensure => present,
source => 'puppet:///files/dnsmasq/local-dns',
}
or
dnsmasq::conf { 'another-config':
ensure => present,
content => 'dhcp-range=192.168.0.50,192.168.0.150,12h',
}
class { '::dnsmasq':
configs_hash => {},
hosts_hash => {},
dhcp_hosts_hash => {},
}
class { '::dnsmasq':
configs_hash => {
'another-config' => {
content => 'dhcp-range=192.168.0.50,192.168.0.150,12h',
},
},
}