diff options
author | jkh <jkh@FreeBSD.org> | 1998-03-09 08:57:22 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-03-09 08:57:22 +0000 |
commit | aa24d4726b1504397b0054f8574795ead71e9be6 (patch) | |
tree | 64dbb46f61e911fd38f1923c29864a02dc4417ee | |
parent | 8c2e3b0218bf8aced93fd7d730def710d5c1b0bb (diff) | |
download | FreeBSD-src-aa24d4726b1504397b0054f8574795ead71e9be6.zip FreeBSD-src-aa24d4726b1504397b0054f8574795ead71e9be6.tar.gz |
Make a /var/run directory before starting ppp so that it doesn't
complain.
-rw-r--r-- | release/sysinstall/network.c | 3 | ||||
-rw-r--r-- | usr.sbin/sysinstall/network.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/release/sysinstall/network.c b/release/sysinstall/network.c index bb60e28..564fd66 100644 --- a/release/sysinstall/network.c +++ b/release/sysinstall/network.c @@ -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"); diff --git a/usr.sbin/sysinstall/network.c b/usr.sbin/sysinstall/network.c index bb60e28..564fd66 100644 --- a/usr.sbin/sysinstall/network.c +++ b/usr.sbin/sysinstall/network.c @@ -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"); |