diff options
-rw-r--r-- | etc/Makefile | 10 | ||||
-rw-r--r-- | etc/ppp/chap-secrets | 2 | ||||
-rw-r--r-- | etc/ppp/options | 3 | ||||
-rw-r--r-- | etc/ppp/options.leaf | 1 | ||||
-rw-r--r-- | etc/ppp/pap-secrets | 2 |
5 files changed, 18 insertions, 0 deletions
diff --git a/etc/Makefile b/etc/Makefile index bb154fc8ebf..6030bf48942 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -70,6 +70,16 @@ distribution: distrib-dirs ${DESTDIR}/etc/mtree; \ 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 \ + ${DESTDIR}/etc/ppp; \ + install -c -o root -g wheel -m 644 options \ + ${DESTDIR}/etc/ppp; \ + install -c -o root -g wheel -m 644 options.leaf \ + ${DESTDIR}/etc/ppp; \ + install -c -o root -g wheel -m 644 pap-secrets \ + ${DESTDIR}/etc/ppp; \ + ${DESTDIR}/etc/ppp) cd namedb; install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \ ${DESTDIR}/etc/namedb /bin/rm -f ${DESTDIR}/etc/localtime diff --git a/etc/ppp/chap-secrets b/etc/ppp/chap-secrets new file mode 100644 index 00000000000..7d1c3cd7c6b --- /dev/null +++ b/etc/ppp/chap-secrets @@ -0,0 +1,2 @@ +# Secrets for authentication using CHAP +# client server secret IP addresses diff --git a/etc/ppp/options b/etc/ppp/options new file mode 100644 index 00000000000..409a13aa093 --- /dev/null +++ b/etc/ppp/options @@ -0,0 +1,3 @@ +lock +auth +usehostname diff --git a/etc/ppp/options.leaf b/etc/ppp/options.leaf new file mode 100644 index 00000000000..4b67b6a0d6b --- /dev/null +++ b/etc/ppp/options.leaf @@ -0,0 +1 @@ +lock diff --git a/etc/ppp/pap-secrets b/etc/ppp/pap-secrets new file mode 100644 index 00000000000..f8b7dce3cd9 --- /dev/null +++ b/etc/ppp/pap-secrets @@ -0,0 +1,2 @@ +# Secrets for authentication using PAP +# client server secret IP addresses |