Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7e2ae20c3262b25be3dcae6f39dcc8a52222eef5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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 %>
<% if @envversion > "4.5.2" %>
/usr/bin/perl install-module.pl URI
<% end %>
<% end %>
<% if @operatingsystemrelease = "12.04" && @envversion > "4.4" %>
/usr/bin/perl install-module.pl Template
<% end %>
echo "Ende1"

Back to the top