diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2026-01-02 15:09:47 -0300 |
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2026-01-02 15:09:47 -0300 |
| commit | 84639c699f9151c4862b1855c130dfd4e0cb20cc (patch) | |
| tree | 0edc148711114bb66e8df13d37088dadc40d3f20 | |
| parent | 2a1a423df06c0bcb7087a736f22fdf644ae983f5 (diff) | |
| download | puppet-nodo-84639c699f9151c4862b1855c130dfd4e0cb20cc.tar.gz puppet-nodo-84639c699f9151c4862b1855c130dfd4e0cb20cc.tar.bz2 | |
Fix: nodo::utils::interface: switch from parcellite to clipit
| -rw-r--r-- | manifests/utils/interface.pp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/manifests/utils/interface.pp b/manifests/utils/interface.pp index 1dd37f6..2e6d7b4 100644 --- a/manifests/utils/interface.pp +++ b/manifests/utils/interface.pp @@ -16,7 +16,7 @@ class nodo::utils::interface inherits nodo::utils::interface::console { 'xinput', 'numlockx', 'autocutsel', - 'parcellite', + 'clipit', 'unclutter', 'xserver-xephyr', 'policykit-1-gnome', @@ -40,6 +40,16 @@ class nodo::utils::interface inherits nodo::utils::interface::console { ensure => installed, } + # Absent on Debian trixie + package { [ + 'parcellite', + ]: + ensure => $::lsbdistcodename ? { + 'trixie' => absent, + default => present, + } + } + # We need a workaround for this: # https://bbs.archlinux.org/viewtopic.php?id=50647 # http://linuxforcynics.com/how-to/using-rxvt-unicode-with-screen |
