Forge Home

powerdns

Module for managing PowerDNS

13,131 downloads

10,715 latest version

3.8 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.0.5 (latest)
  • 0.0.4
  • 0.0.3
released Jul 1st 2015

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'antonlindstrom-powerdns', '0.0.5'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add antonlindstrom-powerdns
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install antonlindstrom-powerdns --version 0.0.5

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

antonlindstrom/powerdns — version 0.0.5 Jul 1st 2015

PowerDNS module

Build Status

This is a module to manage PowerDNS with Puppet. The configuration is split into several files and put in /etc/powerdns/pdns.d. This makes it easy to read which configurations are currently modified.

Usage

powerdns

include powerdns

powerdns::config

Set configuration settings in a pdns.d directory (this assumes that you have include=/etc/powerdns/pdns.d in pdns.conf).

powerdns::config { 'cache-ttl':
  ensure => present,
  value  => 20,
}

Or, set IPv6 address:

powerdns::config { 'local-ipv6':
  ensure => present,
  value  => $::ipaddress6,
}

powerdns::postgresql

This will install the postgresql backend for powerdns:

class { 'powerdns::postgresql':
  ensure   => present,
  user     => 'powerdns',
  password => 'secret',
  host     => 'localhost',
  port     => '5432',
  dbname   => 'pdns',
  dnssec   => 'no',
}

The dnssec value can be either 'yes' or 'no'. Default is 'yes'..

To be able to use it without importing data and without hassle, make sure that Postgres is installed before the powerdns::postgresql class.

powerdns::mysql

This will install the mysql backend for powerdns:

class { 'powerdns::mysql':
  ensure   => present,
  user     => 'powerdns',
  password => 'secret',
  host     => 'localhost',
  port     => '3306',
  dbname   => 'pdns',
  dnssec   => 'no',
}

The dnssec value can be either 'yes' or 'no'. Default is 'yes'.

Testing

gem install bundler
bundle install
bundle exec rake

Dependencies are downloaded and used with librarian-puppet. If adding new dependencies, please add them in the Puppetfile and Modulefile, thanks!

Contribute

Send pull request and add tests. Make sure all tests pass (modify if you need) and make sure it's style-guide compliant.