Forge Home

ddclient

Puppet module for ddclient

12,814 downloads

11,503 latest version

1.9 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

  • 1.0.5 (latest)
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
released Oct 27th 2013

Start using this module

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

Add this module to your Puppetfile:

mod 'netmanagers-ddclient', '1.0.5'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add netmanagers-ddclient
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install netmanagers-ddclient --version 1.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

netmanagers/ddclient — version 1.0.5 Oct 27th 2013

Puppet module: ddclient

This is a Puppet module for ddclient based on the second generation layout ("NextGen") of Example42 Puppet Modules.

Made by Javier Bertoli / Netmanagers

Official site: http://www.netmanagers.com.ar

Official git repository: http://github.com/netmanagers/puppet-ddclient

Released under the terms of Apache 2 License.

This module uses R.I.Pienaar's concat module as a dependency.

This module requires functions provided by the Example42 Puppi module (you need it even if you don't use and install Puppi)

For detailed info about the logic and usage patterns of Example42 modules check the DOCS directory on Example42 main modules set.

USAGE - Basic management

  • All parameters can be set using Hiera. See the manifests to see what can be set.

  • Install ddclient with default distro's settings

      class { 'ddclient': }
    
  • You can install and configure a single dDNS host/provider using a template (ie., the included one):

      class { 'ddclient': 
        host_config => 'file',
        template    => 'ddclient/ddclient.conf.erb',
        server      => 'ddns_provider',
        login       => 'myuser',
        password    => 'secret',
        protocol    => 'ddns_prot',
        hostname    => 'my.host.name',
      }
    
  • Or you can configure multiple hosts using host_config => 'concat' and ddclient::host define:

      class { 'ddclient': 
        host_config   => 'concat',
      }
    
      ddclient::host { 'my_ddns.hostname.com':
        server    => 'one.ddns.provider.com',
        login     => 'my_account',
        password  => 'secret',
        protocol  => 'dyndns2',
      }
    
  • Install a specific version of ddclient package

      class { 'ddclient':
        version => '1.0.1',
      }
    
  • Disable ddclient service.

      class { 'ddclient':
        disable => true
      }
    
  • Remove ddclient package

      class { 'ddclient':
        absent => true
      }
    
  • Enable auditing without without making changes on existing ddclient configuration files

      class { 'ddclient':
        audit_only => true
      }
    
  • Module dry-run: Do not make any change on all the resources provided by the module

      class { 'ddclient':
        noops => true
      }
    

USAGE - Overrides and Customizations

  • Use custom sources for main config file

      class { 'ddclient':
        source => [ "puppet:///modules/example42/ddclient/ddclient.conf-${hostname}" , "puppet:///modules/example42/ddclient/ddclient.conf" ], 
      }
    
  • Use custom source directory for the whole configuration dir

      class { 'ddclient':
        source_dir       => 'puppet:///modules/example42/ddclient/conf/',
        source_dir_purge => false, # Set to true to purge any existing file not present in $source_dir
      }
    
  • Use custom template for main config file. Note that template and source arguments are alternative.

      class { 'ddclient':
        template => 'example42/ddclient/ddclient.conf.erb',
      }
    
  • Automatically include a custom subclass

      class { 'ddclient':
        my_class => 'example42::my_ddclient',
      }
    

USAGE - Example42 extensions management

  • Activate puppi (recommended, but disabled by default)

      class { 'ddclient':
        puppi    => true,
      }
    
  • Activate puppi and use a custom puppi_helper template (to be provided separately with a puppi::helper define ) to customize the output of puppi commands

      class { 'ddclient':
        puppi        => true,
        puppi_helper => 'myhelper', 
      }
    
  • Activate automatic monitoring (recommended, but disabled by default). This option requires the usage of Example42 monitor and relevant monitor tools modules

      class { 'ddclient':
        monitor      => true,
        monitor_tool => [ 'nagios' , 'monit' , 'munin' ],
      }
    

CONTINUOUS TESTING

Travis {}[https://travis-ci.org/netmanagers/puppet-ddclient]