nfs
Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with nfs
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Overview
This is a module designed for controlling the Network File System server and client daemons.
Module Description
This module installs and configures the Network File System servers and clients.
Setup
What nfs affects
The nfs module will install the appropriate packages for RedHat and Debian distributions. It also controls execution of the appropriate daemon services.
Setup requirements
This module requires the puppetlabs/stdlib module and the jbeard/portmap modules.
Beginning with nfs
The nfs module is broken into two main components: nfs::client
for those hosts that only wish to
consume NFS exports from another server, and nfs::server
for those hosts that wish also to export
filesystems via NFS. Importing the nfs
class directly will have no affect. At this time, inclusion
of the nfs::server
class automatically includes the nfs::client
class as well.
Furthermore, for hosts that import the nfs::server
class, the nfs::export
type becomes available.
This type exposes the /etc/exports
file with a puppet-like interface.
Usage
NFS Client
To enable a host to act as an NFS client, simply include the nfs::client
class in the manifest.
include nfs::client
The resource may optionally be specified as
class { 'nfs::client':
ensure => installed,
}
NFS Server
To enable a host to act as an NFS server, include the nfs::server
class in the manifest and,
optionally, some nfs::export
resources.
class { 'nfs::server':
package => latest,
service => running,
enable => true,
}
nfs::export { '/srv/shared':
options => [ 'rw', 'async' ],
clients => [ "${::network_eth0}/${netmask_eth0}" ],
}
NFS Exports
If you want to use hiera to define all your exports in one place. If you place these elements in one of your yaml files parsed
---
nfs::exports::definitions:
:export_hiera_1:
:path: '/tmp/export_hiera_1'
:options: ['rw', 'async' ]
:clients: [ 192.168.1.77 ]
:export_hiera_chroot:
:path: /tmp/export_hiera_chroot
:options: ['ro', 'async', 'no_subtree_check', 'no_root_squash' ]
:clients: [ 192.168.1.0/24 ]
if will produce the following /etc/exports
# This file is configured through the nfs::server puppet module.
/tmp/export_hiera_1 192.168.1.77(rw,async)
/tmp/export_hiera_chroot 192.168.1.0/24(ro,async,no_subtree_check,no_root_squash)
Or as shown in the file tests/exports.pp
you may enter a hash directly into your puppet file
Reference
TODO List all the classes and organization
Limitations
The nfs module is currently only supported on RedHat Enterprise Linux 5/6, CentOS 5/6, Ubuntu 12.04 LTS, and Debian (Client only).
Furthermore, use of the nfs::server
class dictates that all exports be defined with the nfs::export
resource type.
Development
TODO Document development practices