Puppet Class: thunderbird::lightning

Inherits:
thunderbird::lightning::params
Defined in:
manifests/lightning.pp

Overview

Class: thunderbird::lightning

This module provides a class to install or remove Thunderbird’s lightning plugin.

Parameters

ensure

Ensure if present, installed, absent, purged, held, latest, or a specific version.

Default: present

Examples

To install lightning for Thunderbird:

class { thunderbird::lightning: ensure => 'present' }

To remove lightning for Thunderbird:

class { thunderbird::lightning: ensure => 'absent' }

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/>.

Parameters:

  • ensure (Any) (defaults to: 'present')


43
44
45
46
47
48
49
50
51
52
# File 'manifests/lightning.pp', line 43

class thunderbird::lightning (
  $ensure = 'present',
) inherits thunderbird::lightning::params {

  package { 'thunderbird::lightning':
    name    => $package_name,
    ensure  => $ensure,
    require => Package['thunderbird'],
  }
}