diff options
Diffstat (limited to 'etc/rc.start_packages')
-rwxr-xr-x | etc/rc.start_packages | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/rc.start_packages b/etc/rc.start_packages index 1b913ed..adc2f1e 100755 --- a/etc/rc.start_packages +++ b/etc/rc.start_packages @@ -9,7 +9,11 @@ if [ ! "$PLATFORM" = "cdrom" ]; then /etc/rc.packages 2>/dev/null echo "Executing rc.d items... " - + for FILE in /usr/local/etc/rc.d/*.sh; do + echo -n " Starting ${FILE}..." + sh $FILE stop >>/tmp/bootup_messages 2>&1 & + echo "done." + done for FILE in /usr/local/etc/rc.d/*.sh; do echo -n " Starting ${FILE}..." sh $FILE start >>/tmp/bootup_messages 2>&1 & |