diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-02-23 03:42:52 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-02-23 03:42:52 +0000 |
commit | ffeca18d6a9786907f297e9ae7e1ea64797a133d (patch) | |
tree | aac6385cc7cc490e9ff4fbde5d100a3a8d534b52 /etc/rc | |
parent | 4fd676588c9d00da6f40dd80595487505538c295 (diff) | |
download | pfsense-ffeca18d6a9786907f297e9ae7e1ea64797a133d.zip pfsense-ffeca18d6a9786907f297e9ae7e1ea64797a133d.tar.gz |
Redirect all errors and package messages to /tmp/bootup_messages
Diffstat (limited to 'etc/rc')
-rwxr-xr-x | etc/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |