DumpAllCfg — dump global Interchange server configuration
Instruct Interchange to dump the complete server configuration (with "includes"
expanded) to allconfigs.cfg in the Interchange run
directory.
The dump file does not contain catalog configurations.
Interchange "run directory" is /usr/local/interchange/etc/ on
tarball installs, and /var/run/interchange on
LSB setups.
DumpAllCfg was previously known as "OutputAllCfg", but
was renamed to ideologically match DumpStructure.
Interchange 5.7.0:
Source: lib/Vend/Config.pm
Line 5260 (context shows lines 5260-5272)
sub parse_yesno {
my($var, $value) = @_;
$_ = $value;
if (m/^y/i || m/^t/i || m/^1/ || m/^on/i) {
return 1;
}
elsif (m/^n/i || m/^f/i || m/^0/ || m/^of/i) {
return 0;
}
else {
config_error("Use 'yes' or 'no' for the $var directive\n");
}
}