o Reduce rc(8) startup clutter by turning the informational messages

off by default.
o Apparently the routine displaying the informational messages wasn't
  checking its knob in rc.conf, so fix that as well.

Requested by:	obrien
This commit is contained in:
Mike Makonnen 2003-08-20 06:50:34 +00:00
parent 43d16a0eba
commit 4541e3ecc6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=119170
2 changed files with 9 additions and 5 deletions

View File

@ -20,7 +20,7 @@
##############################################################
rc_debug="NO" # Set to YES to enable debugging output from rc.d
rc_info="YES" # Enables display of informational messages at boot.
rc_info="NO" # Enables display of informational messages at boot.
rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown
swapfile="NO" # Set to name of swapfile if aux swapfile desired.
apm_enable="NO" # Set to YES to enable APM BIOS functions (or NO).

View File

@ -924,10 +924,14 @@ warn()
#
info()
{
if [ -x /usr/bin/logger ]; then
logger "$0: INFO: $*"
fi
echo "$0: INFO: $*"
case ${rc_info} in
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
if [ -x /usr/bin/logger ]; then
logger "$0: INFO: $*"
fi
echo "$0: INFO: $*"
;;
esac
}
#