Revision 9539
Added by Chris Jones almost 9 years ago
docs/user/metacat/source/submitting.rst | ||
---|---|---|
82 | 82 |
sudo cpan -i Scalar::Util |
83 | 83 |
sudo cpan -i Captcha:reCAPTCHA |
84 | 84 |
sudo cpan -i DateTime |
85 |
|
|
86 |
|
|
87 |
|
|
85 |
sudo cpan -i Crypt::JWT |
|
86 |
sudo cpan -i Crypt::X509 |
|
87 |
|
|
88 | 88 |
.. sidebar:: Instructions for Red Hat (Alternate Step 2) |
89 | 89 |
|
90 | 90 |
* Install the libraries |
src/perl/register-dataset.cgi | ||
---|---|---|
46 | 46 |
use Fcntl qw(:flock); |
47 | 47 |
use Crypt::JWT qw(decode_jwt); |
48 | 48 |
use Crypt::X509; |
49 |
use IO::Socket::SSL; |
|
50 | 49 |
use strict; |
51 | 50 |
|
52 | 51 |
#debug("running register-dataset.cgi"); |
Also available in: Unified diff
We ended up not being able to use IO::Socket::SSL, so I removed the import statement. Also, add the new Perl module dependencies to the installation documentation.
refs https://github.nceas.ucsb.edu/KNB/arctic-data/issues/42