aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2023-07-31 15:26:14 -0300
committerSilvio Rhatto <rhatto@riseup.net>2023-07-31 15:26:14 -0300
commit2316a33e11838166f344951fe663c4a050af4cb0 (patch)
tree1cbc4ac88e8588c80bca73fbace4da42de19023a
parent752e1aa63e59da6f6129c9d5393d4a5017804919 (diff)
downloadpuppet-nodo-2316a33e11838166f344951fe663c4a050af4cb0.tar.gz
puppet-nodo-2316a33e11838166f344951fe663c4a050af4cb0.tar.bz2
Fix: rxvt-unicode replaces rxvt-unicode-256color
-rw-r--r--manifests/utils/interface.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/utils/interface.pp b/manifests/utils/interface.pp
index a6d1ac3..d337d13 100644
--- a/manifests/utils/interface.pp
+++ b/manifests/utils/interface.pp
@@ -42,7 +42,9 @@ class nodo::utils::interface inherits nodo::utils::interface::console {
# https://bbs.archlinux.org/viewtopic.php?id=50647
# http://linuxforcynics.com/how-to/using-rxvt-unicode-with-screen
package { [
- 'rxvt-unicode-256color',
+ # Package rxvt-unicode-256color was replaced by rxvt-unicode-256color
+ #'rxvt-unicode-256color',
+ 'rxvt-unicode',
]:
ensure => present,
}