Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb')
-rw-r--r--org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb16
1 files changed, 16 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb b/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb
new file mode 100644
index 000000000..283b2865e
--- /dev/null
+++ b/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/installPerlModules.sh.erb
@@ -0,0 +1,16 @@
+#!/bin/bash
+<% if @operatingsystemrelease == "10.04" %>
+/usr/bin/perl install-module.pl CGI
+/usr/bin/perl install-module.pl Template
+<% if @envversion > "3.6" %>
+/usr/bin/perl install-module.pl Email::MIME
+<% end %>
+<% if @envversion > "4.2" %>
+/usr/bin/perl install-module.pl List::MoreUtils
+<% end %>
+<% end %>
+<% if @operatingsystemrelease = "12.04" && @envversion > "4.4" %>
+/usr/bin/perl install-module.pl Template
+<% end %>
+echo "Ende1"
+

Back to the top