14 lines
196 B
Puppet
14 lines
196 B
Puppet
class bind::params {
|
|
|
|
case $::osfamily {
|
|
'Debian': {
|
|
$bind_package = 'bind9'
|
|
$bind_service = 'bind9'
|
|
}
|
|
default: {
|
|
fail("Operating system is not supported ${::osfamily}")
|
|
}
|
|
}
|
|
|
|
}
|