3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# File 'manifests/params.pp', line 3
class samba::params {
case $::osfamily {
RedHat: {
$client_package_name = 'samba-client'
$server_package_name = 'samba'
$samba_service = 'smb'
$winbind_package = 'samba-winbind'
$winbind_service = 'winbind'
}
Debian: {
$client_package_name = 'smbclient'
$server_package_name = 'samba'
$samba_service = 'smbd'
$winbind_service = 'winbind'
$winbind_package = 'winbind'
}
default: {
fail("${::osfamily} is currently not supported by this module.")
}
}
}
|