Puppet Class: ratbox::params
- Inherited by:
-
ratbox
- Defined in:
- manifests/params.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 |
# File 'manifests/params.pp', line 1
class ratbox::params {
# Location of the conf file based on operating system
case $osfamily {
'Debian': {
$conffile = '/etc/ircd-ratbox/ircd.conf'
$package = 'ircd-ratbox'
}
default: {
fail("\$osfamily ${osfamily} is not supported by the ratbox module")
}
}
}
|