]> gitweb.fluxo.info Git - puppet-trac.git/commitdiff
Fix: updates for Debian bookworm master
authorSilvio Rhatto <rhatto@riseup.net>
Tue, 26 Dec 2023 04:55:37 +0000 (01:55 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Tue, 26 Dec 2023 04:55:37 +0000 (01:55 -0300)
manifests/init.pp

index 312c54f83ab59f5703946046551221b480e691b1..b89bcd5b651f1830cc5b57d8add0fb91da3e5410 100644 (file)
@@ -4,12 +4,18 @@ class trac {
   package { "libapache2-mod-python": ensure => installed, }
 
   # Needed by http://trac-hacks.org/wiki/TracWikiToPdfPlugin
-  package { [ "htmldoc", "python-clearsilver" ]:
+  package { [ "htmldoc", ]:
     ensure => present,
   }
 
-  # Various plugins
-  package { [ "trac-wysiwyg", "trac-graphviz", "trac-authopenid" ]:
+  # Needed by http://trac-hacks.org/wiki/TracWikiToPdfPlugin
+  # Currently not available (as of 202312)
+  package { [ "python-clearsilver", ]:
+    ensure => absent,
+  }
+
+  # Various available plugins
+  package { [ "trac-wysiwyg", ]:
     ensure => $lsbdistcodename ? {
       'lenny'   => absent,
       'precise' => absent,
@@ -17,6 +23,15 @@ class trac {
     },
   }
 
+  # Various unavailable plugins
+  package { [ "trac-graphviz", "trac-authopenid" ]:
+    ensure => $lsbdistcodename ? {
+      'lenny'   => absent,
+      'precise' => absent,
+      default   => absent,
+    },
+  }
+
   # Bugwarrior integration
   package { "trac-xmlrpc":
     ensure => present,