Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/man/man5 Sort sections, sort SEE ALSO.



details:   https://anonhg.NetBSD.org/src/rev/da1b4a69e6f6
branches:  trunk
changeset: 778950:da1b4a69e6f6
user:      wiz <wiz%NetBSD.org@localhost>
date:      Sun Apr 22 10:19:00 2012 +0000

description:
Sort sections, sort SEE ALSO.

diffstat:

 share/man/man5/passwd.5 |  38 +++++++++++++++++++-------------------
 1 files changed, 19 insertions(+), 19 deletions(-)

diffs (59 lines):

diff -r 892d187cd7e2 -r da1b4a69e6f6 share/man/man5/passwd.5
--- a/share/man/man5/passwd.5   Sun Apr 22 10:13:52 2012 +0000
+++ b/share/man/man5/passwd.5   Sun Apr 22 10:19:00 2012 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: passwd.5,v 1.29 2012/04/21 12:27:28 roy Exp $
+.\"    $NetBSD: passwd.5,v 1.30 2012/04/22 10:19:00 wiz Exp $
 .\"
 .\" Copyright (c) 1988, 1991, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -361,6 +361,24 @@
 On some systems, the
 .Em passwd
 field may also be overridden.
+.Sh COMPATIBILITY
+The password file format has changed since
+.Bx 4.3 .
+The following awk script can be used to convert your old-style password
+file into a new style password file.
+The additional fields
+.Dq class ,
+.Dq change
+and
+.Dq expire
+are added, but are turned off by default.
+To set them,
+use the current day in seconds from the epoch + whatever number of seconds
+of offset you want.
+.Bd -literal -offset indent
+BEGIN { FS = ":"}
+{ print $1 ":" $2 ":" $3 ":" $4 "::0:0:" $5 ":" $6 ":" $7 }
+.Ed
 .Sh SEE ALSO
 .Xr chpass 1 ,
 .Xr login 1 ,
@@ -379,24 +397,6 @@
 .Pp
 .%T "Managing NFS and NIS"
 (O'Reilly \*[Am] Associates)
-.Sh COMPATIBILITY
-The password file format has changed since
-.Bx 4.3 .
-The following awk script can be used to convert your old-style password
-file into a new style password file.
-The additional fields
-.Dq class ,
-.Dq change
-and
-.Dq expire
-are added, but are turned off by default.
-To set them,
-use the current day in seconds from the epoch + whatever number of seconds
-of offset you want.
-.Bd -literal -offset indent
-BEGIN { FS = ":"}
-{ print $1 ":" $2 ":" $3 ":" $4 "::0:0:" $5 ":" $6 ":" $7 }
-.Ed
 .Sh HISTORY
 A
 .Nm



Home | Main Index | Thread Index | Old Index