From ab138b58a53af8c33d39cc9cc2115bc14cffc59f Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Fri, 14 Aug 1998 06:49:05 +0000 Subject: [PATCH] Add "Mounting NFS file systems" progress indicator PR: 7605 Reviewed by: phk Submitted by Nick Hibma : --- etc/rc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/etc/rc b/etc/rc index 6c5a9e7d54f..fe888d7003a 100644 --- a/etc/rc +++ b/etc/rc @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.147 1998/07/28 01:15:12 nectar Exp $ +# $Id: rc,v 1.148 1998/08/10 19:53:50 brian Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -76,7 +76,9 @@ fi umount -a >/dev/null 2>&1 +echo -n "Mounting NFS file systems" mount -a -t nonfs +echo . if [ $? != 0 ]; then echo "Filesystem mount failed, startup aborted" exit 1