RCSid police
This commit is contained in:
parent
cb9a3a55fe
commit
2b8bc7438f
|
@ -1,8 +1,8 @@
|
|||
# $Id: Makefile,v 1.5 1994/12/22 11:33:57 cgd Exp $
|
||||
# $NetBSD: Makefile,v 1.6 1997/03/13 06:19:07 mikel Exp $
|
||||
|
||||
PROG= cron
|
||||
SRCS= cron.c database.c user.c entry.c job.c do_command.c \
|
||||
misc.c env.c popen.c
|
||||
SRCS= cron.c database.c do_command.c entry.c env.c job.c \
|
||||
misc.c popen.c user.c
|
||||
CFLAGS+=-I${.CURDIR}
|
||||
MAN= cron.8
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: compat.c,v 1.2 1997/03/13 06:19:08 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,8 @@
|
|||
*/
|
||||
|
||||
#if !defined(lint) && !defined(LINT)
|
||||
static char rcsid[] = "$Id: compat.c,v 1.1.1.3 1994/01/20 02:47:03 jtc Exp $";
|
||||
/*static char rcsid[] = "Id: compat.c,v 1.6 1994/01/15 20:43:43 vixie Exp";*/
|
||||
static char rcsid[] = "$NetBSD: compat.c,v 1.2 1997/03/13 06:19:08 mikel Exp $";
|
||||
#endif
|
||||
|
||||
/* vix 30dec93 [broke this out of misc.c - see RCS log for history]
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: compat.h,v 1.2 1997/03/13 06:19:09 mikel Exp $ */
|
||||
|
||||
/* Copyright 1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,7 @@
|
|||
*/
|
||||
|
||||
/*
|
||||
* $Id: compat.h,v 1.1.1.3 1994/01/20 02:47:05 jtc Exp $
|
||||
* Id: compat.h,v 1.8 1994/01/15 20:43:43 vixie Exp
|
||||
*/
|
||||
|
||||
#ifndef __P
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: config.h,v 1.4 1997/03/13 06:19:10 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -17,7 +19,7 @@
|
|||
|
||||
/* config.h - configurables for Vixie Cron
|
||||
*
|
||||
* $Id: config.h,v 1.3 1995/04/14 19:49:32 mycroft Exp $
|
||||
* Id: config.h,v 2.6 1994/01/15 20:43:43 vixie Exp
|
||||
*/
|
||||
|
||||
#if !defined(_PATH_SENDMAIL)
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
.\" $NetBSD: cron.8,v 1.2 1997/03/13 06:19:10 mikel Exp $
|
||||
.\"
|
||||
.\"/* Copyright 1988,1990,1993 by Paul Vixie
|
||||
.\" * All rights reserved
|
||||
.\" *
|
||||
|
@ -15,7 +17,7 @@
|
|||
.\" * Paul Vixie <paul@vix.com> uunet!decwrl!vixie!paul
|
||||
.\" */
|
||||
.\"
|
||||
.\" $Id: cron.8,v 1.1.1.1 1994/01/05 20:40:13 jtc Exp $
|
||||
.\" Id: cron.8,v 2.2 1993/12/28 08:34:43 vixie Exp
|
||||
.\"
|
||||
.TH CRON 8 "20 December 1993"
|
||||
.UC 4
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: cron.c,v 1.4 1997/03/13 06:19:11 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,8 @@
|
|||
*/
|
||||
|
||||
#if !defined(lint) && !defined(LINT)
|
||||
static char rcsid[] = "$Id: cron.c,v 1.3 1996/12/14 12:06:48 fvdl Exp $";
|
||||
/*static char rcsid[] = "Id: cron.c,v 2.11 1994/01/15 20:43:43 vixie Exp";*/
|
||||
static char rcsid[] = "$NetBSD: cron.c,v 1.4 1997/03/13 06:19:11 mikel Exp $";
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: cron.h,v 1.2 1997/03/13 06:19:12 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -17,7 +19,7 @@
|
|||
|
||||
/* cron.h - header for vixie's cron
|
||||
*
|
||||
* $Id: cron.h,v 1.1.1.4 1994/01/20 02:47:12 jtc Exp $
|
||||
* Id: cron.h,v 2.10 1994/01/15 20:43:43 vixie Exp
|
||||
*
|
||||
* vix 14nov88 [rest of log is in RCS]
|
||||
* vix 14jan87 [0 or 7 can be sunday; thanks, mwm@berkeley]
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
.\" $NetBSD: crontab.1,v 1.3 1997/03/13 06:19:13 mikel Exp $
|
||||
.\"
|
||||
.\"/* Copyright 1988,1990,1993 by Paul Vixie
|
||||
.\" * All rights reserved
|
||||
.\" *
|
||||
|
@ -15,7 +17,7 @@
|
|||
.\" * Paul Vixie <paul@vix.com> uunet!decwrl!vixie!paul
|
||||
.\" */
|
||||
.\"
|
||||
.\" $Id: crontab.1,v 1.2 1994/03/30 01:46:43 jtc Exp $
|
||||
.\" Id: crontab.1,v 2.4 1993/12/31 10:47:33 vixie Exp
|
||||
.\"
|
||||
.TH CRONTAB 1 "29 December 1993"
|
||||
.UC 4
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
.\" $NetBSD: crontab.5,v 1.2 1997/03/13 06:19:13 mikel Exp $
|
||||
.\"
|
||||
.\"/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
.\" * All rights reserved
|
||||
.\" *
|
||||
|
@ -15,7 +17,7 @@
|
|||
.\" * Paul Vixie <paul@vix.com> uunet!decwrl!vixie!paul
|
||||
.\" */
|
||||
.\"
|
||||
.\" $Id: crontab.5,v 1.1.1.5 1994/01/26 19:09:33 jtc Exp $
|
||||
.\" Id: crontab.5,v 2.4 1994/01/15 20:43:43 vixie Exp
|
||||
.\"
|
||||
.TH CRONTAB 5 "24 January 1994"
|
||||
.UC 4
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: crontab.c,v 1.4 1997/03/13 06:19:14 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,8 @@
|
|||
*/
|
||||
|
||||
#if !defined(lint) && !defined(LINT)
|
||||
static char rcsid[] = "$Id: crontab.c,v 1.3 1996/12/16 22:30:43 thorpej Exp $";
|
||||
/*static char rcsid[] = "Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp";*/
|
||||
static char rcsid[] = "$NetBSD: crontab.c,v 1.4 1997/03/13 06:19:14 mikel Exp $";
|
||||
#endif
|
||||
|
||||
/* crontab - install and manage per-user crontab files
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: database.c,v 1.3 1997/03/13 06:19:15 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,8 @@
|
|||
*/
|
||||
|
||||
#if !defined(lint) && !defined(LINT)
|
||||
static char rcsid[] = "$Id: database.c,v 1.2 1996/12/16 22:30:44 thorpej Exp $";
|
||||
/*static char rcsid[] = "Id: database.c,v 2.8 1994/01/15 20:43:43 vixie Exp";*/
|
||||
static char rcsid[] = "$NetBSD: database.c,v 1.3 1997/03/13 06:19:15 mikel Exp $";
|
||||
#endif
|
||||
|
||||
/* vix 26jan87 [RCS has the log]
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: do_command.c,v 1.4 1997/03/13 06:19:16 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,8 @@
|
|||
*/
|
||||
|
||||
#if !defined(lint) && !defined(LINT)
|
||||
static char rcsid[] = "$Id: do_command.c,v 1.3 1996/12/16 22:30:45 thorpej Exp $";
|
||||
/*static char rcsid[] = "Id: do_command.c,v 2.12 1994/01/15 20:43:43 vixie Exp ";*/
|
||||
static char rcsid[] = "$NetBSD: do_command.c,v 1.4 1997/03/13 06:19:16 mikel Exp $";
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: entry.c,v 1.3 1997/03/13 06:19:16 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,8 @@
|
|||
*/
|
||||
|
||||
#if !defined(lint) && !defined(LINT)
|
||||
static char rcsid[] = "$Id: entry.c,v 1.2 1996/12/16 22:30:46 thorpej Exp $";
|
||||
/*static char rcsid[] = "Id: entry.c,v 2.12 1994/01/17 03:20:37 vixie Exp";*/
|
||||
static char rcsid[] = "$NetBSD: entry.c,v 1.3 1997/03/13 06:19:16 mikel Exp $";
|
||||
#endif
|
||||
|
||||
/* vix 26jan87 [RCS'd; rest of log is in RCS file]
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: env.c,v 1.4 1997/03/13 06:19:17 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,8 @@
|
|||
*/
|
||||
|
||||
#if !defined(lint) && !defined(LINT)
|
||||
static char rcsid[] = "$Id: env.c,v 1.3 1997/03/06 23:37:04 thorpej Exp $";
|
||||
/*static char rcsid[] = "Id: env.c,v 2.7 1994/01/26 02:25:50 vixie Exp";*/
|
||||
static char rcsid[] = "$NetBSD: env.c,v 1.4 1997/03/13 06:19:17 mikel Exp $";
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: externs.h,v 1.2 1997/03/13 06:19:18 mikel Exp $ */
|
||||
|
||||
/* Copyright 1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: job.c,v 1.2 1997/03/13 06:19:19 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,8 @@
|
|||
*/
|
||||
|
||||
#if !defined(lint) && !defined(LINT)
|
||||
static char rcsid[] = "$Id: job.c,v 1.1.1.3 1994/01/20 02:47:28 jtc Exp $";
|
||||
/*static char rcsid[] = "Id: job.c,v 1.6 1994/01/15 20:43:43 vixie Exp";*/
|
||||
static char rcsid[] = "$NetBSD: job.c,v 1.2 1997/03/13 06:19:19 mikel Exp $";
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: misc.c,v 1.4 1997/03/13 06:19:19 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,8 @@
|
|||
*/
|
||||
|
||||
#if !defined(lint) && !defined(LINT)
|
||||
static char rcsid[] = "$Id: misc.c,v 1.3 1996/12/16 22:30:47 thorpej Exp $";
|
||||
/*static char rcsid[] = "Id: misc.c,v 2.9 1994/01/15 20:43:43 vixie Exp";*/
|
||||
static char rcsid[] = "$NetBSD: misc.c,v 1.4 1997/03/13 06:19:19 mikel Exp $";
|
||||
#endif
|
||||
|
||||
/* vix 26jan87 [RCS has the rest of the log]
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: pathnames.h,v 1.3 1997/03/13 06:19:20 mikel Exp $ */
|
||||
|
||||
/* Copyright 1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,7 @@
|
|||
*/
|
||||
|
||||
/*
|
||||
* $Id: pathnames.h,v 1.2 1994/01/13 21:59:27 jtc Exp $
|
||||
* Id: pathnames.h,v 1.3 1994/01/15 20:43:43 vixie Exp
|
||||
*/
|
||||
|
||||
#if (defined(BSD)) && (BSD >= 199103) || defined(__linux) || defined(AIX)
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: popen.c,v 1.3 1997/03/13 06:19:21 mikel Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
|
@ -24,7 +26,8 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static char rcsid[] = "$Id: popen.c,v 1.2 1995/04/14 19:49:35 mycroft Exp $";
|
||||
/*static char rcsid[] = "Id: popen.c,v 1.5 1994/01/15 20:43:43 vixie Exp";*/
|
||||
static char rcsid[] = "$NetBSD: popen.c,v 1.3 1997/03/13 06:19:21 mikel Exp $";
|
||||
static char sccsid[] = "@(#)popen.c 5.7 (Berkeley) 2/14/89";
|
||||
#endif /* not lint */
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
/* $NetBSD: user.c,v 1.2 1997/03/13 06:19:22 mikel Exp $ */
|
||||
|
||||
/* Copyright 1988,1990,1993,1994 by Paul Vixie
|
||||
* All rights reserved
|
||||
*
|
||||
|
@ -16,7 +18,8 @@
|
|||
*/
|
||||
|
||||
#if !defined(lint) && !defined(LINT)
|
||||
static char rcsid[] = "$Id: user.c,v 1.1.1.4 1994/01/20 02:47:34 jtc Exp $";
|
||||
/*static char rcsid[] = "Id: user.c,v 2.8 1994/01/15 20:43:43 vixie Exp";*/
|
||||
static char rcsid[] = "$NetBSD: user.c,v 1.2 1997/03/13 06:19:22 mikel Exp $";
|
||||
#endif
|
||||
|
||||
/* vix 26jan87 [log is in RCS file]
|
||||
|
|
Loading…
Reference in New Issue