aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/multimedia.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-09-23 17:49:56 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-09-23 17:49:56 -0300
commit0f83c2aebe89b53a939c2f437f827bfe9e90e02c (patch)
treef3e5a32341d07f9201d3751ba0a5026ed15b0e36 /manifests/utils/multimedia.pp
parent4a880ad141c8deefb41549e5e79c868303e1c296 (diff)
downloadpuppet-nodo-0f83c2aebe89b53a939c2f437f827bfe9e90e02c.tar.gz
puppet-nodo-0f83c2aebe89b53a939c2f437f827bfe9e90e02c.tar.bz2
Utils: reorder and cleanup
Diffstat (limited to 'manifests/utils/multimedia.pp')
-rw-r--r--manifests/utils/multimedia.pp91
1 files changed, 33 insertions, 58 deletions
diff --git a/manifests/utils/multimedia.pp b/manifests/utils/multimedia.pp
index c99a896..e4b23b5 100644
--- a/manifests/utils/multimedia.pp
+++ b/manifests/utils/multimedia.pp
@@ -2,74 +2,49 @@
class nodo::utils::multimedia inherits nodo::utils::multimedia::minimal {
# Multimedia
package { [
- 'alsa-tools-gui',
- 'mp3blaster',
- 'netpbm',
- 'audacious',
- 'qjackctl',
'gimp',
- 'xine-ui',
- 'v4l-utils',
'inkscape',
- 'easytag',
- 'gstreamer-tools',
- 'vlc',
- 'audacity',
- 'opencubicplayer',
- 'libasound2-plugins',
- 'lame',
'geeqie',
'cbrpager',
- 'llgal',
- 'darksnow',
'pavucontrol',
- 'picard',
- 'ffmpeg2theora',
- 'oggfwd',
'jhead',
- 'gxine',
- 'totem',
- 'faad',
- 'gmtp',
- 'gphotofs',
- 'jmtpfs',
+ #'alsa-tools-gui',
+ #'v4l-utils',
+ #'gstreamer-tools',
+ #'mp3blaster',
+ #'vlc',
+ #'libasound2-plugins',
+ #'lame',
+ #'llgal',
+ #'darksnow',
+ #'ffmpeg2theora',
+ #'netpbm',
+ #'xine-ui',
+ #'audacious',
+ #'qjackctl',
+ #'easytag',
+ #'audacity',
+ #'opencubicplayer',
+ #'picard',
+ #'gxine',
+ #'oggfwd',
+ #'totem',
+ #'faad',
+ #'gmtp',
+ #'gphotofs',
+ #'jmtpfs',
+ #'landell',
+ #'gqview',
+ #'mencoder',
+ #'tucan',
+ #'orpheus',
+ #'amarok',
+ #'moc',
+ #'cmus',
]:
ensure => installed,
}
- # Old stuff
- package { [
- 'amarok',
- 'moc',
- 'cmus',
- ]:
- ensure => purged,
- }
-
- # Squeeze only
- package { [
- 'tucan',
- 'orpheus',
- ]:
- ensure => $::lsbdistcodename ? {
- 'squeeze' => installed,
- default => purged,
- }
- }
-
- # Wheezy only
- package { [
- 'landell',
- 'gqview',
- 'mencoder',
- ]:
- ensure => $::lsbdistcodename ? {
- 'squeeze' => absent,
- 'wheezy' => installed,
- default => absent,
- }
- }
-
# Flash implementation (deprecated)
#$flash = hiera('nodo::utils::multimedia::flash', 'gnash')
#class { "nodo::utils::multimedia::${flash}": }