]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Updating packages
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 31 Jan 2013 20:44:33 +0000 (18:44 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 31 Jan 2013 20:44:33 +0000 (18:44 -0200)
manifests/subsystems/pam.pp
manifests/subsystems/utils/laptop.pp
manifests/subsystems/utils/multimedia.pp
manifests/subsystems/utils/network.pp

index dc326a1813f80b5e2e20927be4a648d078653624..206a5c3080824e15167d4487c24f6b8c71bdb2df 100644 (file)
@@ -2,6 +2,7 @@ class pam(
   $enable = hiera('nodo::pam::enable', false)
 ) {
   if $enable != false {
+
     # Squeeze only
     if $::lsbdistcodename == 'squeeze' {
       # pam - login
index 12ee1c8ed20f29f49b3d88da429c7f56ccaf1d85..0cb7c0c5253aa9dc2517f8d74c8c9ab230598f66 100644 (file)
@@ -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,
-      },
-    }
-  }
 }
index a61c2bf5c242feed81a91d8a7ca29e2f8a8baac7..811682bdb9305df4514eface8fb19a89e3fbdc83 100644 (file)
@@ -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'],
index 660406702e3ef0bf24e7d70bfc27f5c402ee9a17..0a0e9c938a7270f9b0243cbef158ccb80866a314 100644 (file)
@@ -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,