Forge Home

portmap

Module controlling the portmap/rpcbind daemon.

157,210 downloads

146,993 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.12 (latest)
  • 0.1.11
  • 0.1.10 (deleted)
  • 0.1.9
  • 0.1.8
  • 0.1.7
  • 0.1.6
  • 0.1.5
  • 0.1.4
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.1.0
released Jun 30th 2015
This version is compatible with:
  • , , , OpenBSD

Start using this module

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

Add this module to your Puppetfile:

mod 'jbeard-portmap', '0.1.12'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add jbeard-portmap
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install jbeard-portmap --version 0.1.12

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

jbeard/portmap — version 0.1.12 Jun 30th 2015

#portmap

####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 portmap
  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 is a module designed for controlling the Portmap daemon.

##Module Description This module installs and runs the Portmap daemon for use by NFS and others.

##Setup

###What portmap affects The portmap module will install the appropriate packages for RedHat and Debian distributions. This typically includes either the rpcbind or portmap packages, depending on OS version. It also controls execution of the appropriate daemon services. These are typically either rpcbind or portmap, depending on OS version.

###Setup requirements This module requires the puppetlabs/stdlib module.

###Beginning with portmap Simply including this module will install and execute the portmap service on your host.

include portmap

##Usage By default, the module will install the appropriate packages and configure the daemon to start on boot. All user interaction is done at the top-level portmap module level. In other words, options are provided directly to the portmap class.

The package option is used to specify which version of the portmap package to install. This will typically be either installed (or present) or latest.

The service option is used to specify whether the portmap service should execute. This will typically be either running or stopped.

The enable option is used to specify whether the service should start at boot. The value will be either true or false.

##Reference TODO List all the classes and organization

##Limitations The portmap module is supported on:

  • RedHat Enterprise Linux 5/6/7,
  • CentOS 5/6/7,
  • Debian,
  • Ubuntu 12.04 LTS, 13.10, and 14.04,
  • OpenBSD

##Development TODO Document development practices