dcf118f17c
This will probably need to go away again someday when distributions get folded into packages and there are no more dist files to check, but knowing how long we've been waiting on THAT, this will be a welcome tool for the interim. Submitted by: Robert Nordier <rnordier@iafrica.com>
97 lines
3.4 KiB
Groff
97 lines
3.4 KiB
Groff
.\" Copyright (c) 1997 Robert Nordier
|
|
.\" All rights reserved.
|
|
.\"
|
|
.\" $Id: ckdist.1,v 1.2 1997/01/20 16:47:04 rnordier Exp $
|
|
.\"
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
.\" modification, are permitted provided that the following conditions
|
|
.\" are met:
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
.\"
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
|
|
.\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
.\" DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
|
|
.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
.\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
.\" POSSIBILITY OF SUCH DAMAGE.
|
|
.\"
|
|
.Dd January 20, 1997
|
|
.Dt CKDIST 1
|
|
.Os
|
|
.Sh NAME
|
|
.Nm ckdist
|
|
.Nd check software distributions
|
|
.Sh SYNOPSIS
|
|
.Nm ckdist
|
|
.Bq Fl airsx
|
|
.Bq Fl d Ar dir
|
|
.Bq Fl n Ar name
|
|
.Bq Fl t Ar type
|
|
.Ar file ...
|
|
.Sh DESCRIPTION
|
|
The
|
|
.Nm ckdist
|
|
utility reads "checksum" files (which are assumed to specify components
|
|
of a software distribution) and verifies the integrity of the
|
|
distribution by validating the checksum of each component file.
|
|
Both MD5 (128-bit "message digest") and .inf (32-bit CRC) checksum
|
|
formats are supported.
|
|
.Pp
|
|
The
|
|
.Ar file
|
|
operands may refer to regular files or to directories. Regular files
|
|
named "md5", or which have an ".md5" or an ".inf" extension, are
|
|
assumed to be of the implied type, otherwise format is determined from
|
|
content. If a directory is specified, it is searched for
|
|
appropriately-named files only.
|
|
.Pp
|
|
Options are as follows:
|
|
.Bl -tag -width 8n -offset indent
|
|
.It Fl a
|
|
Report on all distribution components, not just those in respect of
|
|
which errors are detected.
|
|
.It Fl i
|
|
Ignore missing distribution components.
|
|
.It Fl r
|
|
Search specified directories recursively.
|
|
.It Fl s
|
|
Suppress complaints about inaccessible checksum files and directories.
|
|
.It Fl x
|
|
Verify the existence of distribution components (and also check sizes,
|
|
in the case of .inf files), but omit the more time-consuming step of
|
|
actually computing and comparing checksums.
|
|
.It Fl d Ar dir
|
|
Look for distribution components in the directory
|
|
.Ar dir .
|
|
.It Fl n Ar name
|
|
Access distribution components using the filename
|
|
.Ar name .
|
|
(When accessing .inf file components, append the appropriate
|
|
extension to the filename.)
|
|
.It Fl t Ar type
|
|
Assume that all specified checksum files are of the format
|
|
.Ar type ,
|
|
and search directories only for files in this format (where
|
|
.Ar type
|
|
is either "md5" or "inf").
|
|
.El
|
|
.Sh SEE ALSO
|
|
cksum(1), md5(1)
|
|
.Sh DIAGNOSTICS
|
|
Exit status is 0 if no errors were detected, 1 if errors were found in
|
|
a distribution, and 2 if usage errors, inaccessible input files, or
|
|
other system errors were encountered.
|
|
.Sh NOTES
|
|
Both BSD and DOS versions of
|
|
.Nm ckdist
|
|
are available.
|