From 44a9e5f57cf60c2e0af82899ee7b61d75c464e44 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 24 Feb 2024 21:30:15 -0300 Subject: Fix: update package list for Debian bookworm --- manifests/utils/office/console.pp | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'manifests/utils/office') 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, + } + } } -- cgit v1.2.3