Puppet Class: nfs::client::redhat

Inherits:
nfs::client::redhat::params
Defined in:
manifests/client/redhat.pp

Overview

Shamefully stolen from github.com/frimik/puppet-nfs refactored a bit

Parameters:

  • nfs_v4 (Any) (defaults to: false)
  • nfs_v4_idmap_domain (Any) (defaults to: undef)


3
4
5
6
7
8
9
10
11
12
13
# File 'manifests/client/redhat.pp', line 3

class nfs::client::redhat (
  $nfs_v4 = false,
  $nfs_v4_idmap_domain = undef,
) inherits nfs::client::redhat::params {

  include nfs::client::redhat::install, 
    nfs::client::redhat::configure, 
    nfs::client::redhat::service


}