summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/init.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 21e8072..e893844 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -15,4 +15,13 @@ class trac {
package { [ "htmldoc", "python-clearsilver" ]:
ensure => present,
}
+
+ # various plugins
+ packae { [ "trac-wysiwyg", "trac-wikiprint", "trac-wikirename",
+ "trac-mastertickets", "trac-accountmanager" ]:
+ ensure => $lsbdistcodename ? {
+ 'lenny' => absent,
+ default => present,
+ },
+ }
}