aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/office/console.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-02-24 21:30:15 -0300
committerSilvio Rhatto <rhatto@riseup.net>2024-02-24 21:30:15 -0300
commit44a9e5f57cf60c2e0af82899ee7b61d75c464e44 (patch)
tree5f3d160b94b9ce0fa52fb521282c9cb597aba9d0 /manifests/utils/office/console.pp
parenta94ec2a2bdde0674357a0bc1529af660e50e9cf3 (diff)
downloadpuppet-nodo-44a9e5f57cf60c2e0af82899ee7b61d75c464e44.tar.gz
puppet-nodo-44a9e5f57cf60c2e0af82899ee7b61d75c464e44.tar.bz2
Fix: update package list for Debian bookworm
Diffstat (limited to 'manifests/utils/office/console.pp')
-rw-r--r--manifests/utils/office/console.pp18
1 files changed, 17 insertions, 1 deletions
diff --git a/manifests/utils/office/console.pp b/manifests/utils/office/console.pp
index 996d457..57d6e46 100644
--- a/manifests/utils/office/console.pp
+++ b/manifests/utils/office/console.pp
@@ -2,7 +2,7 @@ class nodo::utils::office::console (
$ensure = 'installed',
) {
package { [
- 'vim-gtk',
+ 'vim-gtk3',
'neovim',
'wyrd',
'sc',
@@ -21,4 +21,20 @@ class nodo::utils::office::console (
]:
ensure => $ensure,
}
+
+ # Deprecated
+ package { [
+ 'pandoc-citeproc',
+ ]:
+ ensure => $::lsbdistcodename ? {
+ 'wheezy' => present,
+ 'buster' => present,
+ 'bullseye' => present,
+ # Instead of removing this package, we'll let it stay
+ # for now on systems that were upgraded from previous
+ # Debian versions
+ #default => absent,
+ default => undef,
+ }
+ }
}