--- /sbin/functions.sh.orig 2004-03-14 12:46:42.073115560 -0700 +++ /sbin/functions.sh 2004-03-14 13:00:36.142317768 -0700 @@ -350,7 +350,12 @@ einfo() { if [ "${RC_QUIET_STDOUT}" != "yes" ] then - echo -e " ${GOOD}*${NORMAL} ${*}" + if [ "${SAVE_EINFO}" ] + then + echo -e "`date +'%b %e %T'` ${GOOD}*${NORMAL} ${*}" | tee -a ${SAVE_EINFO} + else + echo -e " ${GOOD}*${NORMAL} ${*}" + fi fi return 0