mdoc(7)'fy

Reviewed by:	mpp
This commit is contained in:
Alexey Zelkin 1999-09-21 19:39:27 +00:00
parent b9391689ee
commit 3a049969b5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=51518
9 changed files with 29 additions and 25 deletions

View File

@ -95,7 +95,7 @@ the predominant convention.
.Pp
It is thought that the implementation is compatible with other systems,
including
.Tn NetBSD
.Nx
and
.Tn BSD/OS .
.Sh HISTORY

View File

@ -38,7 +38,9 @@ in order to decide whether or not to trust the contents of a given
file.
It uses a method often used to detect system compromise.
.Pp
A file is considered 'secure' if it meets the following conditions:
A file is considered
.Sq secure
if it meets the following conditions:
.Bl -enum
.It
The file exists, and is a regular file (not a symlink, device
@ -55,7 +57,7 @@ gid, if gid is not -1.
This function returns zero if the file exists and may be
considered secure, -2 if the file does not exist, and
-1 otherwise to indicate a security failure.
.Xr syslog 3 ,
.Xr syslog 3
is used to log any failure of this function, including the
reason, at LOG_ERR priority.
.Sh BUGS
@ -67,4 +69,5 @@ access to the file referenced.
.Xr syslog 3 .
.Sh HISTORY
Code from which this function was derived was contributed to the
FreeBSD project by Berkeley Software Design, Inc.
.Fx
project by Berkeley Software Design, Inc.

View File

@ -27,7 +27,7 @@
.\" "
.Dd October 7, 1998
.Os
.Dt auth_getval 3
.Dt AUTH_GETVAL 3
.Sh NAME
.Nm auth_getval
.Nd functions for reading values from

View File

@ -22,11 +22,12 @@
.Sh SYNOPSIS
.Pa /etc/auth.conf
.Sh DESCRIPTION
auth.conf contains various attributes important to the authentication
.Nm auth.conf
contains various attributes important to the authentication
code, most notably
.Xr kerberos 5
for the time being. This documentation will be updated as the
.Pa auth.conf
.Pa /etc/auth.conf
file, which is very new, evolves.
.Sh SEE ALSO
.Xr auth_getval 3

View File

@ -29,7 +29,8 @@
.Pa /etc/login.conf ,
.Pa ~/.login_conf
.Sh DESCRIPTION
login.conf contains various attributes and capabilities of login classes.
.Nm login.conf
contains various attributes and capabilities of login classes.
A login class (an optional annotation against each record in the user
account database,
.Pa /etc/master.passwd )
@ -122,7 +123,7 @@ A size value is a numeric quantity and case of the suffix is not significant.
Concatenated values are added together.
.It time
A period of time, by default in seconds.
A prefix may specify a different unit;
A prefix may specify a different unit:
.Bl -tag -offset indent -compact -width xxxx
.It y
indicates the number of 365 day years,

View File

@ -28,12 +28,12 @@
.\" .Nm auth_env
.\" .Nm auth_scan
.\" .Nm auth_rmfiles
.Nm auth_checknologin
.Nm auth_cat
.\" .Nm auth_ttyok
.\" .Nm auth_hostok
.Nm auth_checknologin ,
.Nm auth_cat
.\" .Nm auth_ttyok
.\" .Nm auth_hostok
.\" .Nm auth_timesok
.Nd Authentication style support library for login class capabilities database.
.Nd authentication style support library for login class capabilities database.
.Sh SYNOPSIS
.Fd #include <sys/types.h>
.Fd #include <login_cap.h>
@ -61,8 +61,7 @@
This set of functions support the login class authorisation style interface provided
by
.Xr login.conf 5 .
.Sh RETURN VALUES
.\" .Sh RETURN VALUES
.Sh SEE ALSO
.Xr getcap 3 ,
.Xr login_cap 3 ,

View File

@ -23,10 +23,10 @@
.Os FreeBSD
.Dt LOGIN_OK 3
.Sh NAME
.Nm auth_ttyok
.Nm auth_hostok
.Nm auth_ttyok ,
.Nm auth_hostok ,
.Nm auth_timeok
.Nd Functions for checking login class based login restrictions
.Nd functions for checking login class based login restrictions
.Sh SYNOPSIS
.Fd #include <sys/types.h>
.Fd #include <time.h>

View File

@ -23,10 +23,10 @@
.Os FreeBSD
.Dt LOGIN_TIMES 3
.Sh NAME
.Nm parse_lt
.Nm in_ltm
.Nm parse_lt ,
.Nm in_ltm ,
.Nm in_ltms
.Nd Functions for parsing and checking login time periods
.Nd functions for parsing and checking login time periods
.Sh SYNOPSIS
.Fd #include <sys/types.h>
.Fd #include <time.h>
@ -95,8 +95,8 @@ A series
.Em LTM_*
macros may be used for testing bits individually and in combination.
If no bits are set in this field - ie. it contains the value
.Em LTM_NONE -
then the entire period is assumed invalid.
.Em LTM_NONE
- then the entire period is assumed invalid.
This is used as a convention to mark the termination of an array
of login_time_t values.
If

View File

@ -95,7 +95,7 @@ the predominant convention.
.Pp
It is thought that the implementation is compatible with other systems,
including
.Tn NetBSD
.Nx
and
.Tn BSD/OS .
.Sh HISTORY