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,
},
}
+ # Various unavailable plugins
+ package { [ "trac-graphviz", "trac-authopenid" ]:
+ ensure => $lsbdistcodename ? {
+ 'lenny' => absent,
+ 'precise' => absent,
+ default => absent,
+ },
+ }
+
# Bugwarrior integration
package { "trac-xmlrpc":
ensure => present,