diff options
author | cjc <cjc@FreeBSD.org> | 2002-01-29 00:23:35 +0000 |
---|---|---|
committer | cjc <cjc@FreeBSD.org> | 2002-01-29 00:23:35 +0000 |
commit | b3b56d609a8e130ead3cf3de57be8e709508af25 (patch) | |
tree | ef387e917ce7624147339fadf5dd005483c5e2b5 /etc | |
parent | dc82fedb5a0b52746bb2b4a6d1fef7b198f963af (diff) | |
download | FreeBSD-src-b3b56d609a8e130ead3cf3de57be8e709508af25.zip FreeBSD-src-b3b56d609a8e130ead3cf3de57be8e709508af25.tar.gz |
Put a complete set of pppd(8) sample configuration files in
/usr/share/examples/pppd.
Update pppd(8) documentation to reflect this, usr.sbin/pppd/pppd.8.
Remove the out-of-place pppd(8) configuration files in etc/ppp,
ppp.shells.sample and ppp.deny.
Make the appropriate changes to the build process, etc/Makefile and
etc/mtree/BSD.usr.mtree, so it all works.
The files from etc/ppp, ppp.shells.sample and ppp.deny, were moved
with a repo copy. Note it in the logs with a forced commit to these
two.
Submitted by: Maxim Konovalov <maxim@macomnet.ru> provided the new samples.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/etc/Makefile b/etc/Makefile index 86bb60f..81aa09a 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -43,8 +43,7 @@ BIN2= netstart pccard_ether rc.suspend rc.resume MTREE= BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \ BSD.var.dist BSD.x11.dist BSD.x11-4.dist NAMEDB= PROTO.localhost.rev named.conf named.root make-localhost -PPPCNF= ppp.deny ppp.shells.sample -PPPCF2= ppp.conf +PPPCNF= ppp.conf ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \ mailertable.sample aliases @@ -117,10 +116,8 @@ distribution: ${MTREE} ${DESTDIR}/etc/mtree cd ${.CURDIR}/namedb; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ ${NAMEDB} ${DESTDIR}/etc/namedb - cd ${.CURDIR}/ppp; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ - ${PPPCNF} ${DESTDIR}/etc/ppp cd ${.CURDIR}/ppp; ${INSTALL} -c -o root -g ${BINGRP} -m 600 \ - ${PPPCF2} ${DESTDIR}/etc/ppp + ${PPPCNF} ${DESTDIR}/etc/ppp cd ${.CURDIR}/mail; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ ${ETCMAIL} ${DESTDIR}/etc/mail @if [ -d ${DESTDIR}/etc/mail -a -f ${DESTDIR}/etc/mail/aliases -a \ |