diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-08 15:14:42 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-08 15:14:42 -0200 |
commit | 5ce7252a29b36f394ec22ca4738e96c0e2ff964a (patch) | |
tree | 53fe3fc2fb22e43f51db9ffea4c0c78c53e43d33 /manifests/subsystems/utils/interface.pp | |
parent | f68a6724ba40ecf05e08718c19877565b13a626d (diff) | |
download | puppet-nodo-5ce7252a29b36f394ec22ca4738e96c0e2ff964a.tar.gz puppet-nodo-5ce7252a29b36f394ec22ca4738e96c0e2ff964a.tar.bz2 |
Adding rxvt-unicode-256color into utils::interface
Diffstat (limited to 'manifests/subsystems/utils/interface.pp')
-rw-r--r-- | manifests/subsystems/utils/interface.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/subsystems/utils/interface.pp b/manifests/subsystems/utils/interface.pp index bced6aa..a065b62 100644 --- a/manifests/subsystems/utils/interface.pp +++ b/manifests/subsystems/utils/interface.pp @@ -12,4 +12,11 @@ class utils::interface { package { [ 'xfonts-terminus', 'ttf-bitstream-vera', 'ttf-inconsolata' ]: ensure => installed, } + + package { 'rxvt-unicode-256color': + ensure => $lsbdistcodename ? { + 'squeeze' => absent, + default => installed, + } + } } |