diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-10-28 09:24:03 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-10-28 09:24:03 +0000 |
commit | 2f0ad7212cb62c079658cf0a8bacaf3579824679 (patch) | |
tree | ec8ec925cd109c54f41ee78f854c0904eadebab3 /lib/MDV/Distribconf.pm | |
parent | ef0e88fb4850aaf382cdbd020ae62600e94ff116 (diff) | |
download | perl-MDV-Distribconf-2f0ad7212cb62c079658cf0a8bacaf3579824679.tar perl-MDV-Distribconf-2f0ad7212cb62c079658cf0a8bacaf3579824679.tar.gz perl-MDV-Distribconf-2f0ad7212cb62c079658cf0a8bacaf3579824679.tar.bz2 perl-MDV-Distribconf-2f0ad7212cb62c079658cf0a8bacaf3579824679.tar.xz perl-MDV-Distribconf-2f0ad7212cb62c079658cf0a8bacaf3579824679.zip |
Fix module name in docs
Diffstat (limited to 'lib/MDV/Distribconf.pm')
-rw-r--r-- | lib/MDV/Distribconf.pm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/MDV/Distribconf.pm b/lib/MDV/Distribconf.pm index e94a852..d43a62c 100644 --- a/lib/MDV/Distribconf.pm +++ b/lib/MDV/Distribconf.pm @@ -6,13 +6,13 @@ our $VERSION = '1.00'; =head1 NAME -Distribconf - perl module to get config from a Mandriva Linux distribution tree +MDV::Distribconf - perl module to get config from a Mandriva Linux distribution tree =head1 SYNOPSIS - use Distribconf; + use MDV::Distribconf; - my $d = Distribconf->new("/path/to/the/distribution/root"); + my $d = MDV::Distribconf->new("/path/to/the/distribution/root"); $d->load() or die "This doesn't seem to be a distribution tree\n"; @@ -23,7 +23,7 @@ Distribconf - perl module to get config from a Mandriva Linux distribution tree =head1 DESCRIPTION -Distribconf is a module to get/write the configuration of a Mandriva Linux +MDV::Distribconf is a module to get/write the configuration of a Mandriva Linux distribution tree. This configuration is stored in a file called F<media.cfg>, aimed at replacing the old-style F<hdlists> file. @@ -102,13 +102,13 @@ F<media.cfg>, can't be owerwritten, and is only used internally. =item B<mediadir> The default path relative to the 'root' path where media are -located. Distribconf is supposed to configure this automatically +located. MDV::Distribconf is supposed to configure this automatically to C<Mandrake> or to C<media>, depending on the OS version. =item B<infodir> The default path relative to the 'root' path where distrib metadata -are located. Distribconf is supposed to configure this automatically +are located. MDV::Distribconf is supposed to configure this automatically to C<Mandrake/base> or to C<media/media_info>, depending on the OS version. @@ -158,9 +158,9 @@ use strict; use warnings; use Config::IniFiles; -=head2 Distribconf->new($root) +=head2 MDV::Distribconf->new($root) -Returns a new Distribconf object, C<$root> being the top level +Returns a new MDV::Distribconf object, C<$root> being the top level directory of the tree. =cut |