Puppet Class: thunderbird::lightning::params

Inherited by:
thunderbird::lightning
Defined in:
manifests/lightning/params.pp

Overview

Class: thunderbird::lightning::params

This module provides parameters for Thunderbird’s lightning plugin.

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/lightning/params.pp', line 24

class thunderbird::lightning::params {

  case $::operatingsystem {
    'Fedora': {
      $package_name = 'thunderbird-lightning'
    }
    default: {
      fail("${::operatingsystem} is not supported, only Fedora")
    }
  }
}