2011-12-30 00:59:08 +00:00
|
|
|
.\" Copyright (c) 1998 Dag-Erling Coïdan Smørgrav
|
1998-05-24 15:09:23 +00:00
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" 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
|
|
|
|
.\" in this position and unchanged.
|
|
|
|
.\" 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.
|
|
|
|
.\" 3. The name of the author may not be used to endorse or promote products
|
1998-05-27 14:04:38 +00:00
|
|
|
.\" derived from this software without specific prior written permission
|
1998-05-24 15:09:23 +00:00
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
|
|
|
|
.\"
|
1999-08-28 01:35:59 +00:00
|
|
|
.\" $FreeBSD$
|
1998-05-24 15:09:23 +00:00
|
|
|
.\"
|
2005-06-14 12:26:36 +00:00
|
|
|
.Dd May 26, 2005
|
1998-05-24 15:09:23 +00:00
|
|
|
.Dt CHKGRP 8
|
2001-07-10 15:12:08 +00:00
|
|
|
.Os
|
1998-05-24 15:09:23 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm chkgrp
|
|
|
|
.Nd check the syntax of the group file
|
|
|
|
.Sh SYNOPSIS
|
2000-03-23 16:40:42 +00:00
|
|
|
.Nm
|
1998-05-24 15:09:23 +00:00
|
|
|
.Op Ar groupfile
|
|
|
|
.Sh DESCRIPTION
|
2000-03-23 16:40:42 +00:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility
|
1998-05-24 15:09:23 +00:00
|
|
|
scans the given file or, failing that, the system-wide group file for
|
2000-03-01 14:09:25 +00:00
|
|
|
errors.
|
|
|
|
Specifically, it checks that every non-blank, non-comment
|
1998-05-24 15:09:23 +00:00
|
|
|
entry is composed of four colon-separated fields, that none of them
|
|
|
|
contains whitespace, and that the third field (the group ID) is
|
2005-06-14 12:26:36 +00:00
|
|
|
numeric.
|
|
|
|
It will also check for invalid characters in the group names
|
2005-05-26 10:57:03 +00:00
|
|
|
and group members.
|
1998-05-31 17:24:25 +00:00
|
|
|
.Sh FILES
|
2000-03-24 08:36:39 +00:00
|
|
|
.Bl -tag -width /etc/group -compact
|
1998-05-31 17:24:25 +00:00
|
|
|
.It Pa /etc/group
|
2000-03-24 08:36:39 +00:00
|
|
|
group database file
|
1999-10-17 15:46:58 +00:00
|
|
|
.El
|
2005-01-17 07:44:44 +00:00
|
|
|
.Sh EXIT STATUS
|
2000-03-23 16:40:42 +00:00
|
|
|
The
|
|
|
|
.Nm
|
2000-03-24 08:36:39 +00:00
|
|
|
utility returns
|
|
|
|
.Dv EX_DATAERR
|
|
|
|
if errors were found in the group file,
|
|
|
|
and
|
|
|
|
.Dv EX_OK
|
|
|
|
otherwise.
|
2005-01-18 20:02:45 +00:00
|
|
|
.Sh DIAGNOSTICS
|
|
|
|
For each error found,
|
|
|
|
.Nm
|
|
|
|
will print an error message containing the name of the file being
|
|
|
|
scanned and the line number on which the error was found.
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr getgrent 3 ,
|
|
|
|
.Xr group 5
|
1998-05-24 15:09:23 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
2000-03-23 16:40:42 +00:00
|
|
|
utility appeared in
|
|
|
|
.Fx 3.0 .
|
1998-05-24 15:09:23 +00:00
|
|
|
.Sh AUTHORS
|
2005-06-14 12:26:36 +00:00
|
|
|
.An -nosplit
|
2000-03-23 16:40:42 +00:00
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility and this manual page were written by
|
2004-01-25 11:39:42 +00:00
|
|
|
.An Dag-Erling Sm\(/orgrav Aq des@FreeBSD.org .
|
2005-05-26 10:57:03 +00:00
|
|
|
Further functionality was added by
|
|
|
|
.An Liam J. Foy Aq liamfoy@dragonflybsd.org .
|
1998-05-24 15:09:23 +00:00
|
|
|
.Sh BUGS
|
2005-05-26 10:57:03 +00:00
|
|
|
Should check the range of the group ID.
|