diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-07-15 19:13:30 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-07-15 19:13:30 +0000 |
commit | ebcbb2b2d2b68ee6347b5018b9212bbe5fccd946 (patch) | |
tree | e71531558e9d84cf8ad053a7652ab38b58160e8d /usr.bin/at/Makefile | |
parent | 55ae52781373a832341554a38aebe998ada66dcc (diff) |
Move atrun(8) functionality into cron(8) proper. This fixes the
long-standing annoyance that atrun's granularity is 10 minutes.
Most at jobs run with a 1 minute granularity. Jobs submitted via
"at now" or "batch" will run immediately. Includes a rewritten
cron(8) man page. at(1) will be integrated more closely into
cron at a future date.
Upgrading notes:
the atrun job in root's crontab should be removed.
the /var/at/spool directory is no longer used
Diffstat (limited to 'usr.bin/at/Makefile')
-rw-r--r-- | usr.bin/at/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/at/Makefile b/usr.bin/at/Makefile index 18fbe101830..f5d9c51e621 100644 --- a/usr.bin/at/Makefile +++ b/usr.bin/at/Makefile @@ -1,7 +1,8 @@ -# $OpenBSD: Makefile,v 1.6 2002/05/14 18:05:39 millert Exp $ +# $OpenBSD: Makefile,v 1.7 2002/07/15 19:13:29 millert Exp $ PROG= at SRCS= at.c panic.c parsetime.c perm.c +CFLAGS+=-I${.CURDIR}/../../usr.sbin/cron MAN= at.1 atrm.1 atq.1 LINKS= ${BINDIR}/at ${BINDIR}/atq \ ${BINDIR}/at ${BINDIR}/atrm \ |