Puppet Class: fish::params
- Defined in:
- manifests/params.pp
Overview
Class fish::params
This class is meant to be called from fish. It sets variables according to platform.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'manifests/params.pp', line 6
class fish::params {
# OS Specific Defaults
case $::osfamily {
'RedHat': {
#
}
'Debian': {
$ubuntu_bleeding_edge_repo = undef
}
default: {
fail("${::operatingsystem} not supported")
}
}
# Defaults for all Operating Systems
$manage_package = true
$manage_repo = true
$manage_service = true
$package_name = 'fish'
$package_version = 'installed'
}
|