home *** CD-ROM | disk | FTP | other *** search
-
-
-
-
- # "Run Commands" executed when the system is changing to init state 3,
- # same as state 2 (multi-user) but with remote file sharing.
- set `/sbin/who -r`
- if [ -d /etc/rc3.d ]
- then
- for f in /etc/rc3.d/K*
- {
- if [ -s ${f} ]
- then
- /sbin/sh ${f} stop
- fi
- }
-
- for f in /etc/rc3.d/S*
- {
- if [ -s ${f} ]
- then
- /sbin/sh ${f} start
- fi
- }
- fi
- if [ $9 = 'S' -o $9 = '1' ]
- then
- echo '
- The system is ready.'
- fi
-
-