Project

General

Profile

Download (331 Bytes) Statistics
| Branch: | Tag: | Revision:
1
#!/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
17

    
(78-78/89)