diff options
author | Bill Marquette <billm@pfsense.org> | 2006-10-22 04:47:30 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2006-10-22 04:47:30 +0000 |
commit | 0a972a1a30f1f9e59685b320fab6a0db8ab7e4d0 (patch) | |
tree | 0c610d812863b65c4c57f046218db191611d3ebc /etc | |
parent | 7a7abeba12d491d393def637f2e0329b64a7e257 (diff) | |
download | pfsense-0a972a1a30f1f9e59685b320fab6a0db8ab7e4d0.zip pfsense-0a972a1a30f1f9e59685b320fab6a0db8ab7e4d0.tar.gz |
MFC [15083]
Ticket #1145: Don't background the stop process, we really do need to stop the daemon before it tries to start again
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.start_packages | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.start_packages b/etc/rc.start_packages index 2cc6f40..709cbbb 100755 --- a/etc/rc.start_packages +++ b/etc/rc.start_packages @@ -11,7 +11,7 @@ if [ ! "$PLATFORM" = "cdrom" ]; then echo "Executing rc.d items... " for FILE in /usr/local/etc/rc.d/*.sh; do echo -n " Stopping ${FILE}..." - sh $FILE stop >>/tmp/bootup_messages 2>&1 & + sh $FILE stop >>/tmp/bootup_messages 2>&1 echo "done." done for FILE in /usr/local/etc/rc.d/*.sh; do |