diff options
author | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2009-05-24 10:45:22 +0000 |
---|---|---|
committer | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2009-05-24 10:45:22 +0000 |
commit | 65dfddb48cf91b0864abb5748e92e10733a4ab24 (patch) | |
tree | 6e4b044625096049ca6fb1b7158c9227443bf2f1 /etc | |
parent | ee90840ece3708f0ba1cb5d7454abfcc1758ec20 (diff) |
Install root's crontab with gid "crontab" to be consistent with what
crontab(1) does.
ok miod@
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index fb15ade77ef..72bd66858e7 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.277 2009/05/15 16:26:53 deraadt Exp $ +# $OpenBSD: Makefile,v 1.278 2009/05/24 10:45:21 ajacoutot Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= Canada/Mountain @@ -74,7 +74,7 @@ distribution-etc-root-var: distrib-dirs chmod 644 ${DESTDIR}/etc/login.conf ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 ${BIN2} ${DESTDIR}/etc ${INSTALL} -c -o root -g wheel -m 600 hosts.equiv ${DESTDIR}/etc - ${INSTALL} -c -o root -g wheel -m 600 crontab ${DESTDIR}/var/cron/tabs/root + ${INSTALL} -c -o root -g crontab -m 600 crontab ${DESTDIR}/var/cron/tabs/root ${INSTALL} -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc pwd_mkdb -p -d ${DESTDIR}/etc /etc/master.passwd ${INSTALL} -c -o root -g wheel -m 600 bgpd.conf ${DESTDIR}/etc |