Version information
released Jul 18th 2013
Start using this module
Add this module to your Puppetfile:
mod 'thias-gdnsd', '0.2.0'
Learn more about managing modules with a PuppetfileDocumentation
thias/gdnsd — version 0.2.0 Jul 18th 2013
puppet-gdnsd
Overview
Install, enable and configure the gdnsd DNS server.
gdnsd
: Main class to install, enable and configure the server.gdnsd::zone
: Definition to manage zone files.
Examples
Install and enable the server (for the ip_nonlocal_bind to work, you will need the sysctl module), using the included template for the main configuration :
$options = {
'listen' => '[ 127.0.0.1 ]',
}
class { 'gdnsd':
config_content => template('gdnsd/config.erb'),
ip_nonlocal_bind => true,
}
Install a single zone file :
gdnsd::zone { 'example.com':
source => 'puppet:///modules/mymodule/dns/example.com',
}
For multiple source-based files, use the $source_base
parameter to be able
to use an array of zone names :
gdnsd::zone { [ 'example.com', 'example.net', 'example.org' ]:
source_base => 'puppet:///modules/mymodule/dns/',
}
For more information, including help and configuration examples, see : https://github.com/blblack/gdnsd
2013-06-27 - 0.2.0
- Major update for gdnsd 1.8.x.
- Manage the config file from the main class instead of using file.
- Rename file definition to zone.
- Fix included trivial config template, and add example usage in README.
- Purge /etc/gdnsd/zones/ by default, no need to "ensure => absent" old files.
2013-05-24 - 0.1.1
- Add source_base for multiple configuration files in the same source dir.
2013-03-19 - 0.1.0
- Switch to use 2 space indent.
- Update the README and use markdown.
2012-09-19 - 0.0.2
- Clean up the README and included documentation.
2012-09-12 - 0.0.1
- Initial module release.
Copyright (C) 2012-2013 Matthias Saou Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.