Relocating Jarvis

The standard packages install Jarvis into the default locations for your system. Typically, these packages should work “out of the box”. However, there are some cases where you may wish to install Jarvis into non-default locations. Specifically:

If you install Jarvis into another location, then you must change the Jarvis installation paths in the following locations:

The startup.pl script is a Perl fragment which tells mod_perl where to find the module containing the mod_perl handler for the Jarvis web service agent. When relocating Jarvis, modify the path to specify the new location of the Jarvis lib directory.

By default it contains the following:

use Apache::DBI;

use lib qw(/usr/share/jarvis/lib);      # For Debian.
use lib qw(/opt/jarvis/lib);            # For other systems.

1;