Forge Home

resolv_conf

A module to populate /etc/resolv.conf

9,124 downloads

9,124 latest version

5.0 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.1.0 (latest)
released May 3rd 2015
This version is compatible with:
  • Gentoo

Start using this module

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

Add this module to your Puppetfile:

mod 'hacking-resolv_conf', '0.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add hacking-resolv_conf
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install hacking-resolv_conf --version 0.1.0

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
Tags: dns, resolvconf

Documentation

hacking/resolv_conf — version 0.1.0 May 3rd 2015

/etc/resolv.conf module for Puppet

Description

Puppet module for managing the /etc/resolv.conf file.

Example usage

class { 'resolv_conf':
    domain      => 'lan1.internal.hacking.co.uk',
    nameservers => ['10.0.1.5', '10.0.1.109'],
  }

Resulting files

/etc/resolv.conf

# This file is automatically generated by Puppet
#
# Any changes made to this file will be lost on the next automated Puppet run!

# The default domain name if none is supplied
domain lan1.internal.hacking.co.uk

# The list of name servers
nameserver 10.0.1.5
nameserver 10.0.1.109

# The list of options
options timeout:2
options attempts:3
options rotate

Passing options

The default values of timeout (2 seconds), attempts (one more than the number of name servers) and rotate (true) may be modified or their use disabled by passing undef. Additional options may be supplied by using the options parameter.

class { 'resolv_conf':
    domain      => 'lan1.internal.hacking.co.uk',
    nameservers => ['10.0.1.5', '10.0.1.109'],
    timeout     => undef,
    attempts    => undef,
    rotate      => false,
    options     => ['single-request', 'single-request-reopen'],
  }

Resulting files

/etc/resolv.conf

# This file is automatically generated by Puppet
#
# Any changes made to this file will be lost on the next automated Puppet run!

# The default domain name if none is supplied
domain lan1.internal.hacking.co.uk

# The list of name servers
nameserver 10.0.1.5
nameserver 10.0.1.109

# The list of options
options single-request
options single-request-reopen