Project

General

Profile

Download (359 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
    echo "Syncing packages..."
9
    /etc/rc.packages 2>/dev/null
10

    
11
    echo "Executing rc.d items... "
12
    for FILE in /usr/local/etc/rc.d/*.sh; do
13
		echo -n " Stopping ${FILE}..."
14
		sh $FILE stop >>/tmp/bootup_messages 2>&1
15
		echo "done."
16
    done
17
fi
18

    
(81-81/93)