View | Details | Raw Unified | Return to bug 8386
Collapse All | Expand All

(-)ppp-2.4.4/chat/chat.8.dontwriteetc (-1 / +1 lines)
Lines 200-206 Link Here
200
at the terminal via standard error.  If \fBchat\fR is being run by
200
at the terminal via standard error.  If \fBchat\fR is being run by
201
pppd, and pppd is running as a daemon (detached from its controlling
201
pppd, and pppd is running as a daemon (detached from its controlling
202
terminal), standard error will normally be redirected to the file
202
terminal), standard error will normally be redirected to the file
203
/etc/ppp/connect\-errors.
203
/var/log/ppp/connect\-errors.
204
.LP
204
.LP
205
\fBSAY\fR strings must be enclosed in single or double quotes. If
205
\fBSAY\fR strings must be enclosed in single or double quotes. If
206
carriage return and line feed are needed in the string to be output,
206
carriage return and line feed are needed in the string to be output,
(-)ppp-2.4.4/linux/Makefile.top.dontwriteetc (-1 / +7 lines)
Lines 5-10 Link Here
5
INCDIR = $(DESTDIR)/include
5
INCDIR = $(DESTDIR)/include
6
MANDIR = $(DESTDIR)/share/man
6
MANDIR = $(DESTDIR)/share/man
7
ETCDIR = $(INSTROOT)@SYSCONF@/ppp
7
ETCDIR = $(INSTROOT)@SYSCONF@/ppp
8
RUNDIR = $(INSTROOT)/var/run/ppp
9
LOGDIR = $(INSTROOT)/var/log/ppp
8
10
9
# uid 0 = root
11
# uid 0 = root
10
INSTALL= install
12
INSTALL= install
Lines 16-22 Link Here
16
	cd pppstats; $(MAKE) $(MFLAGS) all
18
	cd pppstats; $(MAKE) $(MFLAGS) all
17
	cd pppdump; $(MAKE) $(MFLAGS) all
19
	cd pppdump; $(MAKE) $(MFLAGS) all
18
20
19
install: $(BINDIR) $(MANDIR)/man8 install-progs install-devel
21
install: $(BINDIR) $(RUNDIR) $(LOGDIR) $(MANDIR)/man8 install-progs install-devel
20
22
21
install-progs:
23
install-progs:
22
	cd chat; $(MAKE) $(MFLAGS) install
24
	cd chat; $(MAKE) $(MFLAGS) install
Lines 44-49 Link Here
44
	$(INSTALL) -d -m 755 $@
46
	$(INSTALL) -d -m 755 $@
45
$(ETCDIR):
47
$(ETCDIR):
46
	$(INSTALL) -d -m 755 $@
48
	$(INSTALL) -d -m 755 $@
49
$(RUNDIR):
50
	$(INSTALL) -d -m 755 $@
51
$(LOGDIR):
52
	$(INSTALL) -d -m 755 $@
47
53
48
clean:
54
clean:
49
	rm -f `find . -name '*.[oas]' -print`
55
	rm -f `find . -name '*.[oas]' -print`
(-)ppp-2.4.4/pppd/pathnames.h.dontwriteetc (-2 / +2 lines)
Lines 28-36 Link Here
28
#define _PATH_AUTHUP	 _ROOT_PATH "/etc/ppp/auth-up"
28
#define _PATH_AUTHUP	 _ROOT_PATH "/etc/ppp/auth-up"
29
#define _PATH_AUTHDOWN	 _ROOT_PATH "/etc/ppp/auth-down"
29
#define _PATH_AUTHDOWN	 _ROOT_PATH "/etc/ppp/auth-down"
30
#define _PATH_TTYOPT	 _ROOT_PATH "/etc/ppp/options."
30
#define _PATH_TTYOPT	 _ROOT_PATH "/etc/ppp/options."
31
#define _PATH_CONNERRS	 _ROOT_PATH "/etc/ppp/connect-errors"
31
#define _PATH_CONNERRS	 _ROOT_PATH "/var/log/ppp/connect-errors"
32
#define _PATH_PEERFILES	 _ROOT_PATH "/etc/ppp/peers/"
32
#define _PATH_PEERFILES	 _ROOT_PATH "/etc/ppp/peers/"
33
#define _PATH_RESOLV	 _ROOT_PATH "/etc/ppp/resolv.conf"
33
#define _PATH_RESOLV	 _ROOT_PATH "/var/run/ppp/resolv.conf"
34
34
35
#define _PATH_USEROPT	 ".ppprc"
35
#define _PATH_USEROPT	 ".ppprc"
36
#define	_PATH_PSEUDONYM	 ".ppp_pseudonym"
36
#define	_PATH_PSEUDONYM	 ".ppp_pseudonym"

Return to bug 8386