aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/office/console.pp
diff options
context:
space:
mode:
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,
+ }
+ }
}