diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-09-28 08:50:14 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-09-28 08:50:14 +0000 |
commit | 77c467255c766a1bcc99e7f75a89fad1bde3c835 (patch) | |
tree | 9a203a0d37e9d8cf9c08ec17c2dfb9abac08b5a7 /Distribconf.pm | |
parent | 063e5f29aca06f55ae8d5dd0e3c161169b0310f4 (diff) | |
download | rpmtools-77c467255c766a1bcc99e7f75a89fad1bde3c835.tar rpmtools-77c467255c766a1bcc99e7f75a89fad1bde3c835.tar.gz rpmtools-77c467255c766a1bcc99e7f75a89fad1bde3c835.tar.bz2 rpmtools-77c467255c766a1bcc99e7f75a89fad1bde3c835.tar.xz rpmtools-77c467255c766a1bcc99e7f75a89fad1bde3c835.zip |
Documentation nits. Fix some fatal error messages.
Diffstat (limited to 'Distribconf.pm')
-rw-r--r-- | Distribconf.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Distribconf.pm b/Distribconf.pm index 56fee3e..0552d36 100644 --- a/Distribconf.pm +++ b/Distribconf.pm @@ -27,7 +27,7 @@ Distribconf - perl module to get config from a Mandriva Linux distribution tree use Distribconf; my $d = Distribconf->new("/path/to/the/distribution/root"); - $d->load() and die "The dir does not seems to be a distribution tree"; + $d->load() or die "This does not seem to be a distribution tree\n"; print $d->getpath(undef, "root") ."\n"; foreach ($d->listmedia) { @@ -51,7 +51,7 @@ an F<hdlists> file based on this C<media.cfg>. =head1 media.cfg -The media.cfg is like an ini file. All parameters are optional, this means that +The media.cfg is like a .ini file. All parameters are optional; this means that a readable empty file is ok, if this is what you want :) The media.cfg contains sections, each section corresponding to a media, except @@ -420,6 +420,9 @@ Thanks to Sylvie Terjan <erinmargault@mandriva.org> for the spell checking. =head1 ChangeLog $Log$ + Revision 1.11 2005/09/28 08:50:14 rgarciasuarez + Documentation nits. Fix some fatal error messages. + Revision 1.10 2005/09/06 19:46:16 othauvin - s/mandrake/mandriva/ |