Puppet Class: nfs::server

Inherits:
nfs::params
Defined in:
manifests/server.pp

Overview

Parameters:

  • nfs_v4 (Any) (defaults to: $nfs::params::nfs_v4)
  • nfs_v4_export_root (Any) (defaults to: $nfs::params::nfs_v4_export_root)
  • nfs_v4_export_root_clients (Any) (defaults to: $nfs::params::nfs_v4_export_root_clients)
  • nfs_v4_idmap_domain (Any) (defaults to: $nfs::params::domain)
  • nfs_v4_root_export_ensure (Any) (defaults to: 'mounted')
  • nfs_v4_root_export_mount (Any) (defaults to: undef)
  • nfs_v4_root_export_remounts (Any) (defaults to: false)
  • nfs_v4_root_export_atboot (Any) (defaults to: false)
  • nfs_v4_root_export_options (Any) (defaults to: '_netdev')
  • nfs_v4_root_export_bindmount (Any) (defaults to: undef)
  • nfs_v4_root_export_tag (Any) (defaults to: undef)


40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'manifests/server.pp', line 40

class nfs::server (
  $nfs_v4                       = $nfs::params::nfs_v4,
  $nfs_v4_export_root           = $nfs::params::nfs_v4_export_root,
  $nfs_v4_export_root_clients   = $nfs::params::nfs_v4_export_root_clients,
  $nfs_v4_idmap_domain          = $nfs::params::domain,
  # 
  $nfs_v4_root_export_ensure    = 'mounted',
  $nfs_v4_root_export_mount     = undef,
  $nfs_v4_root_export_remounts  = false,
  $nfs_v4_root_export_atboot    = false,
  $nfs_v4_root_export_options   = '_netdev',
  $nfs_v4_root_export_bindmount = undef,
  $nfs_v4_root_export_tag       = undef,
) inherits nfs::params {

  class{ "nfs::server::${osfamily}":
    nfs_v4              => $nfs_v4,
    nfs_v4_idmap_domain => $nfs_v4_idmap_domain,
  }

  include  nfs::server::configure
}