Puppet Class: packetfilter::params
- Defined in:
- manifests/params.pp
Overview
Class: packetfilter::params
Defines some variables based on the operating system
Authors
Samuli Seppänen <samuli.seppanen@gmail.com>
10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'manifests/params.pp', line 10
class packetfilter::params {
case $::osfamily {
'RedHat': {
# Nothing here at the moment
}
'Debian': {
# Nothing here at the moment
}
default: {
fail("Unsupported OS: ${::osfamily}")
}
}
}
|