Git Product home page Git Product logo

puppet-powerdns's Introduction

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.

puppet-powerdns's People

Contributors

antonlindstrom avatar tombar avatar haf avatar estheban avatar

Watchers

James Cloos avatar Gastón Acosta Ramas avatar

Forkers

cloudxtreme

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.