diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-31 18:44:33 -0200 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-31 18:44:33 -0200 | 
| commit | 4a8ec6fb019c45286e34dc83117bdd15b63b17d4 (patch) | |
| tree | 664b968c59ce5b61ff39a58087862e3b02fa3f2f /manifests/subsystems/utils | |
| parent | c0c38faca2843d5f7b0c9b11a3a2abdfd2bd2d45 (diff) | |
| download | puppet-nodo-4a8ec6fb019c45286e34dc83117bdd15b63b17d4.tar.gz puppet-nodo-4a8ec6fb019c45286e34dc83117bdd15b63b17d4.tar.bz2 | |
Updating packages
Diffstat (limited to 'manifests/subsystems/utils')
| -rw-r--r-- | manifests/subsystems/utils/laptop.pp | 18 | ||||
| -rw-r--r-- | manifests/subsystems/utils/multimedia.pp | 14 | ||||
| -rw-r--r-- | manifests/subsystems/utils/network.pp | 19 | 
3 files changed, 15 insertions, 36 deletions
| diff --git a/manifests/subsystems/utils/laptop.pp b/manifests/subsystems/utils/laptop.pp index 12ee1c8..0cb7c0c 100644 --- a/manifests/subsystems/utils/laptop.pp +++ b/manifests/subsystems/utils/laptop.pp @@ -37,22 +37,4 @@ class utils::laptop::debian {      }    } -  # Lenny specific packages -  package { [ 'madwifi-source', 'madwifi-tools', 'bluez-gnome' ]: -    ensure => $::lsbdistcodename ? { -      'lenny' => installed, -      default => absent, -    } -  } - -  # Hibernation on lenny -  if $::lsbdistcodename == 'lenny' { -    $hibernate = hiera('nodo::laptop::hibernate', false) -    package { 'uswsusp': -      ensure => $hibernate ? { -        false   => absent, -        default => present, -      }, -    } -  }  } diff --git a/manifests/subsystems/utils/multimedia.pp b/manifests/subsystems/utils/multimedia.pp index a61c2bf..811682b 100644 --- a/manifests/subsystems/utils/multimedia.pp +++ b/manifests/subsystems/utils/multimedia.pp @@ -1,10 +1,7 @@  # Multimedia utilities  class utils::multimedia::studio {    package { [ 'ardour', 'hydrogen', ]: -    ensure => $::lsbdistcodename ? { -      'lenny' => absent, -      default => installed, -    } +    ensure => installed,    }    # CD writers and extractors @@ -19,7 +16,7 @@ class utils::multimedia {                'gqview',          'mpg123',              'audacious',       'qjackctl',                'gimp',            'xine-ui',             'v4l-utils',       'inkscape',                'easytag',         'gstreamer-tools',     'vlc',             'audacity', -              'opencubicplayer', 'youtube-dl',          'mencoder',        'libasound2-plugins' +              'opencubicplayer', 'youtube-dl',          'mencoder',        'libasound2-plugins',                'cbrpager',        'llgal',               'darksnow',        'mplayer',                'picard',          'ffmpeg2theora',       'oggfwd',          'jhead' ]:      ensure => installed, @@ -46,9 +43,14 @@ class utils::multimedia {      }    } +  # Flash +  package { 'browser-plugin-gnash': +    ensure => installed, +  } +    # Flash alternative    file { "/etc/alternatives/flash-mozilla.so": -    ensure  => "/usr/lib/flashplugin-nonfree/libflashplayer.so", +    ensure  => "/usr/lib/gnash/libgnashplugin.so",      owner   => root,      group   => root,      require => Package['flashplugin-nonfree'], diff --git a/manifests/subsystems/utils/network.pp b/manifests/subsystems/utils/network.pp index 6604067..0a0e9c9 100644 --- a/manifests/subsystems/utils/network.pp +++ b/manifests/subsystems/utils/network.pp @@ -34,22 +34,22 @@ class utils::network::minimal {  class utils::network inherits utils::network::minimal {    # Network -  package { [ 'mutt',               'offlineimap',           'epiphany-browser', +  package { [ 'mutt',               'offlineimap',                           'newsbeuter',         'nicotine',              'sshfs',                'bogofilter',         'fetchmail',             'procmail',                'msmtp',              'mairix',                'notmuch-mutt', -              'bittorrent',         'links',                 'gftp', -              'bittornado',         'iceweasel',             'transmission', -              'openvpn',            'amule',                 'pssh', +              'links',              'gftp',                  'iceweasel', +              'openvpn',            'pssh',                  'mutt-patched'                'pidgin',             'pidgin-encryption',     'pidgin-openpgp',                'pidgin-otr',         'pidgin-privacy-please', 'pidgin-plugin-pack', -              'sslscan',            'muttprofile',           'connect-proxy', -              'mutt-patched' ]: +              'sslscan',            'muttprofile',           'connect-proxy' ]:      ensure => installed,    }    # Old packages -  package { [ 'silc', 'twinkle', 'konqueror']: +  # About firegpg, see http://tails.boum.org/bugs/FireGPG_may_be_unsafe/ +  package { [ 'silc', 'twinkle', 'konqueror', 'transmission', 'amule', 'epiphany-browser', +              'bittorrent', 'bittornado', 'xul-ext-firegpg' ]:      ensure => absent,    } @@ -61,11 +61,6 @@ class utils::network inherits utils::network::minimal {        ensure => installed,      } -    # See http://tails.boum.org/bugs/FireGPG_may_be_unsafe/ -    package { 'xul-ext-firegpg': -      ensure => absent, -    } -      # Not using right now      package { [ 'xul-ext-torbutton', 'vidalia', 'xul-ext-perspectives', 'xul-ext-greasemonkey' ]:        ensure => absent, | 
