retire nonsymbolic rootdev, dev2name
[minix.git] / etc / usr / rc
blob923758c4869e465c4aa27b55e4792cf0ca12b71e
1 # /usr/etc/rc - continued system initialization.
3 RANDOM_FILE=/usr/adm/random.dat
4 LOCAL_FILE=/usr/etc/rc.local
6 # Get $SERVICES_DIRS
7 . /etc/rc.conf
9 # Directories to find services in
10 if [ ! "$SERVICES_DIRS" ]
11 then    SERVICES_DIRS=/usr/sbin
14 # Booting from cd?
15 bootcd="`/bin/sysenv bootcd`"
17 case "$#:$1" in
18 1:start|1:stop|1:down)
19     action=$1
20     ;;
21 *)  echo >&2 "Usage: $0 start|stop|down"
22     exit 1
23 esac
25 if [ -f "$LOCAL_FILE" ]
26 then    . "$LOCAL_FILE" $1
29 disabled()
31     ifs="$IFS"; IFS=,
32     for skip in `sysenv disable`
33     do 
34         if [ "$skip" = "$1" ]
35         then     
36                 IFS="$ifs"; unset ifs
37                 return 0
38         fi
39     done
40     IFS="$ifs"; unset ifs
41     return 1
44 daemonize()
46     # Function to start a daemon, if it exists.
47     local IFS=':'
48     local name="$1"
49     test "$1" = tcpd && name="$2"
51     for dir in $PATH
52     do
53         if [ -f "$dir/$1" ]
54         then
56             # check if this service is disabled at the boot monitor.
57             if disabled $name; then return; fi
59             echo -n " $name"
60             "$@" &
61             return
62         fi
63     done
66 up()
68     # Function to dynamically start a system service
69     opt=""
70     prefix=$(expr "$1 " : '\(-\)')
71     if [ "$prefix" = "-" ];
72     then
73          opt=$1
74          shift
75     fi
76     service=$1
77     shift
79     # First check if this service is disabled at the boot monitor.
80     if disabled $service; then return; fi
82     # Service is not disabled. Try to bring it up.
83     found=""
84     for dir in $SERVICES_DIRS
85     do  bin=$dir/$service
86         if [ -x $bin -a -z "$found" ]
87         then    service $opt up $bin "$@" 
88                 echo -n " $service"
89                 found=yes
90         fi
91     done
92     if [ -z "$found" ]
93     then        echo " ($service not found in $SERVICES_DIRS)"
94     fi
97 get_eth_labels() {
98   # Filter out the non-vlan ethernet entries from inet.conf.
99   # Produce as output a list of "drivername_instancenr"-formatted labels.
100   sed 's/\008/ /g' /etc/inet.conf | \
101     sed -n 's/^ *eth[0-9][0-9]* *\([^ ][^ ]*\) *\([0-9][0-9]*\).*$/\1_\2/p' | \
102     grep -v '^vlan_'
105 DAEMONS=/etc/rc.daemons
107 case $action in
108 start)
109     # Select console font.
110     test -f /etc/font && loadfont /etc/font </dev/console
112     # Cleanup.
113     rm -rf /tmp/* /usr/run/* /usr/spool/lpd/* /usr/spool/locks/*
115     # Start servers and drivers set at the boot monitor.
116     echo -n "Starting services:"
117     up -n random -dev /dev/random -devstyle STYLE_DEVA -period 3HZ
119     # load random number generator
120     if [ -f $RANDOM_FILE ]
121     then
122         cat < $RANDOM_FILE >/dev/random
123         # overwrite $RANDOM_FILE. We don't want to use this data again
124         dd if=/dev/random of=$RANDOM_FILE bs=1024 count=1 2> /dev/null
125     fi
127     # start network driver instances for all configured ethernet devices
128     for label in $(get_eth_labels); do
129         driver=$(echo $label | sed 's/\(.*\)_.*/\1/')
130         instance=$(echo $label | sed 's/.*_//')
131         eval arg=\$${label}_arg
132         if [ ! -z "$arg" ]; then arg=" $arg"; fi
133         arg="-args \"instance=$instance$arg\""
134         eval up $driver -label $label $arg -period 5HZ
135     done
136     if [ X`/bin/sysenv lwip` = Xyes ]
137     then
138         up lwip -script /etc/rs.inet -dev /dev/ip -devstyle STYLE_CLONE_A
139     else
140         up inet -script /etc/rs.inet -dev /dev/ip -devstyle STYLE_CLONE
141     fi
142     up -n printer -dev /dev/lp -period 10HZ
143     up -n ipc
144     # start VirtualBox time sync driver if the device is there
145     if grep '^[^ ]* [^ ]* 80EE:CAFE ' /proc/pci >/dev/null; then
146       up -n vbox -period 10HZ
147     fi
148     echo .
150     # Network initialization.
151     (: </dev/tcp) 2>/dev/null && net=t  # Is there a TCP/IP server?
153     echo -n "Starting daemons:"
154     daemonize update
156     # Ugly error message when starting cron from CD.
157     # (and cron unnecessary then so..)
158     if [ ! -f /CD ]
159     then        daemonize cron
160     else        mkdir /tmp/log
161                 rm -f /var/log || true
162                 ln -s /tmp/log /var/log || true
163                 . /etc/rc.cd
164     fi
165     # syslogd has not been started yet
166     rm -f /var/run/syslogd.pid
167     daemonize syslogd
168     echo .
170     if [ "$net" ]
171     then
172         if [ -f /etc/rc.net ]
173         then
174             # Let a customized TCP/IP initialization script figure it out.
175             . /etc/rc.net
176         else
177             # Standard network daemons.
178             echo -n "Starting networking:"
179             if grep -s 'psip0.*default' /etc/inet.conf >/dev/null
180             then        ifconfig -h 10.0.0.1
181             else
182                     if [ X`/bin/sysenv lwip` = Xyes ]
183                     then
184                         dhcpd --lwip &
185                         echo -n " dhcpd"
186                     else
187                         daemonize dhcpd
188                     fi
189             fi
190             daemonize nonamed -L
191             if [ -f "$DAEMONS" ]
192             then        . "$DAEMONS"
193             fi
194             # The last daemon has been started, so close the list:
195             echo .
196         fi
197     fi
199     if [ "$net" ]
200     then
201         # Get the nodename from the DNS and set it.
202         trap '' 2
203         intr -t 20 hostaddr -h
204         trap 2
205     fi
207     # Recover files being edited when the system crashed.
208     test -f /usr/bin/elvprsv && elvprsv /usr/tmp/elv*
210     # Run the daily cleanup on systems that are not on at night.
211     test -f /usr/etc/daily && sh /usr/etc/daily boot &
213 stop|down)
214         # Save random data, if /usr is mounted rw.
215         if grep ' \/usr .*rw' /etc/mtab >/dev/null
216         then
217           if dd if=/dev/random of=$RANDOM_FILE.new bs=1024 count=1 2>/dev/null
218           then
219                 mv $RANDOM_FILE.new $RANDOM_FILE
220           else
221                 echo 'Failed to save random data.'
222           fi
223         fi
224 esac
227 # Let packages run their own scripts
228 for d in /usr/local/etc/rc.d /usr/pkg/etc/rc.d
230 if [ -d "$d" -a -z "$bootcd" ]
231 then    ( if cd $d
232         then
233                 echo -n "Local packages ($action): "
234                 for f in *
235                 do
236                         if [ -x "$f" ]
237                         then    echo -n "$f "
238                                 sh "$f" "$action"
239                         fi
240                 done
241                 echo " done."
242         fi
243         )
245 done