diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-05-11 18:41:21 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-05-11 18:41:21 +0000 |
commit | 403f2d423a636d5975a0cfad10f57ad27633a06d (patch) | |
tree | 4b379cd0eae98482048b3972af17fd56a9749e21 /etc/Makefile | |
parent | 5102fea158f4a4887eada3c42c62d6af4f2a0151 (diff) |
at(1) is no longer setuid root, it is setgid crontab.
This means that /var/at/at.{allow,deny} must be readable by group
crontab, /var/at/jobs is mode 01770, and /var/at/.SEQ is mode 0660.
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index 61b70125c61..61ddce073a0 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.157 2002/04/28 14:56:38 miod Exp $ +# $OpenBSD: Makefile,v 1.158 2002/05/11 18:41:19 millert Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= US/Pacific @@ -185,8 +185,10 @@ distribution-etc-root-var: distrib-dirs ${DESTDIR}/etc/dumpdates ${INSTALL} -c -o ${BINOWN} -g wheel -m 600 /dev/null \ ${DESTDIR}/etc/skeykeys - ${INSTALL} -c -o root -g wheel -m 600 /dev/null \ + ${INSTALL} -c -o root -g crontab -m 660 /dev/null \ ${DESTDIR}/var/at/at.deny + ${INSTALL} -c -o root -g crontab -m 660 /dev/null \ + ${DESTDIR}/var/at/.SEQ ${INSTALL} -c -o root -g wheel -m 600 /dev/null \ ${DESTDIR}/var/cron/log ${INSTALL} -c -o root -g wheel -m 444 /dev/null \ |