| IS-Conf documentation | Contained in the IS-Conf distribution. |
IS::Conf - Infrastructure Configuration Management
use IS::Conf;
Placeholder for the new IS::* modules which make up isconf version 4.X -- see Infrastructures.Org for background.
Steve Traugott CPAN ID: STEVEGT stevegt@TerraLuna.Org http://www.stevegt.com
Copyright (c) 2002 Steve Traugott. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
perl(1).
Each public function/method is described here. These are how you should interact with this module.
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.
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__