Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Jul 1996 21:30:40 +0200
From:      "Philippe Charnier" <charnier@xp11.frmug.org>
To:        current@FreeBSD.org
Subject:   ugly output of /etc/rc
Message-ID:  <199607171930.VAA00247@xp11.frmug.org>

next in thread | raw e-mail | index | archive | help
Hi,

With the last change of /etc/rc, the ouput on console is ugly a little. This
one is nicer for me.

Index: rc
===================================================================
RCS file: /home2h/FreeBSD.cvsroot/src/etc/rc,v
retrieving revision 1.94
diff -u -r1.94 rc
--- rc	1996/07/13 17:27:39	1.94
+++ rc	1996/07/17 19:21:38
@@ -150,7 +150,7 @@
 # /var/crash should be a directory or a symbolic link
 # to the crash directory if core dumps are to be saved.
 if [ "X${savecore}" = X"YES" -a -d /var/crash ]; then
-	echo -n checking for core dump...
+	echo -n 'checking for core dump... '
 	savecore /var/crash
 fi
 
@@ -294,6 +294,8 @@
 	echo -n ' printer';		lpd
 fi
 
+echo '.'
+
 # Make shared lib searching a little faster.  Leave /usr/lib first if you
 # add your own entries or you may come to grief.
 if [ -x /sbin/ldconfig ]; then
@@ -308,10 +310,8 @@
 # $sendmail_flags is imported from /etc/sysconfig;
 # if $sendmail_flags is something other than NO, sendmail is run.
 if [ "X${sendmail_flags}" != X"NO" -a -r /etc/sendmail.cf ]; then
-	echo -n ' sendmail';            /usr/sbin/sendmail ${sendmail_flags}
+	echo 'starting sendmail.';     /usr/sbin/sendmail ${sendmail_flags}
 fi
-
-echo '.'
 
 # configure implementation specific stuff
 arch=`uname -m`

------                                                            ------ 
Philippe Charnier                               charnier@lirmm.fr (smtp)       
                                          charnier@xp11.frmug.org (uucp) 

    ``a PC not running FreeBSD is like a venusian with no tentacles'' 
------------------------------------------------------------------------



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199607171930.VAA00247>