diff options
author | brian <brian@cvs.openbsd.org> | 1997-12-30 23:36:09 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 1997-12-30 23:36:09 +0000 |
commit | 4d809f40b956f65639595bf2637c3742f1f0b8cd (patch) | |
tree | 92f4d254d1be9d67cc2459b159184d7aacf1c11e /etc/ppp | |
parent | 859118a9a4e715707083aa8d656ce9e9a19b3547 (diff) |
Don't suggest creating sockets in /var/run as we create
sockets as our original uid. Suggest creating /var/ppp
with perms 1777 instead.
Pointed out by: Masafumi NAKANE <max@wide.ad.jp>
Diffstat (limited to 'etc/ppp')
-rw-r--r-- | etc/ppp/ppp.conf.sample | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/etc/ppp/ppp.conf.sample b/etc/ppp/ppp.conf.sample index 7a0aff3118a..5502eede0ad 100644 --- a/etc/ppp/ppp.conf.sample +++ b/etc/ppp/ppp.conf.sample @@ -4,7 +4,7 @@ # # Originally written by Toshiharu OHNO # -# $Id: ppp.conf.sample,v 1.3 1997/12/27 07:22:15 brian Exp $ +# $Id: ppp.conf.sample,v 1.4 1997/12/30 23:36:08 brian Exp $ # ################################################################# @@ -116,9 +116,13 @@ examples: # # When in -auto, -ddial, -direct or -background mode, ppp can accept # control instructions from the ``pppctl'' program. First, you must -# set up your control socket. It's safest to use a UNIX domain socket: +# set up your control socket. It's safest to use a UNIX domain socket +# and to keep these sockets in one place: +# # mkdir /var/ppp +# # chmod 1777 /var/ppp +# then create your socket there: # - set server /var/run/internet 0660 + set server /var/ppp/internet 0660 # # Although a TCP port may be used if you want to allow control # connections from other machines: |