Puppet Class: thunderbird

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

Overview

Class: thunderbird

This module provides a class to install or remove Thunderbird.

Parameters

ensure

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

Default: present

Examples

To install Thunderbird:

class { thunderbird: ensure => 'present' }

To remove Thunderbird:

class { thunderbird: 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')


42
43
44
45
46
47
48
49
50
# File 'manifests/init.pp', line 42

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

  package { 'thunderbird':
    name   => $package_name,
    ensure => $ensure,
  }
}