aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>1998-07-28 01:15:12 +0000
committerJacques Vidrine <nectar@FreeBSD.org>1998-07-28 01:15:12 +0000
commit722ab3dd955c9a08984cda593ad755f32de69a6d (patch)
tree9e02c2b7df2002d3e788448c588641adc3383ce6 /etc
parentf35f7d0dfd407ad611e1ef381103a114368ad01d (diff)
Notes
Diffstat (limited to 'etc')
-rw-r--r--etc/rc7
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/rc b/etc/rc
index 7a1e003adf88..9268d60b4df5 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id: rc,v 1.145 1998/06/02 11:02:16 phk Exp $
+# $Id: rc,v 1.146 1998/06/22 06:34:12 jkoshy Exp $
# From: @(#)rc 5.27 (Berkeley) 6/5/91
# System startup script run by init on autoboot
@@ -302,6 +302,11 @@ if [ "$vibackup" != '/var/tmp/vi.recover/vi.*' ]; then
fi
fi
+# make a bounds file for msgs(1) if there isn't one already
+if [ ! -f /var/msgs/bounds ]; then
+ echo 0 > /var/msgs/bounds
+fi
+
# for each valid dir in $local_startup, search for init scripts matching *.sh
if [ "X${local_startup}" != X"NO" ]; then
echo -n 'Local package initialization:'