diff options
author | Daniel O'Callaghan <danny@FreeBSD.org> | 1997-04-15 07:00:35 +0000 |
---|---|---|
committer | Daniel O'Callaghan <danny@FreeBSD.org> | 1997-04-15 07:00:35 +0000 |
commit | 629098536b9cbb38826d232a7bb25f19b602c0f6 (patch) | |
tree | 6b1b890832a1d999b06c2aa7a814a5bcbaba8d2d /usr.sbin/pppd/pathnames.h | |
parent | 4f72618556546b3adb4edb774608942afda8fdee (diff) |
Reviewed by: Brian Somers <brian@freebsd.org>
pppd now creates /var/run/ttyXn.if file containing the interface name;
check that a 'login' user is not listed in /etc/ppp/ppp.disabled;
check that a 'login' user's shell is listed in /etc/ppp/ppp.shells;
make sure that passwordless 'login' logins are recorded in wtmp and
utmp.
Notes
Notes:
svn path=/head/; revision=24942
Diffstat (limited to 'usr.sbin/pppd/pathnames.h')
-rw-r--r-- | usr.sbin/pppd/pathnames.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/pppd/pathnames.h b/usr.sbin/pppd/pathnames.h index d0ec2ff6a70a..7033ff094336 100644 --- a/usr.sbin/pppd/pathnames.h +++ b/usr.sbin/pppd/pathnames.h @@ -1,7 +1,7 @@ /* * define path names * - * $Id$ + * $Id: pathnames.h,v 1.5 1997/02/22 16:11:52 peter Exp $ */ #ifdef HAVE_PATHS_H @@ -20,3 +20,6 @@ #define _PATH_TTYOPT "/etc/ppp/options." #define _PATH_CONNERRS "/etc/ppp/connect-errors" #define _PATH_USEROPT ".ppprc" +#define _PATH_PPPDISABLED "/etc/ppp/ppp.disabled" +#define _PATH_PPPSHELLS "/etc/ppp/ppp.shells" + |