aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-01-08 15:23:24 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-01-08 15:23:24 -0200
commite669ddda1cbbc173aec3e4c80c36b90f0b41a37c (patch)
tree4b9af07cc53894b3c7f4697dfc32c9670a6b7694
parent5ce7252a29b36f394ec22ca4738e96c0e2ff964a (diff)
downloadpuppet-nodo-e669ddda1cbbc173aec3e4c80c36b90f0b41a37c.tar.gz
puppet-nodo-e669ddda1cbbc173aec3e4c80c36b90f0b41a37c.tar.bz2
Using rxvt-unicode-256color or rxvt-unicode
-rw-r--r--manifests/subsystems/utils/interface.pp13
1 files changed, 7 insertions, 6 deletions
diff --git a/manifests/subsystems/utils/interface.pp b/manifests/subsystems/utils/interface.pp
index a065b62..93f689f 100644
--- a/manifests/subsystems/utils/interface.pp
+++ b/manifests/subsystems/utils/interface.pp
@@ -1,10 +1,10 @@
class utils::interface {
# Interface
package { [ 'awesome', 'eterm', 'fluxbox', 'gnome-terminal', 'conky',
- 'xterm', 'bash-completion', 'tmux', 'xscreensaver', 'rxvt-unicode',
+ 'xterm', 'bash-completion', 'tmux', 'xscreensaver', 'thunar',
'mc', 'gtk-theme-switch', 'gtk-smooth-themes', 'rxvt', 'lxappearance',
'xtitle', 'xclip', 'conkyforecast', 'awesome-extra', 'numlockx',
- 'weather-util', 'pcmanfm', 'thunar' ]:
+ 'weather-util', 'pcmanfm' ]:
ensure => installed,
}
@@ -13,10 +13,11 @@ class utils::interface {
ensure => installed,
}
- package { 'rxvt-unicode-256color':
- ensure => $lsbdistcodename ? {
- 'squeeze' => absent,
- default => installed,
+ package { 'rxvt-unicode':
+ ensure => present,
+ name => $lsbdistcodename ? {
+ 'squeeze' => 'rxvt-unicode',
+ default => 'rxvt-unicode-256color',
}
}
}