diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2015-08-25 19:15:37 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2015-08-25 19:15:37 -0300 | 
| commit | eab48bc8d50da549cd4be07d7ede5b25cd876c42 (patch) | |
| tree | b4b9a7416e03d9a2660cb4ab7f13eaa126e2aa4f /manifests/utils/office.pp | |
| parent | 8565e440c848b2987f7784cf153fb7a4620b1fab (diff) | |
| parent | a3c60b8a5d1caeb6e8f8a6828bdb2ea7b0ff2759 (diff) | |
| download | puppet-nodo-eab48bc8d50da549cd4be07d7ede5b25cd876c42.tar.gz puppet-nodo-eab48bc8d50da549cd4be07d7ede5b25cd876c42.tar.bz2  | |
Merge branch 'master' into develop
Diffstat (limited to 'manifests/utils/office.pp')
| -rw-r--r-- | manifests/utils/office.pp | 10 | 
1 files changed, 9 insertions, 1 deletions
diff --git a/manifests/utils/office.pp b/manifests/utils/office.pp index f9b4350..d4638b0 100644 --- a/manifests/utils/office.pp +++ b/manifests/utils/office.pp @@ -1,6 +1,6 @@  class nodo::utils::office {    # Office -  package { [ 'wyrd',                'vim-gtk',             'gobby', +  package { [ 'vim-gtk',             'gobby',                'sc',                  'antiword',            'dia',                'kalarm',              'pandoc',              'gnumeric',                'cups-client',         'hplip',               'cups-bsd', @@ -30,6 +30,14 @@ class nodo::utils::office {      }    } +  # Wheezy only +  package { 'wyrd': +    ensure => $::lsbdistcodename ? { +      'wheezy' => present, +      default  => absent, +    }, +  } +    # Wheezy onwards    package { 'libreoffice':      ensure => $::lsbdistcodename ? {  | 
