Explain that the tailing process will exit when developer bootstrap is completed.

This commit is contained in:
Scott Ullrich 2006-04-08 22:11:24 +00:00
parent f6db5a8384
commit 74283bbb86

View File

@ -18,9 +18,13 @@ if [ -e /usr/local/etc/rc.d/dev_bootstrap.sh ]; then
echo -n "Would you like to tail the progress [n]? "
read ANSWER
if [ "$ANSWER" = "y" ]; then
echo
echo "Tailing developer bootstrap process."
echo
echo "Press CTRL-C to abort."
echo
echo "Note, this tailing process will exit once the operation is completed."
echo
tail -f /tmp/bootup_messages
fi
fi