diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2015-08-25 17:45:23 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2015-08-25 17:45:23 -0300 | 
| commit | 9aef437e37902920e5e5bd96c9186d5ebbf9cab3 (patch) | |
| tree | 122086750d6a330bb329296de81c0c85a5ccedf8 /manifests/utils | |
| parent | 751a957587126a0fb6945a3c407620c652643db2 (diff) | |
| download | puppet-nodo-9aef437e37902920e5e5bd96c9186d5ebbf9cab3.tar.gz puppet-nodo-9aef437e37902920e5e5bd96c9186d5ebbf9cab3.tar.bz2  | |
Packages not available on jessie
Diffstat (limited to 'manifests/utils')
| -rw-r--r-- | manifests/utils/development/puppet.pp | 9 | ||||
| -rw-r--r-- | manifests/utils/interface.pp | 2 | ||||
| -rw-r--r-- | manifests/utils/network.pp | 12 | 
3 files changed, 19 insertions, 4 deletions
diff --git a/manifests/utils/development/puppet.pp b/manifests/utils/development/puppet.pp index 7285eae..bf26dbb 100644 --- a/manifests/utils/development/puppet.pp +++ b/manifests/utils/development/puppet.pp @@ -1,5 +1,12 @@  class nodo::utils::development::puppet { -  package { [ 'puppet-lint', 'ruby-hiera-puppet' ]: +  package { 'puppet-lint':      ensure => installed,    } + +  package { 'ruby-hiera-puppet': +    ensure => $::lsbdistcodename ? { +      'wheezy' => present, +      default  => absent, +    }, +  }  } diff --git a/manifests/utils/interface.pp b/manifests/utils/interface.pp index 1a1d265..235d88a 100644 --- a/manifests/utils/interface.pp +++ b/manifests/utils/interface.pp @@ -14,7 +14,7 @@ class nodo::utils::interface inherits nodo::utils::interface::console {    }    # Fonts -  package { [ 'xfonts-terminus', 'ttf-bitstream-vera', 'ttf-inconsolata' ]: +  package { [ 'xfonts-terminus', 'ttf-bitstream-vera', 'fonts-inconsolata' ]:      ensure => installed,    } diff --git a/manifests/utils/network.pp b/manifests/utils/network.pp index 7221765..cd64f93 100644 --- a/manifests/utils/network.pp +++ b/manifests/utils/network.pp @@ -4,7 +4,7 @@ class nodo::utils::network inherits nodo::utils::network::minimal {                'newsbeuter',         'nicotine',              'sshfs',                'bogofilter',         'fetchmail',             'procmail',                'msmtp',              'mairix',                'notmuch-mutt', -              'links',              'gftp',                  'iceweasel', +              'links',              'iceweasel',                'openvpn',            'pssh',                  'mutt-patched',                'pidgin',             'pidgin-encryption',     'pidgin-openpgp',                'pidgin-otr',         'pidgin-privacy-please', 'pidgin-plugin-pack', @@ -34,7 +34,7 @@ class nodo::utils::network inherits nodo::utils::network::minimal {    # Squeeze (or newer) packages    if $::lsbdistcodename != 'lenny' {      package { [ 'xul-ext-monkeysphere', 'chromium-browser', 'libical-parser-perl', -                'maildir-utils',        'icedtea6-plugin',  'xul-ext-noscript', +                'maildir-utils',        'xul-ext-noscript',                  'xul-ext-firebug',      'msva-perl',        'chromium-l10n' ]:        ensure => installed,      } @@ -67,6 +67,14 @@ class nodo::utils::network inherits nodo::utils::network::minimal {    #  ensure => installed,    #} +  # Wheezy only +  package { [ 'gftp', 'icedtea6-plugin' ]: +    ensure => $::lsbdistcodename ? { +      'lenny' => present, +      default => absent, +    }, +  } +    # Lenny only    package { [ 'mozilla-firefox-adblock' ]:      ensure => $::lsbdistcodename ? {  | 
