1DNS::Zone V0.85
2===============
3
4DNS::Zone is a collection of Perl modules which provide an
5abstraction of name service zones as well as server specific
6adaptors for concrete file representations.
7
8The modules origin is the ZoneMaster project which make heavy
9use of the module for comprehensive zone file management. Go to
10http://www.zonemaster.org for further information.
11
12
13Prerequisits
14------------
15
16As Perl is available in version 5.8.0 now and because version
175.6.0 is already over two years old, I decided to have the
18latter one as the minimum required version. Older versions are
19no longer supported.
20
21
22Installation
23------------
24
25You install DNS::Zone as you would install any perl module library,
26by running these command:
27
28If you have CPAN.pm installed and are connected to the Internet
29
30   perl -MCPAN -e shell
31   > install DNS::Zone
32
33or even
34
35   perl -MCPAN -e 'install DNS::Zone'
36
37otherwise
38
39   perl Makefile.PL
40   make
41   make test
42   make install
43
44
45Documentation
46-------------
47
48See lib/DNS/Zone.pm for an overview of the library. Documentation is
49included in all modules. These are normally converted to manual
50pages and installed as part of the "make install" process.  You should
51also be able to use the 'perldoc' utility to extract and read
52documentation from the module files directly.
53
54
55Support
56-------
57
58Feel free to send mail directly to author with your questions, comments,
59suggestions, bug reports and complaints.
60
61
62Availability
63------------
64
65You can download DNS::Zone from CPAN at
66
67   http://www.cpan.org/authors/id/W/WO/WOLF/
68
69
70Copyright
71---------
72
73Copyright (C)2001-2003 Andy Wolf. All rights reserved.
74
75This library is free software; you can redistribute it and/or modify
76it under the same terms as Perl itself.
77
78
79Author
80------
81
82Andy Wolf <zonemaster@users.sourceforge.net>
83
84
85$Id: README,v 1.1 2003/02/02 16:30:39 awolf Exp $
86