root/etc/rc.start_packages @ 98cb9208
1 | 969d7f5e | Scott Ullrich | #!/bin/sh
|
---|---|---|---|
2 | |||
3 | # Set our operating platform
|
||
4 | PLATFORM=`cat /etc/platform` |
||
5 | |||
6 | if [ ! "$PLATFORM" = "cdrom" ]; then |
||
7 | |||
8 | /etc/rc.packages 2>/dev/null |
||
9 | |||
10 | echo "Executing rc.d items... " |
||
11 | for FILE in /usr/local/etc/rc.d/*.sh; do |
||
12 | echo -n " Starting ${FILE}..." |
||
13 | sh $FILE start >>/tmp/bootup_messages 2>&1 & |
||
14 | echo "done." |
||
15 | done
|
||
16 | fi
|