63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# File 'manifests/server.pp', line 63
class nfs::server::configure {
concat {'/etc/exports': }
concat::fragment{
'header':
target => '/etc/exports',
content => "# This file is configured through the nfs::server puppet module\n",
order => 01;
}
if $nfs::server::nfs_v4 == true {
concat::fragment{
'root':
target => '/etc/exports',
content => "${nfs::server::nfs_v4_export_root} ${nfs::server::nfs_v4_export_root_clients}\n",
order => 02
}
file {
"${nfs::server::nfs_v4_export_root}":
ensure => directory,
}
}
}
|