Forge Home

ansible

small modules to install ansible and custom modules

7,715 downloads

7,402 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

  • 0.1.3 (latest)
  • 0.1.2 (deleted)
  • 0.1.1
  • 0.1.0
released Oct 12th 2016
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 'icann-ansible', '0.1.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add icann-ansible
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install icann-ansible --version 0.1.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

icann/ansible — version 0.1.3 Oct 12th 2016

Build Status Puppet Forge Puppet Forge Downloads

ansible

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with ansible
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

This module installs ansible and can also manage the custom scripts, host script and custom modules directories

Setup

What ansible affects

  • installs ansible
  • $conf_dir/scripts
  • $conf_dir/hosts
  • manages /usr/share/ansible

Setup Requirements OPTIONAL

  • puppetlabs-stdlib 4.12.0
  • icann-tea 0.2.4

Beginning with ansible

just add the ansible class

class {'::ansible' }

Usage

Add custom modules and scripts

You can pass URI's which will be handed to puppet and passed to a file type source parameter.

class {'::ansible' 
  hosts_script => 'puppet:///modules/submodule/my_ansible_scripts,
  scripts => 'puppet:///modules/submodule/my_ansible_scripts,
  modules => 'puppet:///modules/submodule/my_ansible_modules,
}

of with hiera

ansible::hosts_script: 'puppet:///modules/submodule/my_ansible_scripts,
ansible::scripts: 'puppet:///modules/submodule/my_ansible_scripts,
ansible::modules: 'puppet:///modules/submodule/my_ansible_modules,

Reference

Classes

Public Classes

Private Classes

Class: ansible

Main class, includes all other classes

Parameters
  • scripts (Tea::Puppetsource, Default: undef): This is a string which will be passed the file type source paramter and treated as a directory source and copied with recurse => remove, into the scripts dir
  • modules (Tea::Puppetsource, Default: undef): This is a string which will be passed the file type source paramter and treated as a directory source and copied with recurse => remove into the ansible modules dir
  • host_scripts (Tea::Puppetsource, Default: undef): This is a string which will be passed the file type source paramter and treted as a file source for the hosts script/inventory file
  • config_dir (Tea::Absolutepath, Default: os specific): Location of the config directory
  • module_dir (Tea::Absolutepath, Default: os specific): Location of the module directory

Limitations

This module is tested on Ubuntu 12.04, and 14.04 and FreeBSD 10