1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# File 'manifests/params.pp', line 1
class nfs::params (
$nfs_v4 = false,
$nfs_v4_export_root = '/export',
$nfs_v4_export_root_clients = "*.${::domain}(ro,fsid=root,insecure,no_subtree_check,async,root_squash)",
$nfs_v4_mount_root = '/srv',
$nfs_v4_idmap_domain = $::domain,
) {
# Somehow the ::osfamliy fact doesnt exist on some oled systems
case $::operatingsystem {
'centos', 'redhat', 'scientific', 'fedora': {
$osfamily = 'redhat'
} 'debian', 'Ubuntu': {
$osfamily = 'debian'
} 'windows': {
fail('fail!11')
} default: {
fail("OS: ${::operatingsystem} not supported")
}
}
}
|