Puppet module to manage NFS
===
- EL 5
- EL 6
===
Name of the NFS package
- Default: Uses system defaults as specified in module
Hash of mounts to be mounted on system. See below.
- Default: undef
===
This works by passing the nfs::mounts hash to the create_resources() function. Thus, you can provide any valid parameter for mount. See the Type Reference for a complete list.
Mount nfs.example.com:/vol1 on /mnt/vol1 and nfs.example.com:/vol2 on /mnt/vol2
nfs::mounts:
/mnt/vol1:
ensure: present
device: nfs.example.com:/vol1
fstype: nfs
old_log_file_mount:
name: /mnt/vol2
ensure: present
device: nfs.example.com:/vol2
fstype: nfs
