kernel - don't print info about scheduled process if pagefault happened in kernel.
[minix.git] / etc / usr / rc
blobb7e20b61d7708777e3b0aaad8c52b8c9b969ac19
1 # /usr/etc/rc - continued system initialization.
3 RANDOM_FILE=/usr/adm/random.dat
4 LOCAL_FILE=/usr/etc/rc.local
6 case "$#:$1" in
7 1:start|1:stop|1:down)
8     action=$1
9     ;;
10 *)  echo >&2 "Usage: $0 start|stop|down"
11     exit 1
12 esac
14 if [ -f "$LOCAL_FILE" ]
15 then    . "$LOCAL_FILE" $1
18 disabled()
20     ifs="$IFS"; IFS=,
21     for skip in `sysenv disable`
22     do 
23         if [ "$skip" = "$1" ]
24         then     
25                 IFS="$ifs"; unset ifs
26                 return 0
27         fi
28     done
29     IFS="$ifs"; unset ifs
30     return 1
33 daemonize()
35     # Function to start a daemon, if it exists.
36     local IFS=':'
37     local name="$1"
38     test "$1" = tcpd && name="$2"
40     for dir in $PATH
41     do
42         if [ -f "$dir/$1" ]
43         then
45             # check if this service is disabled at the boot monitor.
46             if disabled $name; then return; fi
48             echo -n " $name"
49             "$@" &
50             return
51         fi
52     done
55 up()
57     upopt " " "$@"
60 upopt()
62     opt=$1
63     shift
64     service=$1
65     shift
67     # Function to dynamically start a system service
69     # First check if this service is disabled at the boot monitor.
70     if disabled $service; then return; fi
72     # Service is not disabled. Try to bring it up.
73     echo -n " $service"
74     service $opt up /usr/sbin/$service "$@" 
78 DAEMONS=/etc/rc.daemons
80 case $action in
81 start)
82     # Select console font.
83     test -f /etc/font && loadfont /etc/font </dev/console
85     # Cleanup.
86     rm -rf /tmp/. /usr/run/. /usr/spool/lpd/. /usr/spool/locks/.
88     # Start servers and drivers set at the boot monitor.
89     echo -n "Starting services:"
90     upopt -n random -dev /dev/random -devstyle STYLE_DEVA -period 3HZ
92     # load random number generator
93     if [ -f $RANDOM_FILE ]
94     then
95         cat < $RANDOM_FILE >/dev/random
96         # overwrite $RANDOM_FILE. We don't want to use this data again
97         dd if=/dev/random of=$RANDOM_FILE bs=1024 count=1 2> /dev/null
98     fi
100     # start only network drivers that are in use
101     for driver in lance rtl8139 rtl8169 fxp e1000 dpeth dp8390 orinoco atl2 dec21140A
102     do
103         if grep " $driver " /etc/inet.conf > /dev/null  2>&1
104         then 
105             eval arg=\$${driver}_arg
106             if [ ! -z "$arg" ]; then arg="-args \"$arg\""; fi
107             eval up $driver $arg -period 5HZ
108         fi
109     done
110     up inet -script /etc/rs.inet -dev /dev/ip -devstyle STYLE_CLONE
111     upopt -n printer -dev /dev/lp -period 10HZ
112     upopt -n ipc
113     echo .
115     # Network initialization.
116     (: </dev/tcp) 2>/dev/null && net=t  # Is there a TCP/IP server?
118     echo -n "Starting daemons:"
119     daemonize update
121     # Ugly error message when starting cron from CD.
122     # (and cron unnecessary then so..)
123     if [ ! -f /CD ]
124     then        daemonize cron
125     else        mkdir /tmp/log
126                 rm -f /var/log || true
127                 ln -s /tmp/log /var/log || true
128                 . /etc/rc.cd
129     fi
130     # syslogd has not been started yet
131     rm -f /var/run/syslogd.pid
132     daemonize syslogd
133     echo .
135     if [ "$net" ]
136     then
137         if [ -f /etc/rc.net ]
138         then
139             # Let a customized TCP/IP initialization script figure it out.
140             . /etc/rc.net
141         else
142             # Standard network daemons.
143             echo -n "Starting networking:"
144             if grep -s 'psip0.*default' /etc/inet.conf 
145             then        ifconfig -h 10.0.0.1
146             else
147                         daemonize dhcpd
148             fi
149             daemonize nonamed -L
150             if [ -f "$DAEMONS" ]
151             then        . "$DAEMONS"
152             fi
153             # The last daemon has been started, so close the list:
154             echo .
155         fi
156     fi
158     if [ "$net" ]
159     then
160         # Get the nodename from the DNS and set it.
161         trap '' 2
162         intr -t 20 hostaddr -h
163         trap 2
164     fi
166     # Recover files being edited when the system crashed.
167     test -f /usr/bin/elvprsv && elvprsv /usr/tmp/elv*
169     # Run the daily cleanup on systems that are not on at night.
170     test -f /usr/etc/daily && sh /usr/etc/daily boot &
173 stop|down)
174         # Save random data, if /usr is mounted rw.
175         if grep ' \/usr .*rw' /etc/mtab >/dev/null
176         then
177           if dd if=/dev/random of=$RANDOM_FILE.new bs=1024 count=1 2>/dev/null
178           then
179                 mv $RANDOM_FILE.new $RANDOM_FILE
180           else
181                 echo 'Failed to save random data.'
182           fi
183         fi
184 esac
186 d=/usr/local/etc/rc.d
187 # Let packages run their own scripts
188 if [ -d "$d" ]
189 then    if cd $d
190         then
191                 echo -n "Local packages ($action): "
192                 for f in *
193                 do
194                         if [ -x "$f" ]
195                         then    echo -n "$f "
196                                 sh "$f" "$action"
197                         fi
198                 done
199                 echo " done."
200         fi