diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-04-28 12:16:04 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-04-28 12:16:04 +0200 |
commit | 74606cfffbf79083902d79a330c00d46c12482e6 (patch) | |
tree | 963e2caf2609726f66e679961d0354395d4ec782 /install.sh | |
parent | 136ed36ec93e38a84f88dbcb40ee7e17cdffa003 (diff) | |
download | vdradmin-am-3.4.5rc.tar.gz vdradmin-am-3.4.5rc.tar.bz2 |
2006-04-28: 3.4.5rcv3.4.5rc
- Changed: request full "from" email address for sending emails instead of domain only (Requested by siryoda).
- Changed: no red background for inactive timers in prog_timeline (Requested by Zimbo).
- Changed: result of a search is ordered by the event's start time instead of channel id (Suggested by scorp).
- Fixed: crashes when sending emails (Thanks to Ville Skyttä for hints and siryoda for testing).
- Fixed: error page sets charset correct.
- Added: russian translation (Thanks to Oleg Roitburd and Allrussian-forum translation team)
- Fixed: lots of perl warnings.
- Updated: localization, French is again up-to-date (Thanks to Trois Six).
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -29,7 +29,7 @@ function usage() echo "" echo -e "\t-c : Run \"vdradmind.pl -c\" after installation (=configure)." echo -e "\t-u : Perform uninstall." - echo -e "\t-p : Only install needed Perl modules (NOT YET FINISHED!!!)." + echo -e "\t-p : List and optionally install required Perl modules." echo -e "\t-h : This message." echo "" exit 0 @@ -75,6 +75,8 @@ function checkPerlModule() function perlModules() { + echo "" + echo "*** Required ***" checkPerlModule Template checkPerlModule Compress::Zlib checkPerlModule CGI @@ -82,9 +84,19 @@ function perlModules() checkPerlModule Time::Local checkPerlModule MIME::Base64 checkPerlModule File::Temp - checkPerlModule Locale::gettext Locale::Messages checkPerlModule URI::Escape + + echo "" + echo "You need Locale::gettext OR Locale::Messages" + checkPerlModule Locale::gettext Locale::Messages + + echo "" + echo "*** Optional ***" + echo "* Required for AutoTimer email notification" checkPerlModule Net::SMTP + checkPerlModule Authen::SASL + echo "* Required for AutoTimer email notification and CRAM-MD5 authentication" + checkPerlModule Digest::HMAC_MD5 } function makeDir() @@ -238,7 +250,7 @@ if [ $(basename $0) = "uninstall.sh" -o "$UNINSTALL" ]; then doUninstall elif [ "$PERL" ]; then echo "" - echo "Only LISTING needed Perl modules..." + echo "Testing required Perl modules..." perlModules echo "...done." else |