diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-02-16 22:32:48 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-02-16 22:32:48 -0300 |
commit | 4363c1f30fd6a9b48ee6c10be1eb3c6c00fad07c (patch) | |
tree | 351f856e22eb774d4f0105ba2e147eb8028bab08 /manifests/utils/interface.pp | |
parent | 455485bbd7dce0ad120c53c3deadc6bf92f04cce (diff) | |
download | puppet-nodo-4363c1f30fd6a9b48ee6c10be1eb3c6c00fad07c.tar.gz puppet-nodo-4363c1f30fd6a9b48ee6c10be1eb3c6c00fad07c.tar.bz2 |
Using 'rxvt-unicode-256color' on wheezy onwards
Diffstat (limited to 'manifests/utils/interface.pp')
-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', + } } } |