From 8e94c274cd98f0bdafddd2cfc5e0c01d52d5dc6c Mon Sep 17 00:00:00 2001 From: roberto Date: Sun, 12 Sep 1999 18:13:11 +0000 Subject: This fix adds checking for the existance of the /var/msgs directory before attempting to create the bounds file. PR: bin/13184 Submitted by: "Stephen J. Roznowski" --- etc/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rc b/etc/rc index 620f82c..c7edbcc 100644 --- a/etc/rc +++ b/etc/rc @@ -384,7 +384,7 @@ if [ "${vibackup}" != '/var/tmp/vi.recover/vi.*' ]; then fi # make a bounds file for msgs(1) if there isn't one already -if [ ! -f /var/msgs/bounds ]; then +if [ -d /var/msgs -a ! -f /var/msgs/bounds ]; then echo 0 > /var/msgs/bounds fi -- cgit v1.1