summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-08-28 00:22:10 +0000
committerpeter <peter@FreeBSD.org>1999-08-28 00:22:10 +0000
commit76f0c923fe4b2a1616453876611dc76b4f6b5355 (patch)
tree11c3e263d5f0f3acaf3b23fd63177baa9d93b750 /usr.sbin
parentc148814ac642685a549ea821e649cd359879c935 (diff)
downloadFreeBSD-src-76f0c923fe4b2a1616453876611dc76b4f6b5355.zip
FreeBSD-src-76f0c923fe4b2a1616453876611dc76b4f6b5355.tar.gz
$Id$ -> $FreeBSD$
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/mount_portalfs/Makefile2
-rw-r--r--usr.sbin/mount_portalfs/activate.c2
-rw-r--r--usr.sbin/mount_portalfs/conf.c2
-rw-r--r--usr.sbin/mount_portalfs/mount_portalfs.82
-rw-r--r--usr.sbin/mount_portalfs/mount_portalfs.c2
-rw-r--r--usr.sbin/mount_portalfs/pathnames.h2
-rw-r--r--usr.sbin/mount_portalfs/portal.conf2
-rw-r--r--usr.sbin/mount_portalfs/portald.h2
-rw-r--r--usr.sbin/mount_portalfs/pt_conf.c2
-rw-r--r--usr.sbin/mount_portalfs/pt_exec.c2
-rw-r--r--usr.sbin/mount_portalfs/pt_file.c2
-rw-r--r--usr.sbin/mount_portalfs/pt_tcp.c2
-rw-r--r--usr.sbin/mountd/Makefile2
-rw-r--r--usr.sbin/mountd/exports.52
-rw-r--r--usr.sbin/mountd/mountd.82
-rw-r--r--usr.sbin/mountd/mountd.c2
-rw-r--r--usr.sbin/mountd/netgroup.52
-rw-r--r--usr.sbin/nfsd/nfsd.82
-rw-r--r--usr.sbin/nfsd/nfsd.c2
-rw-r--r--usr.sbin/nologin/nologin.52
-rw-r--r--usr.sbin/nologin/nologin.82
-rw-r--r--usr.sbin/nologin/nologin.sh2
22 files changed, 22 insertions, 22 deletions
diff --git a/usr.sbin/mount_portalfs/Makefile b/usr.sbin/mount_portalfs/Makefile
index 7734df4..23a5bd7 100644
--- a/usr.sbin/mount_portalfs/Makefile
+++ b/usr.sbin/mount_portalfs/Makefile
@@ -1,5 +1,5 @@
# From: @(#)Makefile 8.3 (Berkeley) 3/27/94
-# $Id: Makefile,v 1.8 1998/01/20 10:40:04 bde Exp $
+# $FreeBSD$
PROG= mount_portal
SRCS= mount_portal.c activate.c conf.c getmntopts.c pt_conf.c \
diff --git a/usr.sbin/mount_portalfs/activate.c b/usr.sbin/mount_portalfs/activate.c
index 6eb0c58..5646498 100644
--- a/usr.sbin/mount_portalfs/activate.c
+++ b/usr.sbin/mount_portalfs/activate.c
@@ -39,7 +39,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: activate.c,v 1.5 1998/07/06 07:19:23 charnier Exp $";
+ "$FreeBSD$";
#endif /* not lint */
#include <errno.h>
diff --git a/usr.sbin/mount_portalfs/conf.c b/usr.sbin/mount_portalfs/conf.c
index 373e62d..d5833e4 100644
--- a/usr.sbin/mount_portalfs/conf.c
+++ b/usr.sbin/mount_portalfs/conf.c
@@ -39,7 +39,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: conf.c,v 1.6 1998/07/06 07:19:24 charnier Exp $";
+ "$FreeBSD$";
#endif /* not lint */
#include <errno.h>
diff --git a/usr.sbin/mount_portalfs/mount_portalfs.8 b/usr.sbin/mount_portalfs/mount_portalfs.8
index 6818339..afaa3d7 100644
--- a/usr.sbin/mount_portalfs/mount_portalfs.8
+++ b/usr.sbin/mount_portalfs/mount_portalfs.8
@@ -35,7 +35,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)mount_portal.8 8.3 (Berkeley) 3/27/94
-.\" $Id: mount_portal.8,v 1.5 1999/08/06 04:19:27 dwhite Exp $
+.\" $FreeBSD$
.\"
.Dd March 27, 1994
.Dt MOUNT_PORTAL 8
diff --git a/usr.sbin/mount_portalfs/mount_portalfs.c b/usr.sbin/mount_portalfs/mount_portalfs.c
index 6de71ea..c0b1852 100644
--- a/usr.sbin/mount_portalfs/mount_portalfs.c
+++ b/usr.sbin/mount_portalfs/mount_portalfs.c
@@ -45,7 +45,7 @@ char copyright[] =
static char sccsid[] = "@(#)mount_portal.c 8.6 (Berkeley) 4/26/95";
#endif
static const char rcsid[] =
- "$Id: mount_portal.c,v 1.13 1998/07/06 07:19:25 charnier Exp $";
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.sbin/mount_portalfs/pathnames.h b/usr.sbin/mount_portalfs/pathnames.h
index 3203b00..6b55770 100644
--- a/usr.sbin/mount_portalfs/pathnames.h
+++ b/usr.sbin/mount_portalfs/pathnames.h
@@ -36,7 +36,7 @@
*
* @(#)pathnames.h 8.1 (Berkeley) 6/5/93
*
- * $Id$
+ * $FreeBSD$
*/
#include <paths.h>
diff --git a/usr.sbin/mount_portalfs/portal.conf b/usr.sbin/mount_portalfs/portal.conf
index 3a4ddf0a..53a07a9 100644
--- a/usr.sbin/mount_portalfs/portal.conf
+++ b/usr.sbin/mount_portalfs/portal.conf
@@ -1,5 +1,5 @@
# @(#)portal.conf 8.1 (Berkeley) 6/5/93
-# $Id$
+# $FreeBSD$
tcplisten/ tcplisten tcplisten/
tcp/ tcp tcp/
fs/ file fs/
diff --git a/usr.sbin/mount_portalfs/portald.h b/usr.sbin/mount_portalfs/portald.h
index f01e8a8..4131834 100644
--- a/usr.sbin/mount_portalfs/portald.h
+++ b/usr.sbin/mount_portalfs/portald.h
@@ -36,7 +36,7 @@
*
* @(#)portald.h 8.1 (Berkeley) 6/5/93
*
- * $Id: portald.h,v 1.3 1997/02/22 14:32:55 peter Exp $
+ * $FreeBSD$
*/
#include <sys/cdefs.h>
diff --git a/usr.sbin/mount_portalfs/pt_conf.c b/usr.sbin/mount_portalfs/pt_conf.c
index 11088ea..f158a73 100644
--- a/usr.sbin/mount_portalfs/pt_conf.c
+++ b/usr.sbin/mount_portalfs/pt_conf.c
@@ -39,7 +39,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: pt_conf.c,v 1.4 1998/07/06 07:19:25 charnier Exp $";
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>
diff --git a/usr.sbin/mount_portalfs/pt_exec.c b/usr.sbin/mount_portalfs/pt_exec.c
index 6ee326d..359c78e 100644
--- a/usr.sbin/mount_portalfs/pt_exec.c
+++ b/usr.sbin/mount_portalfs/pt_exec.c
@@ -39,7 +39,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id$";
+ "$FreeBSD$";
#endif /* not lint */
#include <errno.h>
diff --git a/usr.sbin/mount_portalfs/pt_file.c b/usr.sbin/mount_portalfs/pt_file.c
index 32207f3..f22ebd7 100644
--- a/usr.sbin/mount_portalfs/pt_file.c
+++ b/usr.sbin/mount_portalfs/pt_file.c
@@ -39,7 +39,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id$";
+ "$FreeBSD$";
#endif /* not lint */
#include <errno.h>
diff --git a/usr.sbin/mount_portalfs/pt_tcp.c b/usr.sbin/mount_portalfs/pt_tcp.c
index 954388e..4905616 100644
--- a/usr.sbin/mount_portalfs/pt_tcp.c
+++ b/usr.sbin/mount_portalfs/pt_tcp.c
@@ -39,7 +39,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: pt_tcp.c,v 1.7 1998/07/06 07:19:27 charnier Exp $";
+ "$FreeBSD$";
#endif /* not lint */
#include <errno.h>
diff --git a/usr.sbin/mountd/Makefile b/usr.sbin/mountd/Makefile
index 6a2097a..0312e9b 100644
--- a/usr.sbin/mountd/Makefile
+++ b/usr.sbin/mountd/Makefile
@@ -1,5 +1,5 @@
# From: @(#)Makefile 8.3 (Berkeley) 1/25/94
-# $Id: Makefile,v 1.7 1997/03/11 12:43:42 peter Exp $
+# $FreeBSD$
PROG= mountd
CFLAGS+=-DNFS -DMFS -DCD9660 -DMSDOSFS
diff --git a/usr.sbin/mountd/exports.5 b/usr.sbin/mountd/exports.5
index 9239440..9a148de 100644
--- a/usr.sbin/mountd/exports.5
+++ b/usr.sbin/mountd/exports.5
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)exports.5 8.3 (Berkeley) 3/29/95
-.\" $Id: exports.5,v 1.7 1998/07/15 06:21:37 charnier Exp $
+.\" $FreeBSD$
.\"
.Dd March 29, 1995
.Dt EXPORTS 5
diff --git a/usr.sbin/mountd/mountd.8 b/usr.sbin/mountd/mountd.8
index 43a4cd3..98397f5 100644
--- a/usr.sbin/mountd/mountd.8
+++ b/usr.sbin/mountd/mountd.8
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)mountd.8 8.4 (Berkeley) 4/28/95
-.\" $Id: mountd.8,v 1.14 1998/10/15 13:37:35 mckay Exp $
+.\" $FreeBSD$
.\"
.Dd April 28, 1995
.Dt MOUNTD 8
diff --git a/usr.sbin/mountd/mountd.c b/usr.sbin/mountd/mountd.c
index 170655b..cc5e572 100644
--- a/usr.sbin/mountd/mountd.c
+++ b/usr.sbin/mountd/mountd.c
@@ -45,7 +45,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)mountd.c 8.15 (Berkeley) 5/1/95";
#endif
static const char rcsid[] =
- "$Id: mountd.c,v 1.34 1998/12/29 09:38:49 dfr Exp $";
+ "$FreeBSD$";
#endif /*not lint*/
#include <sys/param.h>
diff --git a/usr.sbin/mountd/netgroup.5 b/usr.sbin/mountd/netgroup.5
index f57aa29..8e2bf44 100644
--- a/usr.sbin/mountd/netgroup.5
+++ b/usr.sbin/mountd/netgroup.5
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)netgroup.5 8.2 (Berkeley) 12/11/93
-.\" $Id$
+.\" $FreeBSD$
.\"
.Dd December 11, 1993
.Dt NETGROUP 5
diff --git a/usr.sbin/nfsd/nfsd.8 b/usr.sbin/nfsd/nfsd.8
index f82cfe5..e3d3e1c 100644
--- a/usr.sbin/nfsd/nfsd.8
+++ b/usr.sbin/nfsd/nfsd.8
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)nfsd.8 8.4 (Berkeley) 3/29/95
-.\" $Id$
+.\" $FreeBSD$
.\"
.Dd March 29, 1995
.Dt NFSD 8
diff --git a/usr.sbin/nfsd/nfsd.c b/usr.sbin/nfsd/nfsd.c
index e1a1ffe..ca7ecef 100644
--- a/usr.sbin/nfsd/nfsd.c
+++ b/usr.sbin/nfsd/nfsd.c
@@ -45,7 +45,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)nfsd.c 8.9 (Berkeley) 3/29/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$FreeBSD$";
#endif not lint
#include <sys/param.h>
diff --git a/usr.sbin/nologin/nologin.5 b/usr.sbin/nologin/nologin.5
index 37d311a..8ce22a2 100644
--- a/usr.sbin/nologin/nologin.5
+++ b/usr.sbin/nologin/nologin.5
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)nologin.8 8.1 (Berkeley) 6/19/93
-.\" $Id: nologin.5,v 1.5 1999/01/12 14:09:23 asami Exp $
+.\" $FreeBSD$
.\"
.Dd June 19, 1993
.Dt NOLOGIN 5
diff --git a/usr.sbin/nologin/nologin.8 b/usr.sbin/nologin/nologin.8
index 4e7bf61..d5f4cb7 100644
--- a/usr.sbin/nologin/nologin.8
+++ b/usr.sbin/nologin/nologin.8
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)nologin.8 8.1 (Berkeley) 6/19/93
-.\" $Id: nologin.8,v 1.2 1998/07/15 06:37:07 charnier Exp $
+.\" $FreeBSD$
.\"
.Dd June 19, 1993
.Dt NOLOGIN 8
diff --git a/usr.sbin/nologin/nologin.sh b/usr.sbin/nologin/nologin.sh
index 346836f..52279c1 100644
--- a/usr.sbin/nologin/nologin.sh
+++ b/usr.sbin/nologin/nologin.sh
@@ -32,7 +32,7 @@
# SUCH DAMAGE.
#
# @(#)nologin.sh 8.1 (Berkeley) 6/5/93
-# $Id$
+# $FreeBSD$
#
echo 'This account is currently not available.'
OpenPOWER on IntegriCloud