puppet-bind/manifests/params.pp
2012-09-03 14:34:13 -05:00

17 lines
279 B
Puppet

class bind::params {
case $::osfamily {
'Debian': {
$bind_package = 'bind9'
$bind_service = 'bind9'
$confdir = '/etc/bind'
$bind_user = 'bind'
$bind_group = 'bind'
}
default: {
fail("Operating system is not supported ${::osfamily}")
}
}
}