Make a /var/run directory before starting ppp so that it doesn't

complain.
This commit is contained in:
Jordan K. Hubbard 1998-03-09 08:57:22 +00:00
parent 6408ef3c4a
commit 739a141cfb
2 changed files with 4 additions and 2 deletions

View file

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id$
* $Id: network.c,v 1.29 1997/02/22 14:12:12 peter Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -188,6 +188,7 @@ startPPP(Device *devp)
/* These are needed to make ppp work */
Mkdir("/var/log");
Mkdir("/var/run");
Mkdir("/var/spool/lock");
Mkdir("/etc/ppp");

View file

@ -4,7 +4,7 @@
* This is probably the last attempt in the `sysinstall' line, the next
* generation being slated to essentially a complete rewrite.
*
* $Id$
* $Id: network.c,v 1.29 1997/02/22 14:12:12 peter Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -188,6 +188,7 @@ startPPP(Device *devp)
/* These are needed to make ppp work */
Mkdir("/var/log");
Mkdir("/var/run");
Mkdir("/var/spool/lock");
Mkdir("/etc/ppp");