diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-05-05 21:52:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-05-05 21:52:11 +0000 |
commit | bf4750776a8540801578f2e0efc879efb04de3eb (patch) | |
tree | 5321e785479eeb4a9e144c1d17399d2ea1fdedc7 /etc/Makefile | |
parent | 74bbdbe7d2f57ee7f938a9954f64a16965fbcf2e (diff) |
split sysctl.conf into MD and MI parts
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index 34ba8f8c1a5..a1d79676ce9 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.85 1998/04/07 23:24:06 ryker Exp $ +# $OpenBSD: Makefile,v 1.86 1998/05/05 21:51:51 deraadt Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= US/Pacific @@ -18,7 +18,7 @@ BIN1= aliases bootptab changelist ccd.conf csh.cshrc csh.login csh.logout \ locate.rc man.conf monthly motd mrouted.conf myname ipnat.rules \ netstart networks newsyslog.conf passwd.conf phones printcap \ protocols rbootd.conf rc rc.conf rc.local rc.securelevel remote rpc \ - security services shells sysctl.conf syslog.conf weekly \ + security services shells syslog.conf weekly \ etc.${MACHINE}/disktab # -rw-rw-r-- @@ -55,6 +55,10 @@ distribution-etc-root-var: distrib-dirs chown ${BINOWN} ${DESTDIR}/etc/ttys && \ chgrp ${BINGRP} ${DESTDIR}/etc/ttys && \ chmod 644 ${DESTDIR}/etc/ttys + cat sysctl.conf etc.${MACHINE}/sysctl.conf > ${DESTDIR}/etc/sysctl.conf && \ + chown ${BINOWN} ${DESTDIR}/etc/sysctl.conf && \ + chgrp ${BINGRP} ${DESTDIR}/etc/sysctl.conf && \ + chmod 644 ${DESTDIR}/etc/ttys cat fbtab.head etc.${MACHINE}/fbtab fbtab.tail > ${DESTDIR}/etc/fbtab && \ chown ${BINOWN} ${DESTDIR}/etc/fbtab && \ chgrp ${BINGRP} ${DESTDIR}/etc/fbtab && \ |