Puppet Class: nfs::server

Defined in:
manifests/server.pp

Overview

Parameters:

  • ensure (Any) (defaults to: $::nfs::ensure)
  • nfs_v4 (Any) (defaults to: $::nfs::nfs_v4)
  • nfs_v4_export_root (Any) (defaults to: $::nfs::nfs_v4_export_root)
  • nfs_v4_export_root_clients (Any) (defaults to: $::nfs::nfs_v4_export_root_clients)
  • nfs_v4_idmap_domain (Any) (defaults to: $::nfs::nfs_v4_idmap_domain)
  • nfs_v4_root_export_ensure (Any) (defaults to: $::nfs::nfs_v4_root_export_ensure)
  • nfs_v4_root_export_mount (Any) (defaults to: $::nfs::nfs_v4_root_export_mount)
  • nfs_v4_root_export_remounts (Any) (defaults to: $::nfs::nfs_v4_root_export_remounts)
  • nfs_v4_root_export_atboot (Any) (defaults to: $::nfs::nfs_v4_root_export_atboot)
  • nfs_v4_root_export_options (Any) (defaults to: $::nfs::nfs_v4_root_export_options)
  • nfs_v4_root_export_bindmount (Any) (defaults to: $::nfs::nfs_v4_root_export_bindmount)
  • nfs_v4_root_export_tag (Any) (defaults to: $::nfs::nfs_v4_root_export_tag)


17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'manifests/server.pp', line 17

class nfs::server (
  $ensure                       = $::nfs::ensure,
  $nfs_v4                       = $::nfs::nfs_v4,
  $nfs_v4_export_root           = $::nfs::nfs_v4_export_root,
  $nfs_v4_export_root_clients   = $::nfs::nfs_v4_export_root_clients,
  $nfs_v4_idmap_domain          = $::nfs::nfs_v4_idmap_domain,
  $nfs_v4_root_export_ensure    = $::nfs::nfs_v4_root_export_ensure,
  $nfs_v4_root_export_mount     = $::nfs::nfs_v4_root_export_mount,
  $nfs_v4_root_export_remounts  = $::nfs::nfs_v4_root_export_remounts,
  $nfs_v4_root_export_atboot    = $::nfs::nfs_v4_root_export_atboot ,
  $nfs_v4_root_export_options   = $::nfs::nfs_v4_root_export_options,
  $nfs_v4_root_export_bindmount = $::nfs::nfs_v4_root_export_bindmount,
  $nfs_v4_root_export_tag       = $::nfs::nfs_v4_root_export_tag,
){

  anchor {'nfs::server::begin': }
  anchor {'nfs::server::end': }

  # package(s)
  class { 'nfs::server::package': }

  # configuration
  class { 'nfs::server::config': }

  # service(s)
  class { 'nfs::server::service': }

  if $ensure == 'present' {
    # we need the software before configuring it
    Anchor['nfs::server::begin']
    -> Class['nfs::server::package']
    -> Class['nfs::server::config']
    # we need the software and a working configuration before running a service
    Class['nfs::server::package'] -> Class['nfs::server::service']
    Class['nfs::server::config']  -> Class['nfs::server::service']
    Class['nfs::server::service'] -> Anchor['nfs::server::end']
  } else {
    # make sure all services are getting stopped before software removal
    Anchor['nfs::server::begin']
    -> Class['nfs::server::service']
    -> Class['nfs::server::package']
    -> Anchor['nfs::server::end']
  }
}