Skip to main content
summaryrefslogtreecommitdiffstats
blob: 367087163fc84df6ffe24a63579530a6669b1c0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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 %>
<% if  @envversion > "4.5" %>
/usr/bin/perl install-module.pl URI
/usr/bin/perl install-module.pl DateTime
/usr/bin/perl install-module.pl DateTime::TimeZone
/usr/bin/perl install-module.pl File::Slurp
/usr/bin/perl install-module.pl Email::Sender
<% end %>
echo "Ende1"

Back to the top