IS::Conf - Infrastructure Configuration Management


IS-Conf documentation Contained in the IS-Conf distribution.

Index


Code Index:

NAME

Top

IS::Conf - Infrastructure Configuration Management

SYNOPSIS

Top

  use IS::Conf;

DESCRIPTION

Top

Placeholder for the new IS::* modules which make up isconf version 4.X -- see Infrastructures.Org for background.

USAGE

Top

BUGS

Top

SUPPORT

Top

AUTHOR

Top

	Steve Traugott
	CPAN ID: STEVEGT
	stevegt@TerraLuna.Org
	http://www.stevegt.com

COPYRIGHT

Top

SEE ALSO

Top

perl(1).

PUBLIC METHODS

Top

Each public function/method is described here. These are how you should interact with this module.

PRIVATE METHODS

Top

Each private function/method is described here. These methods and functions are considered private and are intended for internal use by this module. They are not considered part of the public interface and are described here for documentation purposes only.

sample_function

 Usage     : How to use this function/method
 Purpose   : What it does
 Returns   : What it returns
 Argument  : What it wants to know
 Throws    : Exceptions and other anomolies
 Comments  : This is a sample subroutine header.
           : It is polite to include more pod and fewer comments.

See Also :


IS-Conf documentation Contained in the IS-Conf distribution.
package IS::Conf;
use strict;

BEGIN {
	use Exporter ();
	use vars qw ($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
	$VERSION     = 0.01;
	@ISA         = qw (Exporter);
	#Give a hoot don't pollute, do not export more than needed by default
	@EXPORT      = qw ();
	@EXPORT_OK   = qw ();
	%EXPORT_TAGS = ();
}

########################################### main pod documentation begin ##
# Below is the stub of documentation for your module. You better edit it!

############################################# main pod documentation end ##


# Public methods and functions go here. 



########################################### main pod documentation begin ##

############################################# main pod documentation end ##


# Private methods and functions go here.





################################################ subroutine header begin ##

################################################## subroutine header end ##




1; #this line is important and will help the module return a true value
__END__