Puppet Class: charybdis::params

Inherited by:
charybdis
Defined in:
manifests/params.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
# File 'manifests/params.pp', line 1

class charybdis::params {
  # Location of the conf file based on operating system
  case $osfamily {
    'Debian': {
      $conffile = '/etc/charybdis/ircd.conf'
    }
    default: {
      fail("\$osfamily ${osfamily} is not supported by the charybdis module")
    }
  }
}