Name

NoExportExternal — enable use of the NoExport directive

SYNOPSIS

No | Yes

DESCRIPTION

The directive disables automatic export of internal database formats (SQL and LDAP) back to the text source files.

Invocations of [backup-database] are not affected by this setting, and [export] can force the export by specifying force=1.

DIRECTIVE TYPE AND DEFAULT VALUE

Catalog directive

EXAMPLES

Example: Enabling NoExportExternal

NoExportExternal yes

NOTES

For an introduction to "exporting" and the times it can occur, see database glossary entry and the NoExport configuration directive.

AVAILABILITY

NoExportExternal is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 642

['NoExportExternal', '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

Jon Jensen and Mark Johnson

SEE ALSO

NoImport(7ic), NoImportExternal(7ic), NoExport(7ic)

DocBook! Interchange!