source:
npl/internetserver/poptop_ppp/patches/ppp-2.4.3-dontwriteetc.patch
@
5160d62
Last change on this file since 5160d62 was c5c522c, checked in by , 8 years ago | |
---|---|
|
|
File size: 2.1 KB |
-
ppp-2.4.3/chat/chat.8
200 200 at the terminal via standard error. If \fBchat\fR is being run by 201 201 pppd, and pppd is running as a daemon (detached from its controlling 202 202 terminal), standard error will normally be redirected to the file 203 / etc/ppp/connect\-errors.203 /var/log/ppp/connect\-errors. 204 204 .LP 205 205 \fBSAY\fR strings must be enclosed in single or double quotes. If 206 206 carriage return and line feed are needed in the string to be output, -
ppp-2.4.3/linux/Makefile.top
4 4 BINDIR = $(DESTDIR)/sbin 5 5 INCDIR = $(DESTDIR)/include 6 6 MANDIR = $(DESTDIR)/share/man 7 ETCDIR = @SYSCONF@/ppp 7 ETCDIR = $(DESTDIR)@SYSCONF@/ppp 8 RUNDIR = $(DESTDIR)/../var/run/ppp 9 LOGDIR = $(DESTDIR)/../var/log/ppp 8 10 9 11 # uid 0 = root 10 12 INSTALL= install … … 16 18 cd pppstats; $(MAKE) $(MFLAGS) all 17 19 cd pppdump; $(MAKE) $(MFLAGS) all 18 20 19 install: $(BINDIR) $( MANDIR)/man8 install-progs install-devel21 install: $(BINDIR) $(RUNDIR) $(LOGDIR) $(MANDIR)/man8 install-progs install-devel 20 22 21 23 install-progs: 22 24 cd chat; $(MAKE) $(MFLAGS) install … … 44 46 $(INSTALL) -d -m 755 $@ 45 47 $(ETCDIR): 46 48 $(INSTALL) -d -m 755 $@ 49 $(RUNDIR): 50 $(INSTALL) -d -m 755 $@ 51 $(LOGDIR): 52 $(INSTALL) -d -m 755 $@ 47 53 48 54 clean: 49 55 rm -f `find . -name '*.[oas]' -print` -
ppp-2.4.3/pppd/pathnames.h
27 27 #define _PATH_AUTHUP _ROOT_PATH "/etc/ppp/auth-up" 28 28 #define _PATH_AUTHDOWN _ROOT_PATH "/etc/ppp/auth-down" 29 29 #define _PATH_TTYOPT _ROOT_PATH "/etc/ppp/options." 30 #define _PATH_CONNERRS _ROOT_PATH "/ etc/ppp/connect-errors"30 #define _PATH_CONNERRS _ROOT_PATH "/var/log/ppp/connect-errors" 31 31 #define _PATH_PEERFILES _ROOT_PATH "/etc/ppp/peers/" 32 #define _PATH_RESOLV _ROOT_PATH "/ etc/ppp/resolv.conf"32 #define _PATH_RESOLV _ROOT_PATH "/var/run/ppp/resolv.conf" 33 33 34 34 #define _PATH_USEROPT ".ppprc" 35 35 #define _PATH_PSEUDONYM ".ppp_pseudonym"
Note: See TracBrowser
for help on using the repository browser.