Redirect all errors and package messages to /tmp/bootup_messages

This commit is contained in:
Scott Ullrich 2005-02-23 03:42:52 +00:00
parent 4fd676588c
commit ffeca18d6a

2
etc/rc
View File

@ -82,7 +82,7 @@ echo Executing rc.d items...
for FILE in /usr/local/etc/rc.d/*.sh; do
if [ -e $FILE ]; then
echo "Starting ${FILE}..."
sh $FILE 2>/tmp/bootup_messages
sh $FILE >>/tmp/bootup_messages 2>&1
fi
done