diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/utils/interface.pp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/manifests/utils/interface.pp b/manifests/utils/interface.pp index 6c77af1..77f2dc4 100644 --- a/manifests/utils/interface.pp +++ b/manifests/utils/interface.pp @@ -21,10 +21,11 @@ class nodo::utils::interface inherits nodo::utils::interface::console { package { 'rxvt-unicode': ensure => present, # We need a workaround for this: - # http://packages.debian.org/search?keywords=screen&searchon=names&suite=all§ion=all&sourceid=mozilla-search - #name => $lsbdistcodename ? { - # 'squeeze' => 'rxvt-unicode', - # default => 'rxvt-unicode-256color', - #} + # https://bbs.archlinux.org/viewtopic.php?id=50647 + # http://linuxforcynics.com/how-to/using-rxvt-unicode-with-screen + name => $lsbdistcodename ? { + 'squeeze' => 'rxvt-unicode', + default => 'rxvt-unicode-256color', + } } } |