summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp9
1 files changed, 7 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 9ca02d5..319c20b 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -17,11 +17,16 @@ class trac {
}
# various plugins
- package { [ "trac-wysiwyg", "trac-wikiprint", "trac-wikirename",
- "trac-mastertickets", "trac-accountmanager" ]:
+ package { [ "trac-wysiwyg", "trac-wikiprint", "trac-wikirename",
+ "trac-graphviz", "trac-accountmanager" ]:
ensure => $lsbdistcodename ? {
'lenny' => absent,
default => present,
},
}
+
+ # there's a bug in the squeeze package, use the egg instead
+ package { "trac-mastertickets" :
+ ensure => absent,
+ }
}