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:'