diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-06-19 20:31:38 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-06-19 20:31:38 -0300 |
commit | a4f400c226d1eb6eaf1a35a3b35a0df9b8be12b9 (patch) | |
tree | cb7abbbd09ad545e554e8ea78ca62bca965b385d /manifests/wikiprint.pp | |
parent | abbeb15fa79e17d2635263cadb1d54b4aa856266 (diff) | |
download | puppet-trac-a4f400c226d1eb6eaf1a35a3b35a0df9b8be12b9.tar.gz puppet-trac-a4f400c226d1eb6eaf1a35a3b35a0df9b8be12b9.tar.bz2 |
Adds trac::wikiprint
Diffstat (limited to 'manifests/wikiprint.pp')
-rw-r--r-- | manifests/wikiprint.pp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/manifests/wikiprint.pp b/manifests/wikiprint.pp new file mode 100644 index 0000000..48253b8 --- /dev/null +++ b/manifests/wikiprint.pp @@ -0,0 +1,15 @@ +class trac::wikiprint { + # 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, + #} + + package { 'trac-wikiprint': + ensure => $::lsbdistcodename ? { + 'jessie' => absent, + default => present, + }, + } +} |