diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-01-02 23:14:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-01-02 23:14:14 +0000 |
commit | 8dd8e1d415751c3d61b0dd222f39cd30d736efea (patch) | |
tree | 040deeea5a25b204fcd1bde07df5257fcaecd020 | |
parent | 1ef5a56cd54adf2e4c6ab07f28eb3eb225185dee (diff) |
better perms for ppp stuff
-rw-r--r-- | etc/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/etc/Makefile b/etc/Makefile index 442ced58eb8..d03dc30d62f 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.31 1996/12/19 02:38:08 millert Exp $ +# $OpenBSD: Makefile,v 1.32 1997/01/02 23:14:13 deraadt Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= US/Pacific @@ -80,13 +80,17 @@ distribution-etc-root-var: distrib-dirs install -c -o root -g wheel -m 444 4.4BSD.dist \ ${DESTDIR}/etc/mtree) (cd ppp; \ - install -c -o root -g wheel -m 644 chap-secrets \ + install -c -o root -g wheel -m 600 chap-secrets \ ${DESTDIR}/etc/ppp; \ - install -c -o root -g wheel -m 644 options \ + install -c -o root -g wheel -m 600 options \ ${DESTDIR}/etc/ppp; \ - install -c -o root -g wheel -m 644 options.leaf \ + install -c -o root -g wheel -m 600 options.leaf \ ${DESTDIR}/etc/ppp; \ - install -c -o root -g wheel -m 644 pap-secrets \ + install -c -o root -g wheel -m 600 options.sample \ + ${DESTDIR}/etc/ppp; \ + install -c -o root -g wheel -m 600 chatscript.sample \ + ${DESTDIR}/etc/ppp; \ + install -c -o root -g wheel -m 600 pap-secrets \ ${DESTDIR}/etc/ppp) cd namedb; install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \ ${DESTDIR}/etc/namedb |