aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-01-14 10:36:56 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-01-14 10:36:56 -0200
commit965927a9a8a449cdaf3187d74b50ac6f549aa934 (patch)
treefd330bea544a88fbe3977e66be0bdf94d00777fa
parent7d578aa03825da7988be690d4127e5a95b894f25 (diff)
downloadpuppet-nodo-965927a9a8a449cdaf3187d74b50ac6f549aa934.tar.gz
puppet-nodo-965927a9a8a449cdaf3187d74b50ac6f549aa934.tar.bz2
Bug around rxvt-unicode-256color and screen
-rw-r--r--manifests/subsystems/utils/interface.pp10
1 files changed, 6 insertions, 4 deletions
diff --git a/manifests/subsystems/utils/interface.pp b/manifests/subsystems/utils/interface.pp
index 93f689f..0ca228d 100644
--- a/manifests/subsystems/utils/interface.pp
+++ b/manifests/subsystems/utils/interface.pp
@@ -15,9 +15,11 @@ class utils::interface {
package { 'rxvt-unicode':
ensure => present,
- name => $lsbdistcodename ? {
- 'squeeze' => 'rxvt-unicode',
- default => 'rxvt-unicode-256color',
- }
+ # We need a workaround for this:
+ # http://packages.debian.org/search?keywords=screen&searchon=names&suite=all&section=all&sourceid=mozilla-search
+ #name => $lsbdistcodename ? {
+ # 'squeeze' => 'rxvt-unicode',
+ # default => 'rxvt-unicode-256color',
+ #}
}
}