Name

DumpAllCfg — dump global Interchange server configuration

SYNOPSIS

No | Yes

DESCRIPTION

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.

DIRECTIVE TYPE AND DEFAULT VALUE

Global directive

EXAMPLES

Example: Enabling DumpAllCfg

DumpAllCfg 1

NOTES

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.

AVAILABILITY

DumpAllCfg is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 409

['DumpAllCfg',       'yesno',            'No'],

Source: lib/Vend/Config.pm
Line 5434 (context shows lines 5434-5446)

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");
}
}

AUTHORS

Interchange Development Group

SEE ALSO

DumpStructure(7ic)

DocBook! Interchange!