diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2006-04-08 18:25:37 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2006-04-08 18:25:37 +0000 |
commit | 995f499f42c95e6a534dadf203a8e6772a064ac1 (patch) | |
tree | cfdbe0839be846a01a157248e707799abd44cba1 | |
parent | ae8293ee350785fe483d4253b8866ffea171adef (diff) | |
download | pfsense-995f499f42c95e6a534dadf203a8e6772a064ac1.zip pfsense-995f499f42c95e6a534dadf203a8e6772a064ac1.tar.gz |
Start packages in the background
-rwxr-xr-x | etc/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -195,7 +195,7 @@ if [ ! "$PLATFORM" = "cdrom" ]; then for FILE in /usr/local/etc/rc.d/*.sh; do echo -n " Starting ${FILE}..." - sh $FILE start >>/tmp/bootup_messages 2>&1 + sh $FILE start >>/tmp/bootup_messages 2>&1 & echo "done." done fi |