mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Make a /var/run directory before starting ppp so that it doesn't
complain.
This commit is contained in:
parent
6408ef3c4a
commit
739a141cfb
2 changed files with 4 additions and 2 deletions
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue