diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-10 21:08:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-10 21:08:45 +0000 |
commit | 69362139aace4ed180a86164b0856eb93cd12144 (patch) | |
tree | 4820fffb343fb29805d81f5e0e9eafab7ed7608c /etc/Makefile | |
parent | 6447d068bb6d4dacc4238274b600120e3afe10f5 (diff) |
Move /var/log/sendmail.st creation to etc/Makefile where it belongs;
noticed by grange@
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/Makefile b/etc/Makefile index c85b1877462..da9bc53bb3a 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.179 2003/03/08 19:03:44 beck Exp $ +# $OpenBSD: Makefile,v 1.180 2003/03/10 21:08:44 millert Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= US/Pacific @@ -217,6 +217,8 @@ distribution-etc-root-var: distrib-dirs ${DESTDIR}/var/log/messages ${INSTALL} -c -o ${BINOWN} -g wheel -m 600 /dev/null \ ${DESTDIR}/var/log/secure + ${INSTALL} -c -o ${BINOWN} -g wheel -m 664 /dev/null \ + ${DESTDIR}/var/log/sendmail.st ${INSTALL} -c -o ${BINOWN} -g wheel -m 644 /dev/null \ ${DESTDIR}/var/log/wtmp ${INSTALL} -c -o ${BINOWN} -g wheel -m 640 /dev/null \ |