From 739a141cfbc2c147f2f25dedaa746c4e799f1b79 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Mon, 9 Mar 1998 08:57:22 +0000 Subject: [PATCH] Make a /var/run directory before starting ppp so that it doesn't complain. --- release/sysinstall/network.c | 3 ++- 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 bb60e28ea54..564fd66ed28 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 bb60e28ea54..564fd66ed28 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");