Forge Home

autofs

Module for installing and managing autofs

125,839 downloads

1,628 latest version

4.3 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

  • 9.0.0 (latest)
  • 8.0.0
  • 7.1.0
  • 7.0.0
  • 6.0.0
  • 5.0.1
  • 5.0.0
  • 4.3.0
  • 4.2.1
  • 4.2.0
  • 4.1.0
  • 4.0.0
  • 3.2.0
  • 3.1.0
  • 3.0.2
  • 3.0.1
  • 3.0.0
  • 2.1.1
  • 2.1.0
  • 2.0.1
released Jun 24th 2017
This version is compatible with:
  • Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 4.7.0 < 5.0.0
  • , , , , , , , , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'puppet-autofs', '3.1.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add puppet-autofs
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install puppet-autofs --version 3.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

Documentation

puppet/autofs — version 3.1.0 Jun 24th 2017

Autofs Puppet Module

Travis branch Puppet Forge Puppet Forge Puppet Forge Puppet Forge

Table of Contents

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

Description

The Autofs module is a Puppet module for managing the configuration of automount network file system. This is a global module designed to be used by any organization. This module assumes the use of Hiera to set variables and serve up configuration files.

Setup

The Module manages the following:

  • Autofs package
  • Autofs service
  • Autofs Configuration File (/etc/auto.master)
  • Autofs Map Files (i.e. /etc/auto.home)

Requirements

Usage

The module includes a single class:

include autofs

By default this installs and starts the autofs service with the module's default master file.

You can also manage the state of the autofs package or service.

By default the module will install the autofs package and start/enable the autofs service. You can configure this by using the parameters defined in the main init class.

For example, to ensure the package is absent:

class { 'autofs':
  package_ensure => 'absent',
}

To ensure that a service is disabled and not running:

class { 'autofs':
  service_ensure => 'stopped',
  service_enable => false,
}

Map Files

To setup the Autofs Map Files, there is a defined type that can be used:

autofs::mount { 'home':
  mount       => '/home',
  mapfile     => '/etc/auto.home',
  mapcontents => ['* -user,rw,soft,intr,rsize=32768,wsize=32768,tcp,nfsvers=3,noacl server.example.com:/path/to/home/shares'],
  options     => '--timeout=120',
  order       => 01
}

This will generate content in both the auto.master file and a new auto.home map file:

auto.master
/home /etc/auto.home --timeout=120
auto.home
* -user,rw,soft,intr,rsize=32768,wsize=32768,tcp,nfsvers=3,noacl server.example.com:/path/to/home/shares

The defined type requires all parameters, except direct and execute, to build the autofs config. The direct and execute parameters allow for the creation of indirect mounts, see the Parameters section for more information on the defaults for direct and execute.

In hiera, there's a autofs::mounts class you can configure, for example:

autofs::mounts:
  home:
    mount: '/home'
    mapfile: '/etc/auto.home'
    mapcontents:
      - '* -user,rw,soft,intr,rsize=32768,wsize=32768,tcp,nfsvers=3,noacl server.example.com:/path/to/home/shares'
    options: '--timeout=120'
    order: 01
Direct Map /- arugment

The autofs module also supports the use of the built in autofs /- argument used with Direct Maps.

Examples:

Define:

autofs::mount { 'foo':
  mount       => '/-',
  mapfile     => '/etc/auto.foo',
  mapcontents => ['/foo -o options /bar'],
  options     => '--timeout=120',
  order       => 01
}

Hiera:

autofs::mounts:
  foo:
    mount: '/-'
    mapfile: '/etc/auto.foo'
    mapcontents:
      - '/foo -o options /bar'
    options: '--timeout=120'
    order: 01
Autofs +dir: options

The autofs module now supports the use of the +dir: option in the auto.master. This option is 100% functional, but does require some work to simplify it.

Usage

Define:

autofs::mount { 'home':
  mount       => '/home',
  mapfile     => '/etc/auto.home',
  mapcontents => ['* -user,rw,soft,intr,rsize=32768,wsize=32768,tcp,nfsvers=3,noacl server.example.com:/path/to/home/shares'],
  options     => '--timeout=120',
  order       => 01,
  use_dir     => true
}

Hiera:

autofs::mounts:
  home:
    mount: '/home'
    mapfile: '/etc/auto.home'
    mapcontents:
      - '* -user,rw,soft,intr,rsize=32768,wsize=32768,tcp,nfsvers=3,noacl server.example.com:/path/to/home/shares'
    options: '--timeout=120'
    order: 01
    use_dir: true

Map Entries

In addition to adding map entries via the mapcontents parameter to autofs::mount the autofs::map` type can also be used.

Usage

Define:

autofs::map{'data':
  map => '/etc/auto.data',
  mapcontents => 'data -user,rw,soft server.example.com:/path/to/data,
}

Hiera:

autofs::maps:
  data:
    map: '/etc/auto.data'
    mapcontent: 'data -user,rw server.example.com:/path/to/data'

It is assumed that the map file itself has already been defined with and autofs::mount first.

autofs::mount{'auto.data':
  mapfile => '/etc/auto.data',
  mount   => '/big',
}

Reference

Classes

Public Classes

  • autofs: Main class. Contains or calls all other classes or defines.

Private Classes

  • autofs::package: Handles autofs packages.
  • autofs::service: Handles the service.

Parameters

mounts

Optional.

Data type: Hash

A hash of options that will build the configuration. This hash is passed to the Defined type. Each hash key is the equivalent to a parameter in the autofs::mount defined type.

Default: undef

package_ensure

Data type: String

Determines the state of the package. Can be set to: installed, absent, lastest, or a specific version string.

Default: 'installed'

service_ensure

Data type: Enum['running', 'stopped']

Determines state of the service.

Default: 'running'

service_enable

Data type: Boolean

Determines if the service should start with the system boot.

Default: true

Defines

Public Defines

  • autofs::mount: Builds the autofs configuration.
  • autofs::map: Builds map entires for autofs configuration.

Parameters for autofs::mount

mount_name

Data type: String

This is a logical, descriptive name for what what autofs will be mounting. This is represented by the home: and tmp: entries above.

mount

Data type: Stblib::Absolutepath

This Mapping describes where autofs will be mounting to. This map entry is referenced by concat as part of the generation of the /etc/auto.master file. Defaults to the title of the autofs::mount

mapfile

Data type: Stdlib::Absolutepath or Autofs::MapEntry

This Mapping describes the name and path of the autofs map file. This mapping is used in the auto.master generation, as well as generating the map file from the auto.map.erb template. This parameter is no longer required. When anything other than a simple file path is used mapfile_manage must be false.

mapfile_manage

Data type: Boolean

If true the the mapfile file will be created and maintained. Defaults to true. Set this to false when the map file is maintained some other way, e.g auto.smb from the autofs package.

mapcontents

Data type: Array

This Mapping describes the folders that will be mounted, the mount options, and the path to the remote or local share to be mounted. Used in mapfile generation.

Default: []

options

Optional.

Data type: String

This Mapping describes the auto.master options to use (if any) when mounting the automounts.

Default: ''

order

Data type: Integer

This Mapping describes where in the auto.master file the entry will be placed. Order CANNOT be duplicated.

Default: undef

master

Data type: Stdlib::Absolutepath

This Parameter sets the path to the auto.master file.

Default: '/etc/auto.master'

map_dir

Data type: Stdlib::Absolutepath

This Parameter sets the path to the Autofs configuration directory for map files. Applies only to autofs 5.0.5 or later.

Default: '/etc/auto.master.d'

use_dir

Data type: Boolean

This Parameter tells the module if it is going to use $map_dir.

Default: false

direct

Data type: Boolean

Enable or disable indirect maps.

Default: true

execute

Data type: Boolean

Set mapfile to be executable.

Default: false

replace

Data type: Boolean

Whether or not to replace the mapfile if it already exists.

Default: true

Parameters for autofs::map

mapfile

Data type: Stdlib::Absolutepath

mapfile file to add entry to. e.g '/etc/auto.data'.

mapcontent

Data type: String

This Mapping describes a folder that will be mounted, the mount options, and the path to the remote or local share to be mounted. Used in mapfile generation. e.g. 'data -rw nfs.example.org:/data/big

Limitations

Removals

Directly calling the autofs::package and autofs::service classes is disabled in 3.0.0. These are now private classes.

Puppet platforms

Compatible with Puppet 4 only. Puppet 4.6.0 will provide best results.

Operating Systems

  • Supported
    • Ubuntu
      • 14.04
      • 16.04
    • CentOS/RHEL/Scientific/Oracle Linux
      • 6.x
      • 7.x
    • SLES
      • 11 Service Pack 4
      • 12 Service Pack 1
    • OpenSUSE 13.1
    • Debian
      • 7 "Wheezy"
      • 8 "Jessie"
  • Self Support - should work, support not provided by developer
    • Solaris 10, 11
    • Fedora 24, 25
    • SLES 10
    • CentOS/RHEL/Scientific/Oracle Linux 5.x
  • Unsupported
    • Windows (Autofs not available)
    • Mac OS X (Autofs Not Available)

Development

Please see the CONTRIBUTING.md file for instructions regarding development environments and testing.

Authors