1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|
# File 'manifests/params.pp', line 1
class autofs::params
{
#case $::osfamily
#{
# 'Linux':
# {
case $::operatingsystem
{
'Gentoo':
{
$package = [ 'net-fs/autofs' ]
$service = 'autofs'
$master = '/etc/autofs/auto.master'
$group = 'root'
$owner = 'root'
$confd = '/etc/conf.d/autofs'
}
'Debian':
{
$package = [ 'autofs', 'autofs-ldap' ]
$service = 'autofs'
$master = '/etc/auto.master'
$group = 'root'
$owner = 'root'
$confd = undef
}
'Solaris':
{
$package = [] # solaris has it built-in, no package required
$service = 'autofs'
$master = '/etc/auto_master'
$owner = 'root'
$group = 'root'
$confd = undef
}
'RedHat':
{
$package = [ 'autofs' ]
$service = 'autofs'
$master = '/etc/auto.master'
$owner = 'root'
$group = 'root'
$confd = undef
}
default:
{
fail("$::operatingsystem not supported!")
}
}
# }
# default:
# {
# fail("$::osfamily not supported!")
# }
#}
}
|