Version information
This version is compatible with:
- Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 4.2.0 < 6.0.0
- , , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'mzima-systemd_automount', '0.1.4'
Learn more about managing modules with a PuppetfileDocumentation
systemd_automount
Manage systemd automounts with Puppet
Table of Contents
- Description
- Setup - The basics of getting started with systemd_automount
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
Description
This Puppet module can be used to manage Systemd automount units.
Supported Puppet versions
- Puppet >= 4
Tested OS Versions
Currently only these OS variants are tested, altought other OS distributions with systemd should also work.
- Redhat/CentOS >= 7
- SLES >= 12
- openSUSE Leap >= 42
Usage
Example: Using Code
You can use the funtionality of this module in your own .pp files by using the defined resource type systemd_automount::config
.
The list of associated parameters can be found here: Parameters
The code below will mount the remote NFSv3 share 192.168.100.1:/share
at the local directory /mnt
.
systemd_automount::config { '/mnt' :
source => '192.168.100.1:/share',
fstype => 'nfs',
options => 'vers=3'
}
Example: Using YAML (Hiera)
The main class systemd_automount
provides the parameter mounts
which only accecpts a hash value.
The list of associated parameters can be found here: Parameters
The following example will mount the remote CIFS/SMB share //192.168.100.1/smb
at the local directory /mountpoint1
and the NFS4 share 192.168.200.2:/exports/nfs4
at the directory /mountpoint2
.
systemd_automount::mounts:
'/mountpoint1':
'source' : '//192.168.100.1/smb'
'fstype' : 'cifs'
'running' : 'false'
'/mountpoint2':
'source' : '192.168.200.2:/exports/nfs4'
Reference
Public Classes
systemd_automount
Main class
Parameters
mounts
: This parameter accepts an hash describing one or multiple Systemd automount entries. Have a look at class systemd_automount::config to get informations about the posible parameters.
systemd_automount::config
Realizes the configuration of the systemd automount units
Parameters
mountpoint
: Directory to use as mountpoint for the source device. Type: string Default: undef Example: '/mnt'source
: Source device or network filesystem Type: string Default: undef Example: 'nfsserver:/my/share', 'cifsserver://share'fstype
: Filesystem type Type: string Default: nfs4 Example: 'nfs', 'cifs'options
: Mount options seperated by "," Type: string Default: empty Example: 'sec=krb5p,intr,noacl'ensure
: Set this parameters value to "absent" to remove the automount entry. Type: string Default: presentdump
: fstab dump entry. See "man fstab". Type: integer Default: 0pass
: fstab pass entry. See "man fstab". Type: integer Default: 0atboot
: Set this to "false" if you don't want the filesystem to be active after reboot or when "mount -a" is given. Type: boolean Default: truerunning
: Set this to false to disable the systemd mount unit. Type: boolean Default: true
Private Classes
systemd_automount::params
Parameter class. Default parameters are defined here.
Limitations
- This Module is limited to Puppet Version >= 4
- This Module only supports systemd automount configurations