Query: net::dns::sec::tools::bootstrap
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
BootStrap(3pm) User Contributed Perl Documentation BootStrap(3pm)NAMENet::DNS::SEC::Tools::BootStrap - Optional loading of Perl modulesSYNOPSISuse Net::DNS::SEC::Tools::BootStrap; dnssec_tools_load_mods( PerlModule => 'Additional help/error text' );DESCRIPTIONThe DNSSEC-Tools package requires a number of Perl modules that are only needed by some of the tools. This module helps determine at run- time, rather than at installation time, if the right tools are available on the system. If any module fails to load, dnssec_tools_load_mods() will display an error message and calls exit(). The error message describes how to install a module via CPAN. The arguments to dnssec_tools_load_mods() are given in pairs. Each pair is a module to try to load (and import) and a supplemental error message. If the module fails to load, the supplemental error message will be displayed along with the installation-via-CPAN message. If the error message consists of the string "noerror", then no error message will be displayed before the function exits.CAVEATSThe module will try to import any exported subroutines from the module into the main namespace. This means that the BootStrap.pm module is likely to not be useful for importing symbols into other modules. Work-arounds for this are: - import the symbols by hand dnssec_tools_load_mods( PerlModule => 'Additional help/error text' ); import PerlModule qw(func1 func2); func1(arg1, arg2); - call the fully qualified function name dnssec_tools_load_mods( PerlModule => 'Additional help/error text' ); PerlModule::func1(arg1, arg2);COPYRIGHTCopyright 2006-2012 SPARTA, Inc. All rights reserved. See the COPYING file included with the DNSSEC-Tools package for details.AUTHORWes Hardaker <hardaker@users.sourceforge.net>SEE ALSOhttp://www.dnssec-tools.org/ perl v5.14.2 2012-01-27 BootStrap(3pm)