diff options
author | ache <ache@FreeBSD.org> | 1997-11-02 17:22:20 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-11-02 17:22:20 +0000 |
commit | 0402968a2b6c49a5b82b706dac505c3779bafe25 (patch) | |
tree | e1c75675fd764dbd3ee0a0c6ede362981d7bce12 /usr.sbin/cron/crontab/Makefile | |
parent | cd43239919002f0f18ab8b9197cd3d2a1141b109 (diff) | |
download | FreeBSD-src-0402968a2b6c49a5b82b706dac505c3779bafe25.zip FreeBSD-src-0402968a2b6c49a5b82b706dac505c3779bafe25.tar.gz |
Log run-time parsing errors now
Use getpwnam before getpwuid since two users with same uids can exists
(affects new login classes code only)
The same fixes as in inetd: by default run `system crontab things' with
daemon login class now, not restrict them to user class breaking
compatibility with old way (so-called nobody limits problem)
Implement user[:group][/login-class] syntax in system crontab
for more flexible control (the same as in inetd)
Diffstat (limited to 'usr.sbin/cron/crontab/Makefile')
-rw-r--r-- | usr.sbin/cron/crontab/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr.sbin/cron/crontab/Makefile b/usr.sbin/cron/crontab/Makefile index cce341d..1c9a486 100644 --- a/usr.sbin/cron/crontab/Makefile +++ b/usr.sbin/cron/crontab/Makefile @@ -16,6 +16,9 @@ DPADD+= ${.CURDIR}/../lib/libcron.a LDADD+= -lcron +LDADD+= -lutil +DPADD+= ${LIBUTIL} + BINOWN= root BINMODE=4555 INSTALLFLAGS=-fschg |