summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-01-26 16:28:31 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-01-26 16:28:31 -0200
commit6d5771c3b9f604d71c1770a7f5707f4cd0aa83c1 (patch)
treea65d71ab6b2a25c74709dde37fa2f6e7127d19d9
parent4bef2f82da959401654447998bc1e00048fa8407 (diff)
downloadpuppet-trac-6d5771c3b9f604d71c1770a7f5707f4cd0aa83c1.tar.gz
puppet-trac-6d5771c3b9f604d71c1770a7f5707f4cd0aa83c1.tar.bz2
Adding packages for pdf conversion plugins
-rw-r--r--manifests/init.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 6fa890a..21e8072 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -3,4 +3,16 @@ class trac {
package { "trac": ensure => installed, }
package { "trac-git": ensure => installed, }
package { "libapache2-mod-python": ensure => installed, }
+
+ # needed by http://trac-hacks.org/wiki/TracWikiPrintPlugin
+ # wikiprint needs also pisa, which is still in testing (as the
+ # time of writing), see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504277
+ #package { [ 'python-reportlab', 'python-html5lib', 'python-pypdf', 'python-imaging', 'python-pygments' ]:
+ # ensure => installed,
+ #}
+
+ # needed by http://trac-hacks.org/wiki/TracWikiToPdfPlugin
+ package { [ "htmldoc", "python-clearsilver" ]:
+ ensure => present,
+ }
}