rc revision 1.1 1 # @(#)rc 5.27 (Berkeley) 6/5/91
2
3 # System startup script run by init on autoboot
4 # or after single-user.
5 # Output and error are redirected to console by init,
6 # and the console is the controlling terminal.
7
8 stty status '^T'
9 # yellow characters with blue background
10 echo -n "[3;30x"
11
12 # Set shell to ignore SIGINT (2), but not children;
13 # shell catches SIGQUIT (3) and returns to single user after fsck.
14 trap : 2
15 trap : 3 # shouldn't be needed
16
17 HOME=/; export HOME
18 PATH=/sbin:/bin:/usr/sbin:/usr/bin
19 export PATH
20
21 if [ -r /fastboot ]
22 then
23 echo Fast boot ... skipping disk checks
24 elif [ $1x = autobootx ]
25 then
26 echo Automatic reboot in progress...
27 fsck -p
28 case $? in
29 0)
30 ;;
31 2)
32 exit 1
33 ;;
34 4)
35 reboot
36 echo "reboot failed... help!"
37 exit 1
38 ;;
39 8)
40 echo "Automatic file system check failed... help!"
41 exit 1
42 ;;
43 12)
44 echo "Reboot interrupted"
45 exit 1
46 ;;
47 130)
48 # interrupt before catcher installed
49 exit 1
50 ;;
51 *)
52 echo "Unknown error in reboot"
53 exit 1
54 ;;
55 esac
56 fi
57
58 trap "echo 'Reboot interrupted'; exit 1" 3
59
60 swapon -a
61
62 umount -a >/dev/null 2>&1
63 mount -a -t nonfs
64 rm -f /fastboot # XXX (root now writeable)
65
66 # set hostname, turn on network
67 echo 'starting network'
68 . /etc/netstart
69
70 mount -a -t nfs >/dev/null 2>&1 & # XXX shouldn't need background
71
72 # clean up left-over files
73 rm -f /etc/nologin
74 rm -f /var/spool/uucp/LCK.*
75 rm -f /var/spool/uucp/STST/*
76 (cd /var/run && { rm -rf -- *; cp /dev/null utmp; chmod 644 utmp; })
77
78 echo -n 'starting system logger'
79 rm -f /dev/log
80 syslogd
81
82 # $timedflags is imported from /etc/netstart;
83 # if $timedflags == NO, timed isn't run.
84 if [ X${timedflags} != X"NO" ]; then
85 echo -n ', time daemon'; timed $timedflags
86 fi
87 echo '.'
88
89 # /var/crash should be a directory or a symbolic link
90 # to the crash directory if core dumps are to be saved.
91 if [ -d /var/crash ]; then
92 echo checking for core dump...
93 savecore /var/crash
94 fi
95
96 # echo -n 'checking quotas:'
97 #quotacheck -a
98 # echo ' done.'
99 #quotaon -a
100
101 # build ps databases
102 kvm_mkdb /386bsd
103 dev_mkdb
104
105 chmod 666 /dev/tty[pqrs]*
106
107 # check the password temp/lock file
108 if [ -f /etc/ptmp ]
109 then
110 logger -s -p auth.err \
111 'password file may be incorrect -- /etc/ptmp exists'
112 fi
113
114 echo preserving editor files
115 (cd /var/tmp && /usr/libexec/elvispreserve "-the system rebooted" elvis* &&
116 rm -f elvis[0-9a-f][0-9a-f][0-9a-f][0-9a-f]* \
117 elvis_[0-9a-f][0-9a-f][0-9a-f][0-9a-f]*)
118
119 echo clearing /tmp
120
121 # prune quickly with one rm, then use find to clean up /tmp/[lq]*
122 # (not needed with mfs /tmp, but doesn't hurt there...)
123 (cd /tmp && rm -rf [a-km-pr-zA-Z]* &&
124 find . ! -name . ! -name lost+found ! -name quotas -exec rm -rf -- {} \;)
125
126 # echo 'turning on accounting'; accton /var/account/acct
127
128 echo -n standard daemons:
129 echo -n ' update'; update
130 echo -n ' crond'; /usr/libexec/crond
131 echo '.'
132
133 echo -n starting network daemons:
134
135 # $gated and $routedflags are imported from /etc/netstart.
136 # If $gated == YES, gated is used; otherwise routed.
137 # If $routedflags == NO, routed isn't run.
138 if [ X${gated} = X"YES" -a -r /etc/gated.conf ]; then
139 echo -n ' gated'; gated $gatedflags
140 elif [ X${routedflags} != X"NO" ]; then
141 echo -n ' routed'; routed $routedflags
142 fi
143
144 if [ X${name_server} = X"YES" -a -r /etc/named.boot ]; then
145 echo -n ' named'; named
146 fi
147
148 # $rwhod is imported from /etc/netstart;
149 # if $rwhod is set to something other than NO, rwhod is run.
150 if [ ${rwhod-NO} != "NO" ]; then
151 echo -n ' rwhod'; rwhod
152 fi
153
154 echo -n ' printer'; lpd
155
156
157 if [ X${nfs_server} = X"YES" -a -r /etc/exports ]; then
158 echo -n ' portmap'; portmap
159 echo -n ' mountd'; mountd
160 echo -n ' nfsd'; nfsd -u 0,0,4 -t 0,0
161 echo -n ' nfsiod'; nfsiod 4
162 fi
163
164 echo -n ' sendmail'; sendmail -bd -q30m
165 echo -n ' inetd'; inetd
166 echo '.'
167
168 sh /etc/rc.local
169
170 date
171
172 # reset to normal (no colors)
173 echo -n "[0x"
174 exit 0
175