diff options
author | 2009-05-24 10:45:21 +0000 | |
---|---|---|
committer | 2009-05-24 10:45:21 +0000 | |
commit | a1c459ed0037173c9984dd268a41fd697d3a46a6 (patch) | |
tree | d5c857c8a867205e0afb276ec7ce9562a40d8085 | |
parent | regen (diff) | |
download | wireguard-openbsd-a1c459ed0037173c9984dd268a41fd697d3a46a6.tar.xz wireguard-openbsd-a1c459ed0037173c9984dd268a41fd697d3a46a6.zip |
Install root's crontab with gid "crontab" to be consistent with what
crontab(1) does.
ok miod@
-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 |