Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
"PROBLEM/ABSTRACT:
How do I install the necessary Perl modules for the sample trigger scripts?
SOLUTION:
There are many ways to accomplish this, two common approaches are as follows (sample is for installing XML::Simple).
Example 1: Use the PPM utility that ships with Perl.
> ppm
PPM> install XML::Simple
Example 2: Use the Perl CLI
> perl -MCPAN -e shell
> install XML::Simple
The same methods can be used to install the Net::SMTP module, etc...
For more information contact AccuRev Support"