Puppet Class: thunderbird::params
- Inherited by:
-
thunderbird
- Defined in:
- manifests/params.pp
Overview
Class: thunderbird::params
This module provides parameters for Thunderbird.
Copyright
Copyright © 2013 Jeffrey Goettsch <jgoettsch@gmail.com>.
This file is part of jgoettsch-thunderbird.
jgoettsch-thunderbird is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
jgoettsch-thunderbird is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with jgoettsch-thunderbird. If not, see <www.gnu.org/licenses/>.
24 25 26 27 28 29 30 31 32 33 34 |
# File 'manifests/params.pp', line 24
class thunderbird::params {
case $::operatingsystem {
'Fedora': {
$package_name = 'thunderbird'
}
default: {
fail("${::operatingsystem} is not supported, only Fedora")
}
}
}
|