PIDfile — PID filename
Specify the filename that will contain Interchange server process ID. As with most Unix daemons, this is an elegant way to determine which process should be sent a signal for stopping or reconfiguring the server.
The location must be writable by the Interchange daemon.
Interchange 5.9.0:
Source: lib/Vend/Config.pm
Line 3925 (context shows lines 3925-3932)
sub parse_root_dir {
my($var, $value) = @_;
return '' unless $value;
$value = "$Global::VendRoot/$value"
unless file_name_is_absolute($value);
$value =~ s./+$..;
return $value;
}