Forge Home

autoconfig

Manage auto-discovery for service clients

10,459 downloads

9,678 latest version

4.6 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.3 (latest)
  • 1.0.2
  • 1.0.1
  • 1.0.0
released Sep 23rd 2014
This version is compatible with:

Start using this module

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

Add this module to your Puppetfile:

mod 'tohuwabohu-autoconfig', '1.0.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add tohuwabohu-autoconfig
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install tohuwabohu-autoconfig --version 1.0.3

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

tohuwabohu/autoconfig — version 1.0.3 Sep 23rd 2014

#autoconfig

##Overview

Puppet module to provide auto-discovery functionality for clients of certain services. At the moment, the module supports only Autoconfiguration for Thunderbird.

##Usage

Setup the Thunderbird auto-configuration for a given domain

autoconfig::thunderbird { 'example.com': }

Enable the domain configuration in your web server by linking to the corresponding file in the configuration directory (e.g. /etc/autoconfig/apache.conf). Make sure the subdomain autoconfig.example.com is pointing to the host where your web server is running.

To use a custom config-v1.1.xml, you can use

autoconfig::thunderbird { 'example.com':
  template => 'path/to/custom/template',
}

Furthermore, you want to notify your web server when the autoconfig web server configuration changes

class { 'autoconfig':
  notify => Service['apache'],
}

##Limitations

The module has been tested on the following operating systems. Testing and patches for other platforms are welcome.

  • Debian Linux 6.0 (Squeeze)

Build Status

##Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request