1 | # ChangeLog for Gentoo Linux System Intialization ("rc") scripts |
1 | # ChangeLog for Gentoo Linux System Intialization ("rc") scripts |
2 | # Copyright 2001 Gentoo Technologies, Inc.; Distributed under the GPL |
2 | # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL |
3 | # Written by Daniel Robbins (drobbins@gentoo.org) |
3 | # Written by Daniel Robbins (drobbins@gentoo.org) |
|
|
4 | |
|
|
5 | * rc-scripts 1.4.3.8p1 (21 May 2003) |
|
|
6 | |
|
|
7 | 21 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
8 | |
|
|
9 | Last fix I did not use the modified 'myservice', but used $1 again, |
|
|
10 | causing the network dependencies to bork. I did not notice this |
|
|
11 | as I have net.eth0 in default runlevel. |
|
|
12 | |
|
|
13 | * rc-scripts 1.4.3.8 (20 May 2003) |
|
|
14 | |
|
|
15 | 20 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
16 | |
|
|
17 | A '-' in a bash variable is not valid as well. Fix gendepend.awk and |
|
|
18 | rc-service.sh to handle this, thanks to YAMAKURA Makoto |
|
|
19 | <makoto@dsb.club.ne.jp>. |
|
|
20 | |
|
|
21 | Move /etc/issue to /etc/issue.logo, and have /etc/issue only print info |
|
|
22 | about the host it is running on. |
|
|
23 | |
|
|
24 | 18 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
25 | |
|
|
26 | Do not let devfsd handle /dev/log's permission management, as it breaks |
|
|
27 | selinux. Modified /etc/devfsd.conf, changes submited by Chris PeBenito |
|
|
28 | <pebenito@gentoo.org>. |
|
|
29 | |
|
|
30 | Fix type-o in /etc/init.d/net.ppp0, and add local ip-up/ip-down support. |
|
|
31 | |
|
|
32 | 14 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
33 | |
|
|
34 | We should not export the RC_GOT_* variables, as it breaks on some systems, |
|
|
35 | thanks to J?rg Gollnick <gentoo-bugs@wurzelbenutzer.de>, bug #20851. |
|
|
36 | |
|
|
37 | From C. Brewer <killian@gentoo.org>: |
|
|
38 | - Add hide-password to the connect cmd-line of /etc/init.d/net.ppp0, which is |
|
|
39 | suppose to be default, but why take chances? |
|
|
40 | - Also, echoing chmod 640 in the resolv.conf two-step at the end to solve the |
|
|
41 | kppp complaint. |
|
|
42 | |
|
|
43 | 13 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
44 | |
|
|
45 | For the network functions, the dependency code tried to create a funcion |
|
|
46 | with a '.' in the name, causing the network rc-scripts to not have any |
|
|
47 | dependencies. This should fix bug #20849 's order issue, thanks to |
|
|
48 | YAMAKURA Makoto <makoto@dsb.club.ne.jp> for noticing. |
|
|
49 | |
|
|
50 | Fix query_{before,after} to also check 'net' if 'service2' is a network |
|
|
51 | service. |
|
|
52 | |
|
|
53 | 12 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
54 | |
|
|
55 | More cleanups: |
|
|
56 | - Move the broken stuff from symlinks to a DB entry in ${svcdir}/deptree. |
|
|
57 | Updated /sbin/runscript.sh, /sbin/rc-services.sh and gendepend.awk for |
|
|
58 | this. |
|
|
59 | - Add functions for more common tasks in /sbin/runscript.sh to |
|
|
60 | /sbin/rc-services.sh. |
|
|
61 | - Move 'consoletype' to /sbin. |
|
|
62 | - Rename /sbin/rc-envupdate.sh to /sbin/env-update.sh; updated |
|
|
63 | /etc/init.d/bootmisc for this. |
|
|
64 | - Move rc-services.sh, rc-daemon.sh and rc-help.sh to /lib/rcscripts/sh. |
|
|
65 | - Improve detection of circular depends ... modified gendepend.awk for this. |
|
|
66 | |
|
|
67 | * rc-scripts 1.4.3.7 (11 May 2003) |
|
|
68 | |
|
|
69 | 11 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
70 | |
|
|
71 | Too many things to remember, so here is changes of note: |
|
|
72 | - More changes to gendepend.awk. This basically modifies it to not use |
|
|
73 | symlinks in $svcdir/{need,use,before,after,provide} anymore, but rather |
|
|
74 | create a file that can be sourced. Seems to speedup things nicely. |
|
|
75 | - Add /sbin/rc-services.sh. This is basically a module to get dependency |
|
|
76 | info from the new $svcdir/deptree, and some other new service functions. |
|
|
77 | - Modify the whole works to *only* source all needed files once. This |
|
|
78 | includes /sbin/{functions.sh,rc-services.sh,rc-daemon.sh}. Also |
|
|
79 | rc-services.sh will only source $svcdir/deptree once. /sbin/runscript.sh |
|
|
80 | is sourced more than once (actually each time a service is started or |
|
|
81 | stopped, but is is cut down much). Also seems to speed things up again. |
|
|
82 | - Fix a long outstanding bug in gendepend.awk that caused the 'net' |
|
|
83 | dependency to not be actually used in shutdown, causing the services |
|
|
84 | needing it to be stoped before net.* services. |
|
|
85 | - Add the RC_PARALLEL_STARTUP variable, with schedule_service_startup() to |
|
|
86 | /sbin/rc-services.sh and /etc/conf.d/rc. This is experimental parallel |
|
|
87 | startup of services, and seems to work nicely. Only issues to date is |
|
|
88 | that printing of messages is not synced, and a race very intermittantly |
|
|
89 | that causes a service to be started when it was already scheduled. |
|
|
90 | - Add a new dependency type 'parallel' that can be used to control if a |
|
|
91 | service can be started in paralled or not. Possible arguments is "yes" |
|
|
92 | or "no"; if it is not present, it is considered as "yes": |
|
|
93 | |
|
|
94 | depend() { |
|
|
95 | parallel yes|no |
|
|
96 | } |
|
|
97 | |
|
|
98 | Modified cachedepend.awk, gendepend.awk and /sbin/rc-services.sh. |
|
|
99 | - Fix the 'single' runlevel to actually work properly, and without a |
|
|
100 | /etc/runlevels/single directory. |
|
|
101 | - Remove the BOOT variable, and update /sbin/rc to set SOFTLEVEL properly. |
|
|
102 | Fix /etc/init.d/{checkroot,bootmisc} to use SOFTLEVEL instead of BOOT. |
|
|
103 | |
|
|
104 | 08 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
105 | |
|
|
106 | Major rework of /lib/rcscript/awk/gendepend.awk, cleaning it up nicely, |
|
|
107 | and adding more sanity checks. |
|
|
108 | |
|
|
109 | 04 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
110 | |
|
|
111 | Revert /etc/init.d/hostname the way it was, as it should be the user's |
|
|
112 | choice if he want to have a FQDN in there or not, bug #14946. |
|
|
113 | |
|
|
114 | Add /etc/init.d/domainname for those that want to use it. |
|
|
115 | |
|
|
116 | 29 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
117 | |
|
|
118 | Change the root check back the way it was, else it breaks with non bash |
|
|
119 | shells; modified /etc/profile. |
|
|
120 | |
|
|
121 | 29 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
122 | |
|
|
123 | Change test in /etc/profile for root to '[ "$EUID" -eq 0 ]', bug #20140. |
|
|
124 | |
|
|
125 | 27 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
126 | |
|
|
127 | Add various patches from Rachel Holmes <rach@gmx.net>: |
|
|
128 | |
|
|
129 | Dropped use of 'cat' in bash scripts, '$(<$file)' is there for that |
|
|
130 | purpose. Modified: |
|
|
131 | |
|
|
132 | /etc/init.d/net.ppp0 |
|
|
133 | /etc/init.d/nscd |
|
|
134 | /sbin/functions.sh |
|
|
135 | /sbin/rc |
|
|
136 | /sbin/rc-daemon.sh |
|
|
137 | /sbin/rc-envupdate.sh.bash |
|
|
138 | /sbin/runscript.sh |
|
|
139 | |
|
|
140 | Exchanged some gratuitous use of awk for grep. Awk is a little resource |
|
|
141 | hungry just for a simple test. (I [azarah] did not apply the changes to |
|
|
142 | tests for 'devfs', as having 'usbdevfs' in the equation will break |
|
|
143 | things). Modified /sbin/rc for this. |
|
|
144 | |
|
|
145 | Gentoo enforces having /proc, so uname -r is a little redundant when the |
|
|
146 | information is available without an external command. Modified: |
|
|
147 | |
|
|
148 | /etc/init.d/modules |
|
|
149 | /etc/init.d/serial |
|
|
150 | /sbin/functions.sh |
|
|
151 | /sbin/modules-update |
|
|
152 | |
|
|
153 | Changed 'id -u' commands to use $EUID in bash executed scripts, same |
|
|
154 | result no extra command. Modified: |
|
|
155 | |
|
|
156 | /sbin/rc-envupdate.sh |
|
|
157 | /sbin/rc-envupdate.sh.bash |
|
|
158 | /sbin/rc-update |
|
|
159 | |
|
|
160 | Removed all the cat sections, and the separate echo sections. The output |
|
|
161 | is _exactly_ the same, minus some spare spaces that have been removed. |
|
|
162 | Fourfold speed increase in the (granted flimsy) tests I have done. |
|
|
163 | Modified /sbin/rc-help.sh for this. |
|
|
164 | |
|
|
165 | Final remaining 'cat' commands removed, in favour of using bash's internal |
|
|
166 | '$(< )' or 'echo'. Use of echo leads the way to future support for bash's |
|
|
167 | i18n anyway. Modified: |
|
|
168 | |
|
|
169 | /sbin/rc |
|
|
170 | /sbin/rc-envupdate.sh |
|
|
171 | /sbin/rc-envupdate.sh.bash |
|
|
172 | |
|
|
173 | |
|
|
174 | |
|
|
175 | * rc-scripts 1.4.3.6 (27 Apr 2003) |
|
|
176 | |
|
|
177 | 27 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
178 | |
|
|
179 | Add a 'save' function /etc/init.d/clock, bug #19685. |
|
|
180 | |
|
|
181 | Add a slocate group to /etc/group, bug #19604. |
|
|
182 | |
|
|
183 | Do not stop a network service if we do not reboot on runlevel change, |
|
|
184 | as it could have been started by the user or hotplug. This should |
|
|
185 | address bug #12763; modified /sbin/rc for this. |
|
|
186 | |
|
|
187 | Fix /etc/init.d/hostname to set only the hostname, and not the NIS |
|
|
188 | domainname. |
|
|
189 | |
|
|
190 | Fix /etc/init.d/keymaps to be able to set the extended keymap in rc.conf. |
|
|
191 | This should close bug #16884. |
|
|
192 | |
|
|
193 | Fix /etc/profile to be /bin/sh compadible, bug #18918. |
|
|
194 | |
|
|
195 | Change the swap comments in /sbin/rc to "Activating (possible) swap" to |
|
|
196 | be more 'generic' ? Only try to disable swap if any devices/files was |
|
|
197 | activated. This should close bug #19089. |
|
|
198 | |
|
|
199 | Fix /etc/init.d/checkroot to only remount / rw if not set explicitly to |
|
|
200 | rw in /etc/fstab, bug #19158. |
|
|
201 | |
|
|
202 | 24 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
203 | |
|
|
204 | Fix /etc/init.d/net.ppp0 to do the right thing if stopped was called, |
|
|
205 | but the ppp link was already down, bug #15333. |
|
|
206 | |
|
|
207 | 12 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
208 | |
|
|
209 | Fix type-o in /etc/init.d/consolefont (line 38 should be 'retval=$?'). |
|
|
210 | Thanks to Matt Taylor <liverbugg@juno.com> (comment #6, bug #18344). |
|
|
211 | |
|
|
212 | From linux-2.5.68, we need to mount devpts on /dev/pts again ... |
|
|
213 | updated /sbin/rc for this. |
|
|
214 | |
|
|
215 | 11 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
216 | |
|
|
217 | Fix errors on sourcing /etc/profile if EDITOR is not set, bug #18995. |
|
|
218 | |
|
|
219 | 10 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
220 | |
|
|
221 | Make checking in unmount more strict, fixing bug #19007. |
|
|
222 | |
|
|
223 | 09 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
224 | |
|
|
225 | Add one more check to genenviron.awk, to spot cases where there is a |
|
|
226 | space between the variable and the '='. |
|
|
227 | |
|
|
228 | 08 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
229 | |
|
|
230 | Fix interactive shell not to have coloured prompt when used as a |
|
|
231 | dumb client, bug #18886. Fix was inspired by patch from |
|
|
232 | Matthew Kennedy <mkennedy@gentoo.org>. |
|
|
233 | |
|
|
234 | * rc-scripts 1.4.3.5 (06 Apr 2003) |
|
|
235 | |
|
|
236 | 06 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
237 | |
|
|
238 | Hopefully get the serial support sane again. Added /bin/consoletype |
|
|
239 | from Redhat to check for serial console. This should resolve bug |
|
|
240 | #18329 partly. |
|
|
241 | |
|
|
242 | Add the --nocolor option to suppress the use of colors. |
|
|
243 | |
|
|
244 | Change the 'status' option to return true if the service is running, |
|
|
245 | and false if stopped. This is only if the '--quiet' flag was also |
|
|
246 | given. |
|
|
247 | |
|
|
248 | Change the start and stop options not to output or return false if |
|
|
249 | the '--quiet' flag was given. |
|
|
250 | |
|
|
251 | Redirect stderr for consolechars in /etc/init.d/consolefont to /dev/null |
|
|
252 | as well, fixing bug #18344. |
|
|
253 | |
|
|
254 | Optimize $EDITOR extraction in /etc/profile closing bug #18614, thanks to |
|
|
255 | Aron Griffis <agriffis@gentoo.org>. |
|
|
256 | |
|
|
257 | Set HALT to 'shutdown' or 'reboot' depending on if we are shutting down |
|
|
258 | or rebooting. |
|
|
259 | |
|
|
260 | 30 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
261 | |
|
|
262 | Fix bug #18329 ... $COLS was not setup properly for serial console. |
|
|
263 | |
|
|
264 | 24 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
265 | |
|
|
266 | Optimize USB fs stuff in /etc/init.d/localmount to use less cats etc. |
|
|
267 | Fix a problem where it might not have mounted the USB fs when usbcore |
|
|
268 | was compiled as module, and the kernel did not mount it by the time |
|
|
269 | the script was started. Get it to rather check what filesystems is |
|
|
270 | supported when deciding if it should use 'usbdevfs' or 'usbfs', as |
|
|
271 | later 2.4 kernels now also support the newer 'usbfs'. |
|
|
272 | |
|
|
273 | Optimize RAID stuff in /etc/init.d/checkfs a bit. |
|
|
274 | |
|
|
275 | 16 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
276 | |
|
|
277 | Update sbin/rc-envupdate.sh.bash for bug #17549. |
|
|
278 | |
|
|
279 | * rc-scripts 1.4.3.4 (16 Mar 2003) |
|
|
280 | |
|
|
281 | 16 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
282 | |
|
|
283 | Add /etc/issue done by a Polish ascii-artists, v|rus with some slight |
|
|
284 | modifications (purple and display hostname, etc). Closes bug #16806. |
|
|
285 | |
|
|
286 | Add 'use hotplug' to /etc/init.d/net.eth0, to get cardbus hardware to |
|
|
287 | work properly. Closes bug #17348. |
|
|
288 | |
|
|
289 | Add update from Wout Mertens <wmertens@gentoo.org> to speedup shutdown |
|
|
290 | of dhcp interfaces, closing bug #17378. This modified /etc/init.d/net.eth0. |
|
|
291 | |
|
|
292 | 11 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
293 | |
|
|
294 | Fix usage of /usr/bin/cut in /sbin/functions.sh, thanks Brandon Low |
|
|
295 | <lostlogic@gentoo.org>! |
|
|
296 | |
|
|
297 | 10 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
298 | |
|
|
299 | Add sysfs support for 2.5 kernels (mounted to /sys). Updated /sbin/rc |
|
|
300 | and /etc/init.d/halt.sh for this. |
|
|
301 | |
|
|
302 | Update /etc/fstab to correctly mount /proc with: |
|
|
303 | |
|
|
304 | mount -t proc none /proc |
|
|
305 | |
|
|
306 | Do the same for /dev/shm: |
|
|
307 | |
|
|
308 | mount -t tmpfs none /dev/shm |
|
|
309 | |
|
|
310 | Fix a typeo in /etc/init.d/checkroot that caused 'umount -a' to output |
|
|
311 | noise if we exited a recovery console. |
|
|
312 | |
|
|
313 | Fix /etc/init.d/hostname using /usr/bin/cut, closing bug #17175, thanks |
|
|
314 | to Bobby Bingham <uhmmmm@columbus.rr.com> for noticing this. |
|
|
315 | |
|
|
316 | Bring down default gateway before adding new one .. this fixes issues |
|
|
317 | where eth0/whatever was brought up by kernel. Changed /etc/init.d/net.eth0 |
|
|
318 | for this, closing bug #17164. Thanks to nth <y.lesaint@free.fr> for the |
|
|
319 | fix. |
|
|
320 | |
|
|
321 | Fix /etc/init.d/modules to call modprobe with -q .. this fix issues where |
|
|
322 | it fails for module-init-tools if the module is already loaded. This |
|
|
323 | closes bug #17163, thanks to nth <y.lesaint@free.fr>. |
|
|
324 | |
|
|
325 | * rc-scripts 1.4.3.3 (09 Mar 2003) |
|
|
326 | |
|
|
327 | 09 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
328 | |
|
|
329 | Fix /etc/init.d/netmount not to unmount / on nfs/whatever, bug #16274. |
|
|
330 | |
|
|
331 | Fix net.eth0 not to try and start an interface if already up. |
|
|
332 | |
|
|
333 | Update MAKEDEV from Debian to support more archs. This adds support |
|
|
334 | for 'arm', 'hppa' among others. URL: |
|
|
335 | |
|
|
336 | http://packages.debian.org/stable/base/makedev.html |
|
|
337 | |
|
|
338 | Add support to /etc/init.d/modules to use /etc/modules.autoload/kernel-2.4 |
|
|
339 | if we are using a 2.4 kernel, and /etc/modules.autoload/kernel-2.5 if we |
|
|
340 | are using a 2.5 kernel ... bug #17109. |
|
|
341 | |
|
|
342 | 02 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
343 | |
|
|
344 | Update /etc/init.d/hostname to only set the hostname to whatever is before |
|
|
345 | the first '.', and then set the domainname to the rest, closing bug #14946. |
|
|
346 | |
|
|
347 | 28 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
348 | |
|
|
349 | Merge some of the optimizations from Graham Forest <vladimir@gentoo.org>. |
|
|
350 | |
|
|
351 | Fix spelling of dependency and some other spelling/grammer issues. |
|
|
352 | Thanks goes to Kerin Millar <kerin@recruit2recruit.net> and |
|
|
353 | Mike Frysinger <vapier@gentoo.org>, bug #15498. |
|
|
354 | |
|
|
355 | Change $svcdir to '/var/lib/init.d' to be more FHS compliant, bug #15192. |
|
|
356 | |
|
|
357 | Add 'Eterm' to /etc/skel/.bashrc, closing bug #14662. |
|
|
358 | |
|
|
359 | Adjust comments about PROTOCOLS in /etc/rc.conf to try and prevent |
|
|
360 | bug #14556. |
|
|
361 | |
|
|
362 | 27 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
363 | |
|
|
364 | Finally fix /etc/init.d/halt.sh to unmount non critical mounts properly. |
|
|
365 | |
|
|
366 | 20 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
367 | |
|
|
368 | Kill /dev/ttyp0 error at boot by changing test in /etc/init.d/modules |
|
|
369 | to 'test -c /dev/ttyp0 &> /dev/null'. |
|
|
370 | |
|
|
371 | 18 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
372 | |
|
|
373 | Update /sbin/modules-update to generate /etc/modprobe.devfs from |
|
|
374 | /etc/modules.devfs. This along with the devfs-hack.patch in the latest |
|
|
375 | module-init-tools-0.9.9 should get rid of many of the warnings/errors |
|
|
376 | with devfs, and makes it work a bit better. |
|
|
377 | |
|
|
378 | 17 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
379 | |
|
|
380 | Fix /etc/inputrc for dvorak keyboard layout, bug #2599 again. |
|
|
381 | |
|
|
382 | 16 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
383 | |
|
|
384 | Fix the 'source /etc/profile.env' to be '. /etc/profile' to have ksh |
|
|
385 | support. This resolves bug #14994. |
|
|
386 | |
|
|
387 | Move EDITOR to /etc/rc.conf. Also update /etc/profile to set EDITOR |
|
|
388 | according to /etc/rc.conf. |
|
|
389 | |
|
|
390 | Update /etc/init.d/checkfs to fix bug #14282. It did not exclude comments, |
|
|
391 | and used 'basename' which is located in /usr/bin. |
|
|
392 | |
|
|
393 | 13 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
394 | |
|
|
395 | Merge changes from Nick Jones <carpaski@gentoo.org> to not run stty if |
|
|
396 | used in portage. Fix the NOCOLOR stuff. Updated /sbin/functions.sh for |
|
|
397 | this. |
|
|
398 | |
|
|
399 | 06 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
400 | |
|
|
401 | Update src/awk/genenviron.awk to properly set the environment for each |
|
|
402 | rc-script's depend() function by sourcing required config files. |
|
|
403 | |
|
|
404 | 05 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
405 | |
|
|
406 | Fix /sbin/rc-envupdate.sh to use $svcdir to set SVCDIR. This is thanks |
|
|
407 | to Max Kalika <alkern23@yahoo.com>, bug #15050. |
|
|
408 | |
|
|
409 | 03 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
410 | |
|
|
411 | Fix /sbin/modules-update to work with module-init-tools-0.9.9. |
|
|
412 | |
|
|
413 | 30 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
414 | |
|
|
415 | Add 'use isapnp' to /etc/init.d/modules, closing bug #14677, thanks to |
|
|
416 | Hubert Hanghofer <hubert.hanghofer@netbeer.co.at>. |
|
|
417 | |
|
|
418 | 27 Jan 2003; Donny Davies <woodchip@gentoo.org>: |
|
|
419 | |
|
|
420 | Fix halt.sh by moving the nut UPS kill power stuff back into a function! |
|
|
421 | Add fix from the wonderful analysis of Toby Dickenson |
|
|
422 | <tdickenson@geminidataloggers.com> in #12947. |
|
|
423 | |
|
|
424 | 26 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
425 | |
|
|
426 | Fix start-stop-daemon to check the call to nice() correctly for failure, |
|
|
427 | closing bug #14359, thanks to YAMAKURA Makoto <makoto@dsb.club.ne.jp>. |
|
|
428 | |
|
|
429 | Fix globbing $? when checking return value of fsck in /etc/init.d/checkroot |
|
|
430 | and /etc/init.d/checkfs. This closes bug #13320, thanks to good work from |
|
|
431 | Malcolm Scott <m@lcolm.org.uk>. |
|
|
432 | |
|
|
433 | 21 Jan 2003; Mike Frysinger <vapier@gentoo.org>: |
|
|
434 | |
|
|
435 | Updated /etc/rc.conf to add elogin/entrance support #13790. |
|
|
436 | |
|
|
437 | 21 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
438 | |
|
|
439 | Update /etc/init.d/keymaps to enable unicode if required. This closes |
|
|
440 | bug #14306 thanks to Danny Milosavljevic <danny_milo@yahoo.com>. |
|
|
441 | |
|
|
442 | 19 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
443 | |
|
|
444 | Fix deadlock durning shutdown if tmpfs filesystems larger than free |
|
|
445 | memory, and swap gets deactivated, bug #13599. Updated /etc/init.d/halt.sh |
|
|
446 | for this. |
|
|
447 | |
|
|
448 | Merge in some fixes from Vapier <vapier@gentoo.org> to /sbin/functions.sh. |
|
|
449 | This closes bug #13868. |
|
|
450 | |
|
|
451 | Always add "/bin:/sbin:/usr/bin:/usr/sbin" to PATH, as it fixes both |
|
|
452 | 'su -c foo' not finding start-stop-daemon (etc), and bug #14127. |
|
|
453 | |
|
|
454 | Add route for lo interface to /etc/init.d/net.lo, closing bug #14055. |
|
|
455 | |
|
|
456 | 15 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
457 | |
|
|
458 | Clear $svcdir in /sbin/rc before we run depscan to make sure we do |
|
|
459 | not have stale entries left from hard reboot, thanks to pac1085 on |
|
|
460 | irc. |
|
|
461 | |
|
|
462 | * rc-scripts 1.4.3.2 (15 Jan 2003) |
|
|
463 | |
|
|
464 | 15 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
465 | |
|
|
466 | Truely fix bootup on seperate /var. |
|
|
467 | |
|
|
468 | Add some fixes and optimizations to /sbin/rc-update, thanks to |
|
|
469 | Daniel Robbins <drobbins@gentoo.org>. |
|
|
470 | |
|
|
471 | * rc-scripts 1.4.3.1 (15 Jan 2003) |
|
|
472 | |
|
|
473 | 15 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
474 | |
|
|
475 | Fix bootup on seperate /var. |
|
|
476 | |
|
|
477 | 14 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
478 | |
|
|
479 | Fix /etc/init.d/hostname and /etc/init.d/serial to close bug #13636. |
|
|
480 | |
|
|
481 | 07 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
482 | |
|
|
483 | Fix /etc/init.d/keymaps to force linux keycodes for PPC, thanks |
|
|
484 | to Olaf Hering <gentoo@aepfle.de>, bug #13193. |
|
|
485 | |
|
|
486 | Turn on -C option to fsck on for all calls to fsck. Updated scripts |
|
|
487 | /etc/init.d/checkroot and /etc/init.d/checkfs, closing bug #13321. |
|
|
488 | |
|
|
489 | * rc-scripts 1.4.3.0 (07 Jan 2003) |
|
|
490 | |
|
|
491 | 07 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
492 | |
|
|
493 | Too much to mention, but here are a few: |
|
|
494 | - Major rewrite of software RAID startup, based on Mandrake's, as |
|
|
495 | ours was pretty broken :( |
|
|
496 | - Redone /sbin/rc to work without the tmpfs/ramfs stat directory. |
|
|
497 | Much of /sbin/functions.sh and other scripts have been changed |
|
|
498 | to support this. |
|
|
499 | - Reworked /etc/inittab to support this. Also moved critical |
|
|
500 | mounting of local filesystems to 'sysinit' function of /sbin/rc. |
|
|
501 | - Move state directory to /var/state/init.d/ ($svcdir). |
|
|
502 | - Move Adelie node init to /sbin/functions.sh to try and simplify |
|
|
503 | /sbin/rc a bit. |
|
|
504 | - Updated Copyright dates to 2003. |
|
|
505 | |
|
|
506 | * rc-scripts 1.4.2.8 (06 Jan 2003) |
|
|
507 | |
|
|
508 | 02 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
|
|
509 | |
|
|
510 | Fix src/awk/genenviron.awk to work with multiple 'need', 'use', etc |
|
|
511 | lines, as it seems users do not note the need to have them all on |
|
|
512 | one line .... |
|
|
513 | |
|
|
514 | Fix /sbin/runscript.sh to detect 'net.adsl', or any other net.* |
|
|
515 | script not ending on a digit. This closes bug #12887. |
|
|
516 | |
|
|
517 | Fix get_KV to also check micro version of kernel; add KV_to_int() |
|
|
518 | helper function for get_KV. Update /etc/init.d/localmount to work |
|
|
519 | with new get_KV ... |
|
|
520 | |
|
|
521 | 28 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
522 | |
|
|
523 | Add support for generate-modprobe.conf or generating /etc/modprobe.conf |
|
|
524 | in the new sys-apps/module-init-tools. Note that you need version |
|
|
525 | 0.9.7 or later of sys-apps/module-init-tools. Updated |
|
|
526 | /sbin/modules-update for this. |
|
|
527 | |
|
|
528 | Change /etc/init.d/localmount to use 'usbfs' and not 'usbdevfs' if |
|
|
529 | we are running kernel 2.5 or later ... |
|
|
530 | |
|
|
531 | 26 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
532 | |
|
|
533 | Add /etc/init.d/crypto-loop and /etc/conf.d/crypto-loop, a cool |
|
|
534 | rc-script to setup encrypted loopback devices. This was kindly |
|
|
535 | donated by Matthew Kennedy <mkennedy@gentoo.org> (bug #11471). |
|
|
536 | |
|
|
537 | 25 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
538 | |
|
|
539 | Fix src/awk/genenviron.awk stripping *all* '=', closing |
|
|
540 | bug #8901. |
|
|
541 | |
|
|
542 | Fix src/awk/genenviron.awk not seperating CONFIG_PROTECT with |
|
|
543 | spaces ... |
|
|
544 | |
|
|
545 | * rc-scripts 1.4.2.7 (24 Dec 2002) |
|
|
546 | |
|
|
547 | 24 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
548 | |
|
|
549 | Add a fix to /sbin/functions.sh for bug #12601. |
|
|
550 | |
|
|
551 | 22 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
552 | |
|
|
553 | Add INFOPATH to /etc/env.d/00basic. |
|
|
554 | |
|
|
555 | Fix src/awk/genenviron.awk to get the order of the env.d files |
|
|
556 | correct. Also fix it to handle *all* the SPECIALS correctly. |
|
|
557 | This closes bug #12411. |
|
|
558 | |
|
|
559 | * rc-scripts 1.4.2.6 (18 Dec 2002) |
|
|
560 | |
|
|
561 | 18 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
562 | |
|
|
563 | Add mips changes to sbin/MAKEDEV. This should close bug #12329, |
|
|
564 | thanks to Nicholas Wourms <nwourms@netscape.net>. |
|
|
565 | |
|
|
566 | Quote some tests in /sbin/rc-update to fix/avoid the problem |
|
|
567 | in bug # |
|
|
568 | |
|
|
569 | Fix awk regex in /etc/init.d/halt.sh to fix bug #11795. |
|
|
570 | |
|
|
571 | Update shell for postgres user, closing bug #12258. |
|
|
572 | |
|
|
573 | 11 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
574 | |
|
|
575 | Fix src/awk/genenviron.awk not to add duplicate entries, closing |
|
|
576 | bug #8999. |
|
|
577 | |
|
|
578 | * rc-scripts 1.4.2.5 (09 Dec 2002) |
|
|
579 | |
|
|
580 | 08 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
581 | |
|
|
582 | Add another sync to /etc/init.d/halt.sh, closing bug 8173. |
|
|
583 | |
|
|
584 | Add smmsp uid and gid. Closes bug #8952. |
|
|
585 | |
|
|
586 | 04 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
587 | |
|
|
588 | Setup colums, etc up properly for serial consoles in /sbin/functions.sh. |
|
|
589 | Closes bug #11557, thanks to Erik Scrafford <erik@scrafford.org>. |
|
|
590 | |
|
|
591 | Add headers similar to that of portage-2.0.45 and up to the |
|
|
592 | generated profile files (/etc/{profile,csh}.env). Updated |
|
|
593 | src/awk/genenviron.awk for this. |
|
|
594 | |
|
|
595 | 01 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
596 | |
|
|
597 | Fix typeo in /etc/devfsd.conf, closing bug #11424, thanks to the |
|
|
598 | sharp eye of Techie2000 <Linux@mochamail.com>. |
|
|
599 | |
|
|
600 | Rename /sbin/update-modules to /sbin/modules-update, closing |
|
|
601 | bug #11445. |
|
|
602 | |
|
|
603 | Nano moved from /usr/bin/nano to /bin/nano. Fix this in |
|
|
604 | /etc/env.d/00basic, bug #10916. |
|
|
605 | |
|
|
606 | 27 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
607 | |
|
|
608 | Add more improvements to clustering code. This is from |
|
|
609 | Olivier Crete <crete@cerca.umontreal.ca>, bug #4151. |
|
|
610 | |
|
|
611 | 26 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
612 | |
|
|
613 | Change default 'net' dependency behaviour to be more suited |
|
|
614 | for notebook users. Basically if at least one net.* service |
|
|
615 | beside net.lo start successfully, the 'net' dependency is |
|
|
616 | considered up. Server admin can set RC_NET_STRICT_CHECKING="yes" |
|
|
617 | in /etc/conf.d/rc to change this back to the old default. |
|
|
618 | This is the start to address bug #2706. |
|
|
619 | |
|
|
620 | * rc-scripts 1.4.2.4 (26 Nov 2002) |
|
|
621 | |
|
|
622 | 26 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
623 | |
|
|
624 | Initial merge of bits for Adelie Linux for SSI clusters. More |
|
|
625 | info at: |
|
|
626 | |
|
|
627 | http://www.cerca.umontreal.ca/hpc/en/projects/adelie/index.html |
|
|
628 | |
|
|
629 | 25 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
630 | |
|
|
631 | One liner fix to src/awk/cachedepends.awk to once again fix |
|
|
632 | bug #7803. |
|
|
633 | |
|
|
634 | 18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
635 | |
|
|
636 | Add 'alias char-major-89 i2c-dev' to /etc/modules.d/aliases. |
|
|
637 | This should close bug #10891. |
|
|
638 | |
|
|
639 | * rc-scripts 1.4.2.3 (18 Nov 2002) |
|
|
640 | |
|
|
641 | 18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
642 | |
|
|
643 | Add some more checks to src/awk/*. Fix error printing for |
|
|
644 | /sbin/depscan.sh. |
|
|
645 | |
|
|
646 | Link awk module with gcc and not with ld. This should fix |
|
|
647 | problems on sparc and alpha. Many thanks for this fix to |
|
|
648 | Stephan Jones <cretin@gentoo.org>. |
|
|
649 | |
|
|
650 | Remove the copyright info from config files, thanks to |
|
|
651 | Matthew Kennedy <mkennedy@gentoo.org>. |
|
|
652 | |
|
|
653 | * rc-scripts 1.4.2.2 (18 Nov 2002) |
|
|
654 | |
|
|
655 | 18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
656 | |
|
|
657 | Add src/awk/genenviron.awk which is rc-envupdate.sh ported |
|
|
658 | to awk. This is also much faster than its bash version. |
|
|
659 | |
|
|
660 | Remove the 'Spider cat fix' from depscan.sh.bash, as it makes |
|
|
661 | things even slower on older boxes. Bug #10548. |
|
|
662 | |
|
|
663 | After a bored Vapier decided that he needed to update the |
|
|
664 | licenses of things in /etc :P, I did the rest. Hopefully |
|
|
665 | not too many people will nuke thier fstab :/ |
|
|
666 | |
|
|
667 | * rc-scripts 1.4.2.1 (18 Nov 2002) |
|
|
668 | |
|
|
669 | 18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
670 | |
|
|
671 | Update src/awk/cachedepends.awk to find its own rc-scripts, |
|
|
672 | fixing the need for find which broke systems with /usr on |
|
|
673 | a different partition. |
|
|
674 | |
|
|
675 | 17 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
676 | |
|
|
677 | Add some extra checks to src/awk/cachedepends.awk and |
|
|
678 | src/awk/gendepends.awk. |
|
|
679 | |
|
|
680 | Move some of the more generic functions in src/awk/gendepends.awk |
|
|
681 | to src/awk/functions.awk. |
|
|
682 | |
|
|
683 | * rc-scripts 1.4.2 (17 Nov 2002) |
|
|
684 | |
|
|
685 | 17 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
686 | |
|
|
687 | Add initial version of new depscan.sh. This uses awk scripts |
|
|
688 | to do the main work, giving about 10 times speed improvement on |
|
|
689 | slower machines. Updated /sbin/depscan.sh, src/filefuncts.c, |
|
|
690 | src/Makefile, src/awk/cachedepends.awk and src/awk/gendepends.awk |
|
|
691 | for this. This should close bug #10548. |
|
|
692 | |
|
|
693 | * rc-scripts 1.4.1.2 (5 Nov 2002) |
|
|
694 | |
|
|
695 | 5 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
696 | |
|
|
697 | Add UID/GID of 250 for Portage Fakeroot account. |
|
|
698 | |
|
|
699 | 4 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
700 | |
|
|
701 | Change /etc/init.d/clock to depend on localmount again, fixing |
|
|
702 | bug #10048. |
|
|
703 | |
|
|
704 | Get deps on logger sane again. I wanted to get the logger started |
|
|
705 | as early as possible, but clock for one breaks if /usr is mounted |
|
|
706 | on seperate partition. |
|
|
707 | |
|
|
708 | 29 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
709 | |
|
|
710 | Fix return in /etc/init.d/modules to return 0 if /proc/modules |
|
|
711 | do not exists. Closes bug #7738, comment #5. |
|
|
712 | |
|
|
713 | * rc-scripts 1.4.1.1 (28 Oct 2002) |
|
|
714 | |
|
|
715 | 28 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
716 | |
|
|
717 | Fix /sbin/update-modules not to include backup files. Closes |
|
|
718 | bug #9707. |
|
|
719 | |
|
|
720 | 26 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
721 | |
|
|
722 | Fix update-modules borking if there are directories present |
|
|
723 | in /etc/modules.d/. Closes bug #9632. |
|
|
724 | |
|
|
725 | 17 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
726 | |
|
|
727 | Change deps on /etc/init.d/{clock,hostname,modules} not to |
|
|
728 | depend on localmount, but rather on checkroot, as all of them |
|
|
729 | just need / to be mounted. This should fix race conditions |
|
|
730 | because of checkfs dependency on modules. This should close |
|
|
731 | bug #9266. |
|
|
732 | |
|
|
733 | * rc-scripts 1.4.1 (13 Oct 2002) |
|
|
734 | |
|
|
735 | 13 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
736 | |
|
|
737 | Create and fix permissions on /tmp/.{ICE,X11}-unix/. This |
|
|
738 | is additional measures for bug #8281. |
|
|
739 | |
|
|
740 | 12 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
741 | |
|
|
742 | Update /etc/init.d/net.eth0 to fix bug #8626. |
|
|
743 | |
|
|
744 | Fix /sbin/rc-update to check return code of "ln". This should |
|
|
745 | close bug #8867. |
|
|
746 | |
|
|
747 | 29 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
748 | |
|
|
749 | Fix indentation in /etc/inputrc. This should close |
|
|
750 | bug #8368. |
|
|
751 | |
|
|
752 | Add extended status functionality. Should close bug #2462. |
|
|
753 | |
|
|
754 | Add support for /sbin/rc-update to check if the rc-script |
|
|
755 | is executable or not. Thanks to widersacher@gmx.net, closing |
|
|
756 | bug #8326. |
|
|
757 | |
|
|
758 | 25 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
759 | |
|
|
760 | Fix /etc/init.d/bootmisc not to kill pidfiles of running |
|
|
761 | daemons. Improve NGPT support in /sbin/rc a bit. |
|
|
762 | |
|
|
763 | 23 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
764 | |
|
|
765 | Fix my last screwup with /etc/init.d/net.ppp0. Basically |
|
|
766 | forgot to change a few DEVICE's to IFACE ... |
|
|
767 | |
|
|
768 | 22 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
769 | |
|
|
770 | NGPT support. |
|
|
771 | |
|
|
772 | 17 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
773 | |
|
|
774 | Did a small fix to /etc/init.d/net.eth0, thanks to |
|
|
775 | naanyaar2000@yahoo.com, bug #7407. |
|
|
776 | |
|
|
777 | 16 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
778 | |
|
|
779 | Add the permission stuff for generic scsi when compiled as |
|
|
780 | module, thanks to Bauno <bauno@inwind.it>. |
|
|
781 | |
|
|
782 | Add support for /etc/devfs.d/ for additional devfs config |
|
|
783 | stuff .. idea from Denys Duchier <Denys.Duchier@ps.uni-sb.de>. |
|
|
784 | |
|
|
785 | 11 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
786 | |
|
|
787 | Fix small type-o from last changes to /etc/init.d/netmount. |
|
|
788 | Should resolve bug #7803. |
|
|
789 | |
|
|
790 | * rc-scripts 1.4.0 (7 Sep 2002) |
|
|
791 | |
|
|
792 | 7 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
793 | |
|
|
794 | Update /etc/init.d/net.eth0 to handle individual broadcast |
|
|
795 | and netmask for aliases. Should close bug #7407. |
|
|
796 | |
|
|
797 | Give /var/run/utmp and /var/log/wtmp the proper permissions |
|
|
798 | and ownership. First steps in fixing bug #7630. |
|
|
799 | |
|
|
800 | Change Raid stuff again in /etc/init.d/checkfs. |
|
|
801 | |
|
|
802 | 26 Aug 2002; Donny Davies <woodchip@gentoo.org>: |
|
|
803 | |
|
|
804 | Give root a 'root' GECOS in /etc/passwd, was NULL before. |
|
|
805 | |
|
|
806 | * rc-scripts 1.3.9 (25 Aug 2002) |
|
|
807 | |
|
|
808 | 25 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
809 | |
|
|
810 | Update /sbin/rc to fix some spelling/slang mistakes. Closes |
|
|
811 | bug #6887. |
|
|
812 | |
|
|
813 | Move /etc/init.d/net.ppp0 's config to /etc/conf.d/net.ppp0. |
|
|
814 | This closes bug #6378. |
|
|
815 | |
|
|
816 | Add IPv6 support to /etc/init.d/net.eth0. Closes bug #6175, |
|
|
817 | with many thanks to Asbjorn Sannes <ace@sannes.org>. |
|
|
818 | |
|
|
819 | 20 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
820 | |
|
|
821 | Update /etc/init.d/bootmisc to reset pam_console permissions. |
|
|
822 | |
|
|
823 | Update /etc/devfsd.conf to have the "pam_console_apply_devfsd.so" |
|
|
824 | line for getting devfs to work with pam_console. |
|
|
825 | |
|
|
826 | 12 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
827 | |
|
|
828 | Update /etc/init.d/keymaps to first load the windowkeys.inc then |
|
|
829 | the user selected one, fixing bug #6295. |
|
|
830 | |
|
|
831 | 11 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
832 | |
|
|
833 | Change the 'cat' in check_rcscript() to a single 'awk' in |
|
|
834 | /sbin/depscan.sh. This should fix broken pipe issues if the |
|
|
835 | loop exists too early. Resolves bug #5961. |
|
|
836 | |
|
|
837 | Fix software RAID startup/shutdown, bug #5310. Modified |
|
|
838 | /etc/init.d/checkfs and /etc/init.d/halt.sh for this. |
|
|
839 | |
|
|
840 | * rc-scripts 1.3.8 (08 Aug 2002) |
|
|
841 | |
|
|
842 | 7 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
843 | |
|
|
844 | Move the color ls stuff to .bashrc. Fix bug #5250. |
|
|
845 | |
|
|
846 | 6 Aug 2002; Dan Armak <danarmak@gentoo.org>: |
|
|
847 | |
|
|
848 | Correct the comments in rc.conf about the XSESSION variable: it should |
|
|
849 | be set to "kde-<version>" not "KDE". Closes bug #5948. |
|
|
850 | |
|
|
851 | 5 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
852 | |
|
|
853 | Fix the 'Usage' line in the help to return the correct options for |
|
|
854 | the script (/sbin/runscript.sh). Resolve bug #6029. |
|
|
855 | |
|
|
856 | 3 Aug 2002; Donny Davies <woodchip@gentoo.org>: |
|
|
857 | |
|
|
858 | Added UPS shutdown support for nut to halt.sh. |
|
|
859 | Added nut user/group as uid/gid 84. |
|
|
860 | |
|
|
861 | 27 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
862 | |
|
|
863 | Updated /sbin/rc's way of checking for devfs support (now rather uses |
|
|
864 | awk, as it is more accurate). Closes bug #5458. |
|
|
865 | |
|
|
866 | Add the Redhat/Mandrake /forcefsck and /fastboot options to our checkroot |
|
|
867 | and checkfs. Updated /etc/init.d/{checkroot,checkfs,halt.sh} for this. |
|
|
868 | Thanks goes to Chris PeBenito (bug #5570). |
|
|
869 | |
|
|
870 | Changed most daemons to use /bin/false as shell. Should close bug #5388. |
|
|
871 | |
|
|
872 | 27 Jul 2002; Nicholas Jones <carpaski@gentoo.org>: |
|
|
873 | |
|
|
874 | Added vpopmail user and group as 89:89 |
|
|
875 | |
|
|
876 | 22 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
877 | |
|
|
878 | Add the cyrus user to /etc/passwd. Resolves bug #4100. |
|
|
879 | |
|
|
880 | Some bugfixes and speed improvements to /sbin/depscan.sh after |
|
|
881 | last changes. |
|
|
882 | |
|
|
883 | Replace some cat/grep's in /sbin/rc-envupdate.sh with awk's to |
|
|
884 | get some speed improvements. |
|
|
885 | |
|
|
886 | 21 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
887 | |
|
|
888 | Fix LVM support in /etc/init.d/checkfs again, thanks to help from |
|
|
889 | Kyle Manna <nitro@gentoo.org>. |
|
|
890 | |
|
|
891 | Add software RAID support to /etc/init.d/checkfs, thanks to |
|
|
892 | Daniel Ahlberg <aliz@gentoo.org>. |
|
|
893 | |
|
|
894 | Update the cache_depend() funtion in /sbin/depscan.sh not to |
|
|
895 | quit on any "}", but only on the one matching the first "{". This |
|
|
896 | requires wc in /bin, so baselayout should depend on |
|
|
897 | >=sys-apps/textutils-2.0.19-r2 |
|
|
898 | |
|
|
899 | Update /etc/init.d/netmount to try and detect nfs mounts that should be |
|
|
900 | mounted automatically on boot. This requires awk in /bin, so baselayout |
|
|
901 | should depend on >=sys-apps/gawk-3.1.0-r3. |
|
|
902 | |
|
|
903 | * rc-scripts 1.3.7 (17 Jul 2002) |
|
|
904 | |
|
|
905 | 17 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
906 | |
|
|
907 | Add logging functionality to the rc-scripts, thanks to Alexander Holler, |
|
|
908 | bug #4037 for the basic idea. Updated /sbin/functions.sh for this. |
|
|
909 | |
|
|
910 | 16 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
911 | |
|
|
912 | Add additional entries to /etc/services to support cyrus-imapd, thanks |
|
|
913 | to Nick Hadaway <raker@gentoo.org>. |
|
|
914 | |
|
|
915 | Update /etc/init.d/consolefont to resolve bug #4968. This fixes a |
|
|
916 | problem with non 7bit ascii symbols. |
|
|
917 | |
|
|
918 | Updated /etc/init.d/checkfs to detect if lvm is already active. |
|
|
919 | This should resolve bug #3613. |
|
|
920 | |
|
|
921 | 5 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
922 | |
|
|
923 | Add "usb" group, gid 85. Move "sshd" user and group to 22. Move |
|
|
924 | "games" user and group to 35 |
|
|
925 | |
|
|
926 | 3 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
927 | |
|
|
928 | Update Copyright displayed at boot, thanks to Sascha Schwabbauer |
|
|
929 | (aka cybersystem). Updated /sbin/rc for this. |
|
|
930 | |
|
|
931 | 30 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
932 | |
|
|
933 | Update /etc/skel/.bashrc to update the window title of X terminals |
|
|
934 | that supports it. Closes bug #4232. |
|
|
935 | |
|
|
936 | 26 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
937 | |
|
|
938 | Add sshd user and group. Updated /etc/passwd and /etc/group for this. |
|
|
939 | |
|
|
940 | Update /etc/inputrc to resolve bug #2599. |
|
|
941 | |
|
|
942 | 20 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
943 | |
|
|
944 | Add /opt/bin to $PATH and $ROOTPATH, closing bug #3603. Modified |
|
|
945 | /etc/env.d/00basic for this. |
|
|
946 | |
|
|
947 | Add some new daemon stop and pid detection stuff to /sbin/functions.sh. |
|
|
948 | Nothing official, but I spent enouth time on it not to want to loose it :) |
|
|
949 | |
|
|
950 | Fixed a bug in /sbin/functions.sh that caused rc-scripts run as cron jobs |
|
|
951 | to give output to stderr. This was caused by a call to "stty", which when |
|
|
952 | run without a attatched terminal, have this effect. Basically just pipe |
|
|
953 | stderr to /dev/null. |
|
|
954 | |
|
|
955 | 5 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
956 | |
|
|
957 | Add /usr/local/share/man to $MANPATH (/etc/env.d/00basic), resolving |
|
|
958 | bug #3363 |
|
|
959 | |
|
|
960 | 26 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
961 | |
|
|
962 | Update /etc/init.d/netmount not to try and mount NFS filesystems |
|
|
963 | if portmap was not started. This is to stop "hang" problems for |
|
|
964 | new users who do not add portmap to the default runlevel. See |
|
|
965 | bug #2555. |
|
|
966 | |
|
|
967 | Add the video4linux stuff to /etc/devfsd.conf. Resolves bug #2015. |
|
|
968 | |
|
|
969 | 19 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
970 | |
|
|
971 | Move $EDITOR from /etc/profile to /etc/env.d/00basic. |
|
|
972 | |
|
|
973 | 13 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
974 | |
|
|
975 | Change the homes of user "at" and "cron" in /etc/passwd, as |
|
|
976 | they moved to /var/spool/cron... |
|
|
977 | |
|
|
978 | * rc-scripts 1.3.5 (12 May 2002) |
|
|
979 | |
|
|
980 | 12 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
981 | |
|
|
982 | Make slight modifications to /sbin/depscan.sh to improve speed (about |
|
|
983 | 1 second on a celeron 633). |
|
|
984 | |
|
|
985 | Finally fix /sbin/runscript.sh to properly handle interdependencies |
|
|
986 | between types need/use and before/after on runlevel change. I can |
|
|
987 | actually kick myself for previous implementations, as this fix simplifies |
|
|
988 | things a lot, and is almost 30 lines of code less! |
|
|
989 | |
|
|
990 | Change /etc/init.d/netmount not to fail if all mounts are not mounted. |
|
|
991 | It rather just exit with a warning, as I think most people have like |
|
|
992 | me mounts that are to boxes that are not always up. |
|
|
993 | |
|
|
994 | Resolve bug #2439 (should not use try with the dd command for ramdisk |
|
|
995 | stuff). Also increase the number of inodes used for the ramdisk to |
|
|
996 | fix "out of space" errors. Updated /sbin/rc for this. |
|
|
997 | |
|
|
998 | 10 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
999 | |
|
|
1000 | Resolve bug #2505 ... /sbin/rc-envupdate.sh should not use |
|
|
1001 | backup files to generate /etc/profile.env. |
|
|
1002 | |
|
|
1003 | Resolve bug #2489 and #2175. Modified /etc/init.d/net.eth0 |
|
|
1004 | for this. |
|
|
1005 | |
|
|
1006 | 6 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1007 | |
|
|
1008 | Fixed /sbin/rc-envupdate.sh to only use the $KDEDIR of the highest |
|
|
1009 | /etc/env.d/ file. Same for $QTDIR. |
|
|
1010 | |
|
|
1011 | 5 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1012 | |
|
|
1013 | Add /etc/DIR_COLORS as it is no longer shipped with fileutils, |
|
|
1014 | and is needed for some fixes. |
|
|
1015 | |
|
|
1016 | 28 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1017 | |
|
|
1018 | Update /etc/rc.conf to be more clear and state that you should |
|
|
1019 | remove consolefont from startup if you do not use it. Should |
|
|
1020 | resolve bug #2174. |
|
|
1021 | |
|
|
1022 | 26 Apr 2002; Donny Davies <woodchip@gentoo.org> passwd, group : |
|
|
1023 | |
|
|
1024 | Added user/group apache with uid/gid 81. |
|
|
1025 | |
|
|
1026 | 25 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1027 | |
|
|
1028 | Remove the "-net" from the line setting the default gateway |
|
|
1029 | in /etc/init.d/net.eth0. Thanks to Peter W. Michaleas for |
|
|
1030 | noting this. |
|
|
1031 | |
|
|
1032 | 24 Apr 2002; Donny Davies <woodchip@gentoo.org> rc.conf : |
|
|
1033 | |
|
|
1034 | Remove NFSSERVER from rc.conf since it's now covered in /etc/conf.d/nfs |
|
|
1035 | which is installed with the nfs-utils package. Also tidied up some |
|
|
1036 | really old, leftover junk like the non-supported stuff from rc5. |
|
|
1037 | Closes #1754. |
|
|
1038 | |
|
|
1039 | 23 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1040 | |
|
|
1041 | Remove creation of /var/run/utmpx from bootmisc again. Seems |
|
|
1042 | other people have wierd problems. |
|
|
1043 | |
|
|
1044 | * rc-scripts 1.3.4 (21 Apr 2002) |
|
|
1045 | |
|
|
1046 | 21 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1047 | |
|
|
1048 | Add /sbin/rc-envupdate.sh to speedup updating of /etc/profile.env, |
|
|
1049 | and /etc/csh.env. Update /etc/init.d/bootmisc to use this. |
|
|
1050 | |
|
|
1051 | Implement the status commandline argument. Updated /sbin/runscript.sh |
|
|
1052 | and /sbin/rc-help.sh for this. |
|
|
1053 | |
|
|
1054 | Fix /sbin/depscan.sh to honour NEED and USE overriding BEFORE |
|
|
1055 | and AFTER. |
|
|
1056 | |
|
|
1057 | 12 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1058 | |
|
|
1059 | Update /etc/init.d/bootmisc to create /var/run/utmpx. This |
|
|
1060 | is needed, else /usr/bin/newgrp segfault. |
|
|
1061 | |
|
|
1062 | 11 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1063 | |
|
|
1064 | Update /etc/skel/.bash_profile to make it tcsh compadible. |
|
|
1065 | Thanks to Väinö Järvelä for this fix. |
|
|
1066 | |
|
|
1067 | Update /etc/profile to also set the PS? variables if $SHELL |
|
|
1068 | is set to /bin/sh. This should make prompt colours in |
|
|
1069 | bootstrap work again. |
|
|
1070 | |
|
|
1071 | Move LVM stuff to checkfs to ensure that they get fscked. |
|
|
1072 | This resolves bug #1552. |
|
|
1073 | |
|
|
1074 | * rc-scripts 1.3.3 (5 Apr 2002) |
|
|
1075 | |
|
|
1076 | 5 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1077 | |
|
|
1078 | Move /etc/init.d/{depscan.sh,runscript.sh,functions.sh} to /sbin. |
|
|
1079 | This is done to try and ensure system integrity. |
|
|
1080 | |
|
|
1081 | 1 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1082 | |
|
|
1083 | Add quotes to the "export INPUTRC=/etc/inputrc" line to resolve bug #1391. |
|
|
1084 | |
|
|
1085 | Add a error message to /etc/init.d/consolefont, resolving bug #1415. |
|
|
1086 | |
|
|
1087 | Add a bash check to the code that sets the prompt, fixing bug #1078. |
|
|
1088 | |
|
|
1089 | * rc-scripts 1.3.2 (24 Mar 2002) |
|
|
1090 | |
|
|
1091 | 24 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1092 | |
|
|
1093 | Resolve bug #1274. Updated /etc/init.d/hostname and /etc/init.d/bootmisc |
|
|
1094 | for this. |
|
|
1095 | |
|
|
1096 | With the "before" and "after" stuff, recursion levels was getting too high, |
|
|
1097 | and with some cases, things just plain did not work as it should. Reworked |
|
|
1098 | things to to lower the levels of recursion and get the order right. Updated |
|
|
1099 | /etc/init.d/runscript.sh for this. |
|
|
1100 | |
|
|
1101 | Fixed a problem in /sbin/rc and /etc/init.d/runscript.sh where |
|
|
1102 | ${svcdir}/softlevel did not always exist, but runscript.sh tried to open it. |
|
|
1103 | |
|
|
1104 | Enhance --quiet support. Updated /etc/init.d/functions.sh for this. |
|
|
1105 | |
|
|
1106 | Remove /etc/pwdb.conf, as pwdb already install a copy of this. |
|
|
1107 | |
|
|
1108 | Remove /etc/pam.d/{rexec,rlogin,rsh} as pam already install this. |
|
|
1109 | |
|
|
1110 | Added $INPUTRC to /etc/profile, since too many people keep on bugging me, |
|
|
1111 | and it seems it has fallen now to my discression. |
|
|
1112 | |
|
|
1113 | * rc-scripts 1.3.1 (23 Mar 2002) |
|
|
1114 | |
|
|
1115 | 23 Mar 2002; Daniel Robbins <drobbins@gentoo.org>: init.d/net.eth0: fix for |
|
|
1116 | DHCP lease release from Jim Nutt. |
|
|
1117 | |
|
|
1118 | 23 Mar 2002; Daniel Robbins <drobbins@gentoo.org>: rolling a new release |
|
|
1119 | since there are a lot of important bug fixes in here that are needed. |
|
|
1120 | |
|
|
1121 | 23 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1122 | |
|
|
1123 | Resolve bug #1292. |
|
|
1124 | |
|
|
1125 | Remove the extra 'depmod -a' in /etc/init.d/modules, thanks to |
|
|
1126 | Spidler. |
|
|
1127 | |
|
|
1128 | 21 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1129 | |
|
|
1130 | Update /sbin/rc to fix a 'cat mounts' instead of the correct |
|
|
1131 | version, 'cat /proc/mounts'. |
|
|
1132 | |
|
|
1133 | 19 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1134 | |
|
|
1135 | Add initial support for the --quiet flag that suppress output. |
|
|
1136 | |
|
|
1137 | 18 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1138 | |
|
|
1139 | Remove the 'try' from 'try /etc/init.d/depscan.sh' in /sbin/rc |
|
|
1140 | as not all errors by depscan.sh is critical. It should be |
|
|
1141 | reworked to do better error handeling. |
|
|
1142 | |
|
|
1143 | 14 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1144 | |
|
|
1145 | Fix the GID and UID of nobody and nogroup in /etc/passwd and |
|
|
1146 | /etc/group to match those of Debian, FBSD and others. Thanks |
|
|
1147 | to those who reported it, and Woodchip for looking up the |
|
|
1148 | proper values. |
|
|
1149 | |
|
|
1150 | Update /etc/init.d/net.eth0 to properly down DHCP interfaces. |
|
|
1151 | This resolves bug #1150, thanks to Paul Fleischer. |
|
|
1152 | |
|
|
1153 | 11 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1154 | |
|
|
1155 | Updated /etc/init.d/functions.sh not to use /usr/bin/basename, |
|
|
1156 | as some users have /usr on seperate partition which is not |
|
|
1157 | mounted when depscan.sh is run the first time. |
|
|
1158 | |
|
|
1159 | Updated the checking for more than one service providing the |
|
|
1160 | same virtual function in /etc/init.d/depscan.sh. It should |
|
|
1161 | be working now, and this also fix a problem that when there is no |
|
|
1162 | service providing a virtual, counter was used uninitialized. |
|
|
1163 | |
|
|
1164 | * rc-scripts 1.3.0 (10 Mar 2002) |
|
|
1165 | |
|
|
1166 | 10 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1167 | |
|
|
1168 | Resolved bug #1021; updated /etc/init.d/consolefont for this. |
|
|
1169 | |
|
|
1170 | Resolved bug #1029; updated /etc/init.d/net.eth0 for this. |
|
|
1171 | |
|
|
1172 | Resolved bug #990; updated /etc/init.d/net.eth0, /etc/init.d/netmount |
|
|
1173 | and /etc/init.d/localmount for this. |
|
|
1174 | |
|
|
1175 | Lots of form/syntax cleanups, most things should be more |
|
|
1176 | consistant now. Fixed fail detection/return values of lots of |
|
|
1177 | scripts. |
|
|
1178 | |
|
|
1179 | Lots of cleanup/fixes in the three main scripts behind our |
|
|
1180 | rc-system, /sbin/rc, /etc/init.d/depscan.sh, /etc/init.d/runscript.sh |
|
|
1181 | |
|
|
1182 | Fix a bug regarding a invalid $PATH for portage if /etc/init.d/functions.sh |
|
|
1183 | is sourced in a ebuild. |
|
|
1184 | |
|
|
1185 | Fix a bug that our rc-script wrapper introduced: Global variables |
|
|
1186 | in scripts no longer worked. Updated /etc/init.d/runscript.sh for |
|
|
1187 | this. |
|
|
1188 | |
|
|
1189 | Implemented more error checking for the main startup code in /sbin/rc. |
|
|
1190 | Also fixed try() for mounting /proc (maybe all mount commands). |
|
|
1191 | The function worked fine in a simulated test, but in real life failed |
|
|
1192 | to detect a error when mounting /proc (remember to thank Grant for |
|
|
1193 | his UserMode ebuilds, and Guide). |
|
|
1194 | |
|
|
1195 | * rc-scripts 1.2.9 (6 Mar 2002) |
|
|
1196 | |
|
|
1197 | 6 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1198 | |
|
|
1199 | General form updates and some piping fixes. |
|
|
1200 | |
|
|
1201 | Updated /etc/inittab, /etc/init.d/xdm and /etc/X11/startDM.sh |
|
|
1202 | to fix a problem where startDM.sh would be respawned repeatedly |
|
|
1203 | if xdm was not in the default runlevel. |
|
|
1204 | |
|
|
1205 | * rc-scripts 1.2.8 (4 Mar 2002) |
|
|
1206 | |
|
|
1207 | 4 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1208 | |
|
|
1209 | Add /etc/init.d/xdm, /etc/X11/startDM.sh and updated /etc/inittab |
|
|
1210 | to fix the "dead key" problem we had with xdm/gdm/kdm. We should |
|
|
1211 | move them to the xfree ebuild later on when things settles down. |
|
|
1212 | |
|
|
1213 | Added some sanity checks to /sbin/rc, /etc/init.d/runscripts.sh. |
|
|
1214 | |
|
|
1215 | Added a basic $PATH to /etc/init.d/functions.sh to fix a problem |
|
|
1216 | where we had a invalid $PATH on boot in some cases. |
|
|
1217 | |
|
|
1218 | Updated /etc/init.d/keymap and /etc/init.d/consolefont to work with |
|
|
1219 | the new sys-apps/kbd package. |
|
|
1220 | |
|
|
1221 | * rc-scripts 1.2.7 (3 Mar 2002) |
|
|
1222 | |
|
|
1223 | 3 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1224 | |
|
|
1225 | Fixed the problem of rc-scripts trying to start/stop a service multiple |
|
|
1226 | times if it fails to do so. Updated /etc/init.d/runscript.sh and /sbin/rc |
|
|
1227 | for this. |
|
|
1228 | |
|
|
1229 | Fixing some variable declarations in /etc/init.d/runscript.sh caused |
|
|
1230 | /etc/init.d/net.lo to fail on stop ($IFACE was set invalid). Fixed |
|
|
1231 | this. |
|
|
1232 | |
|
|
1233 | Added caching of the "depend() { need foo; } " lines, and updated |
|
|
1234 | /etc/init.d/depscan.sh to touch the actual files less. This should |
|
|
1235 | speedup dependency caching a lot, especially on slow machines. |
|
|
1236 | |
|
|
1237 | Updated /etc/passwd to have users with no shell defined, use /bin/false |
|
|
1238 | for security. |
|
|
1239 | |
|
|
1240 | Update /etc/fstab to mention /dev/shm since we dont mount it anymore. |
|
|
1241 | |
|
|
1242 | 1 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1243 | |
|
|
1244 | Added a wrapper for sourcing the rc-scripts to eliminate syntax errors. |
|
|
1245 | Thanks to Karl Trygve Kalleberg (aka karltk) for the idea. Updated |
|
|
1246 | /etc/init.d/depscan.sh, /etc/init.d/functions.sh and |
|
|
1247 | /etc/init.d/runscript.sh for this (added wrap_rcscript() function). |
|
|
1248 | |
|
|
1249 | Removed stopping of dependent services that have current service as |
|
|
1250 | a 'use'dependency ... should be less confusing now. |
|
|
1251 | Updated /etc/init.d/runscript.sh for this. |
|
|
1252 | |
|
|
1253 | 28 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1254 | |
|
|
1255 | Add /etc/conf.d/local.start and /etc/conf.d/local.stop for adding any misc |
|
|
1256 | programs to startup. This should pretty much have /etc/init.d/ static, |
|
|
1257 | except for baselayout updates, etc. |
|
|
1258 | |
|
|
1259 | 27 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1260 | |
|
|
1261 | In some wierd cases, a redundent /dev/.devfsd on a unmounted /dev can cause |
|
|
1262 | problems. Fixed this in /sbin/rc. |
|
|
1263 | |
|
|
1264 | Added the patches from Grant Goodyear (aka g2boojum) to enable us to |
|
|
1265 | use a ramdisk to store the contents of ${svcdir}. Updated /sbin/rc, |
|
|
1266 | /etc/init.d/functions.sh and /etc/init.d/checkroot for this. |
|
|
1267 | |
|
|
1268 | 26 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1269 | |
|
|
1270 | Fix my brain dead update of the 25th. It really should keep |
|
|
1271 | "gentoo=nodevfs" in mind. Also added 'get_bootparam()' to help in |
|
|
1272 | retrieving kernel options. Updated /etc/init.d/functions.sh, |
|
|
1273 | /etc/init.d/checkroot and /sbin/rc for this. |
|
|
1274 | |
|
|
1275 | Updated /etc/init.d/consolefont to work without devfs as well. |
|
|
1276 | |
|
|
1277 | When rebooting or shutting down, a service should not fail to stop |
|
|
1278 | if a service it depends on, fails. Updated /etc/init.d/runscript.sh |
|
|
1279 | for this. |
|
|
1280 | |
|
|
1281 | 25 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
|
|
1282 | |
|
|
1283 | Added a check if /dev is mounted when creating entries for /etc/mtab. |
|
|
1284 | This should solve a invalid entry or /dev being mounted even with |
|
|
1285 | 'gentoo=nodevfs' option. Updated /etc/init.d/checkroot for this. |
|
|
1286 | |
|
|
1287 | 17 Feb 2002: Daniel Robbins <drobbins@gentoo.org>: Made "xfs" the default |
|
|
1288 | filesystem in /etc/fstab (from ReiserFS) and removed "notail" option (it's |
|
|
1289 | just in a comment now) |
|
|
1290 | |
|
|
1291 | 17 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
|
|
1292 | |
|
|
1293 | Mmore fixes to 'after' and 'before', updated /etc/init.d/runscript.sh for |
|
|
1294 | this. This should fix services not getting started in the correct order |
|
|
1295 | in a tight loop, services getting stopped out of order, and some other |
|
|
1296 | sanity checks. Updated rc-script.sh for updated help. |
|
|
1297 | |
|
|
1298 | 15 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
|
|
1299 | |
|
|
1300 | Update /etc/profile to resolve bug #588. Reimplemented things a bit, |
|
|
1301 | and added the 'after' type. 'before' and 'after' will only work currently |
|
|
1302 | for a change of runlevel. Updated /etc/init.d/depscan.sh, |
|
|
1303 | /etc/init.d/runscript.sh and /sbin/rc for this. |
|
|
1304 | |
|
|
1305 | 13 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
|
|
1306 | |
|
|
1307 | Add some more entries to /etc/devfsd.conf to make alsa users life |
|
|
1308 | easier ... thanks Tod. |
|
|
1309 | |
|
|
1310 | 12 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
|
|
1311 | |
|
|
1312 | Some more cleanups to /etc/init.d/depscan.sh and /etc/init.d/runscript.sh. |
|
|
1313 | |
|
|
1314 | Fixed some services not starting again when restarting a service. |
|
|
1315 | Seems simple is still the best way. |
|
|
1316 | |
|
|
1317 | Fixed some other problems created with feature additions and cleanups. |
|
|
1318 | |
|
|
1319 | 11 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
|
|
1320 | |
|
|
1321 | General cleanups to /etc/init.d/depscan.sh and /etc/init.d/runscript.sh. |
|
|
1322 | |
|
|
1323 | Added 'before *' to /etc/init.d/checkroot to make sure it gets |
|
|
1324 | started first. |
|
|
1325 | |
|
|
1326 | Added 'use *' to /etc/init.d/local to make sure it gets started |
|
|
1327 | last. |
|
|
1328 | |
|
|
1329 | 10 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
|
|
1330 | |
|
|
1331 | Fixed /sbin/rc to stop a service on change of runlevel if it is |
|
|
1332 | in 'use' by another service. |
|
|
1333 | |
|
|
1334 | Added the 'provide' depend type for creating virtual services. |
|
|
1335 | Updated /etc/init.d/depscan.sh for this. |
|
|
1336 | |
|
|
1337 | Added the 'before' depend type. This is more for changing the |
|
|
1338 | order services start in. Updated /etc/init.d/depscan.sh and |
|
|
1339 | /etc/init.d/functions.sh for this. |
|
|
1340 | |
|
|
1341 | Updated /etc/init.d/depscan.sh to work with '*' as argument for |
|
|
1342 | dependency types. This can be used with 'use' and 'before' to |
|
|
1343 | start a script last or first respectively. |
|
|
1344 | |
|
|
1345 | Added save_options() and get_options() to /etc/init.d/functions.sh |
|
|
1346 | for saving misc settings between startup/shutdown. Updated |
|
|
1347 | /etc/init.d/net.eth0 to use these and properly down virtual |
|
|
1348 | interfaces. |
|
|
1349 | |
|
|
1350 | 6 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
|
|
1351 | |
|
|
1352 | Updated both /etc/init.d/bootmisc and /etc/init.d/keymaps to be quiet |
|
|
1353 | on no errors. |
|
|
1354 | |
|
|
1355 | * rc-scripts 1.2.6 (6 Feb 2002) |
|
|
1356 | |
|
|
1357 | 2 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
|
|
1358 | |
|
|
1359 | Updated /etc/net.eth0 to specify the gateway device via the $gateway |
|
|
1360 | variable (something like gateway="eth0/192.168.0.1"). |
|
|
1361 | |
|
|
1362 | 2 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
|
|
1363 | |
|
|
1364 | Added rc-script /etc/init.d/numlock, for enabling numlock at boot. |
|
|
1365 | |
|
|
1366 | 29 Jan 2002: Martin Schlemmer (azarah@gentoo.org): |
|
|
1367 | |
|
|
1368 | Hopefully the last fix to /etc/init.d/netmount to umount cleanly. This fix |
|
|
1369 | implements a retry if not successful the first time, and will kill |
|
|
1370 | processess using the mount. Also small type-o fix to /etc/init.d/halt.sh. |
|
|
1371 | |
|
|
1372 | 27 Jan 2002: Donny Davies (woodchip@gentoo.org): security fix to |
|
|
1373 | /etc/pam.d/sshd,login,chsh: added pam_shells.so to the stack. |
|
|
1374 | Fixed /etc/passwd,group for user/group mysql. |
|
|
1375 | |
|
|
1376 | 27 Jan 2002: Martin Schlemmer (azarah@gentoo.org): added charset |
|
|
1377 | map file support to /etc/init.d/consolefont and the setting to |
|
|
1378 | /etc/rc.conf. |
|
|
1379 | |
|
|
1380 | 25 Jan 2002: Martin Schlemmer (azarah@gentoo.org): fixed dircolors |
|
|
1381 | in skel files to support both versions of dircolors. |
|
|
1382 | |
|
|
1383 | 23 Jan 2002: Martin Schlemmer (azarah@gentoo.org): fixed bug |
|
|
1384 | in the restart stuff of /etc/init.d/runscript.sh that caused |
|
|
1385 | a restart of a 'net' service not to restart services again |
|
|
1386 | that depended on it. |
|
|
1387 | |
|
|
1388 | * rc-scripts 1.2.5 (20 Jan 2002) |
|
|
1389 | |
|
|
1390 | 20 Jan 2002: Martin Schlemmer (azarah@gentoo.org): updated |
|
|
1391 | /etc/init.d/net.eth0 to 'use' pcmcia. |
|
|
1392 | |
|
|
1393 | 8 Jan 2002: Martin Schlemmer (azarah@gentoo.org): added '--sh' to |
|
|
1394 | the dircolors command in /etc/skel/.bash_profile to handle cases |
|
|
1395 | where bash do not export $SHELL. |
|
|
1396 | |
|
|
1397 | 6 Jan 2002: Martin Schlemmer (azarah@gentoo.org): updated |
|
|
1398 | /etc/init.d/runscripts.sh, /etc/init.d/net.eth0, /etc/conf.d/net and |
|
|
1399 | removed /etc/init.d/net.eth0-dhcp to reflect a new 'bsd-ish' config |
|
|
1400 | scheme for the net.eth* scripts. |
|
|
1401 | |
|
|
1402 | 6 Jan 2002: Donny Davies (woodchip@gentoo.org): Removed email address |
|
|
1403 | from manpages; no need for that.. |
|
|
1404 | |
|
|
1405 | 5 Jan 2002: Martin Schlemmer (azarah@gentoo.org): fix type-o in |
|
|
1406 | /etc/devfsd.conf; had 'dvd' in the cdrw stuff. |
|
|
1407 | |
|
|
1408 | * rc-scripts 1.2.4 (30 Dec 2001) |
|
|
1409 | |
|
|
1410 | 30 Dec 2001: Daniel Robbins (drobbins@gentoo.org): Changed default umask |
|
|
1411 | back to 022 as it should be. |
|
|
1412 | |
|
|
1413 | 30 Dec 2001; Martin Schlemmer (azarah@gentoo.org): Updated |
|
|
1414 | /etc/init.d/checkfs to return 0 if the fs was successfully repaired. |
|
|
1415 | |
|
|
1416 | 29 Dec 2001; Donny Davies (woodchip@gentoo.org): |
|
|
1417 | sort -t: -k3,3 -n /etc/passwd,group. Ahhhh :)) |
|
|
1418 | |
|
|
1419 | 28 Dec 2001; Martin Schlemmer (azarah@gentoo.org); |
|
|
1420 | |
|
|
1421 | Updated /etc/init.d/depscan.sh to store info about missing dependencies |
|
|
1422 | of type 'need' in ${svcdir}/broken. Also updated /etc/init.d/runscript.sh |
|
|
1423 | to use this when starting a script ('need' dependencies is critical for |
|
|
1424 | startup). Added the broken() function to /etc/init.d/runscript.sh |
|
|
1425 | to list the missing dependencies. |
|
|
1426 | |
|
|
1427 | Updated /etc/init.d/runscript.sh for svc_start() to have better error |
|
|
1428 | checking. |
|
|
1429 | |
|
|
1430 | Updated /etc/init.d/functions.sh with ewend(), which is the same as |
|
|
1431 | eend(), but print a warning on error, not a error. Updated |
|
|
1432 | /etc/init.d/checkroot and /etc/init.d/checkfs to use this function. |
|
|
1433 | |
|
|
1434 | 27 Dec 2001; Martin Schlemmer (azarah@gentoo.org); |
|
|
1435 | |
|
|
1436 | Update /sbin/runscript.c to run /etc/init.d/rc-help.sh if no arguments |
|
|
1437 | is passed to a rc-script. |
|
|
1438 | |
|
|
1439 | Added /etc/init.d/rc-help.sh, simple script that prints out help for |
|
|
1440 | the rc-scripts. |
|
|
1441 | |
|
|
1442 | 25 Dec 2001; Martin Schlemmer (azarah@gentoo.org); |
|
|
1443 | |
|
|
1444 | Update /etc/init.d/shutdown.sh and /etc/init.d/reboot.sh not to force the |
|
|
1445 | halt and reboot. This fixes a problem where / was not unmounted properly |
|
|
1446 | in some cases. |
|
|
1447 | |
|
|
1448 | 24 Dec 2001; Martin Schlemmer (azarah@gentoo.org): |
|
|
1449 | |
|
|
1450 | Move $svcdir to to /etc/init.d/functions.sh, and update |
|
|
1451 | /etc/init.d/runscript.sh and /etc/init.d/depscan.sh for this |
|
|
1452 | |
|
|
1453 | Modified /etc/init.d/runscript.sh to also restart the services that |
|
|
1454 | depend on a service if that service is restarted. Enhanced the |
|
|
1455 | restart function to be able to have custom restart() functions in |
|
|
1456 | rc-scripts. The custom restart() have to use svc_stop() and |
|
|
1457 | svc_start() to restart the service. |
|
|
1458 | |
|
|
1459 | Add a pause function to /etc/init.d/runscript.sh. It will basically |
|
|
1460 | stop a service without stopping the services that depends on that |
|
|
1461 | service. |
|
|
1462 | |
|
|
1463 | Add a pause function to /etc/init.d/runscript.sh. It will basically stop a |
|
|
1464 | service without stopping the services that depends on that service. |
|
|
1465 | |
|
|
1466 | * rc-scripts 1.2.3 (18 Dec 2001) |
|
|
1467 | |
|
|
1468 | 16 Dec 2001; Martin Schlemmer (azarah@gentoo.org): |
|
|
1469 | |
|
|
1470 | Moved the stuff from /sbin/init (old) to /sbin/rc (basically drop the |
|
|
1471 | init wrapper we used). |
|
|
1472 | |
|
|
1473 | Some cleanups: take out the shm resize comment; |
|
|
1474 | |
|
|
1475 | remove the $wrongmount; |
|
|
1476 | |
|
|
1477 | remove the mountshm() function and insert it directly |
|
|
1478 | where needed; |
|
|
1479 | |
|
|
1480 | remove the setting of $PATH as /sbin/init already do |
|
|
1481 | this for us. |
|
|
1482 | |
|
|
1483 | Added the if statement to detect if it is the first time the 'boot' |
|
|
1484 | runlevel is executed (if [ "$RUNLEVEL" = "S" ] && [ "$argv1" = "boot" ]). |
|
|
1485 | $RUNLEVEL is a env var set by /sbin/init. |
|
|
1486 | |
|
|
1487 | Also added functionality to detect if the kernel have DEVFS support |
|
|
1488 | compiled in; seems new users thinks devfs is unstable and as they do |
|
|
1489 | not always read the docs, it does not get compiled in ;/ Should |
|
|
1490 | make live for us a bit easier. |
|
|
1491 | |
|
|
1492 | 14 Dec 2001; Martin Schlemmer (azarah@gentoo.org): |
|
|
1493 | |
|
|
1494 | Fixed /sbin/rc to kill a cosmetic bug in the part that stops all |
|
|
1495 | the unneeded services. |
|
|
1496 | |
|
|
1497 | * rc-scripts 1.2.2 (8 Dec 2001) |
|
|
1498 | |
|
|
1499 | 10 Dec 2001; Added a localhost entry in /etc/hosts. |
|
|
1500 | |
|
|
1501 | 8 Dec 2001; Donny Davies (woodchip@gentoo.org): Added start-stop-daemon.c |
|
|
1502 | to rc-scripts/sbin source. Moved rc-scripts/init.d/runscript.c to |
|
|
1503 | rc-scripts/sbin/runscript.c. Added manpage for start-stop-daemon. |
|
|
1504 | Start-stop-daemon is moved here from sysvinit by the way. There is stuff |
|
|
1505 | in this ChangeLog that needs to be removed! Like the changes to hosts, |
|
|
1506 | profile. /etc/{passwd,group} have minor UID and GID type fixes for |
|
|
1507 | users ftp, postgres, xfs. Tweaked tarball.sh to not include CVS |
|
|
1508 | directories. |
|
|
1509 | |
|
|
1510 | 29 Nov 2001; Donny Davies (woodchip@gentoo.org): Added a man directory |
|
|
1511 | to rc-scripts. Checked in two manpages there, one for modules.autoload.5 |
|
|
1512 | and one for update-modules.8. These were adapted from Debian. Updated |
|
|
1513 | tarball.sh to include the new man directory. Updated baselayout to install |
|
|
1514 | these manpages. Slightly tweak the /etc/modules.autoload comments. |
|
|
1515 | |
|
|
1516 | 28 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
|
|
1517 | |
|
|
1518 | Updated /sbin/init to work correctly with the 'gentoo=nodevfs' option, |
|
|
1519 | and cleaned out old code. |
|
|
1520 | |
|
|
1521 | Updated /etc/init.d/bootmisc with additional lock files to clean. |
|
|
1522 | |
|
|
1523 | 27 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
|
|
1524 | |
|
|
1525 | Updated /etc/init.d/depscan.sh for a virtual 'use' depend, called 'logger' |
|
|
1526 | that can be used for services that needs to have a logger started before |
|
|
1527 | they are started. Updated /etc/conf.d/basic with $SYSLOGGER that is used |
|
|
1528 | to define what loggers the 'logger' depend represent. |
|
|
1529 | |
|
|
1530 | 26 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
|
|
1531 | |
|
|
1532 | Updated /etc/passwd and /etc/group with minor fixes to pass pwck |
|
|
1533 | and grpck. |
|
|
1534 | |
|
|
1535 | 25 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
|
|
1536 | |
|
|
1537 | Changed umask in /etc/profile for the user to 077 for security. |
|
|
1538 | |
|
|
1539 | Added a stop() function to /etc/init.d/clock. Also removed uneeded |
|
|
1540 | 'source /etc/rc.conf' line. |
|
|
1541 | |
|
|
1542 | Updated /etc/init.d/hostname to set the hostname to 'localhost' if |
|
|
1543 | /etc/hostname is invalid. |
|
|
1544 | |
|
|
1545 | Updated /sbin/init to move the entries in /lib/dev-state to /dev before |
|
|
1546 | running devfsd, as it did still not save settings properly. Also removed |
|
|
1547 | old /dev-state/compat stuff. |
4 | |
1548 | |
5 | 25 Nov 2001; ncsd, the name service cache daemon script, has been removed |
1549 | 25 Nov 2001; ncsd, the name service cache daemon script, has been removed |
6 | from the default "default" runlevel. It still exists in the archive so that |
1550 | from the default "default" runlevel. It still exists in the archive so that |
7 | users who want/need it can add it easily. |
1551 | users who want/need it can add it easily. |
8 | |
1552 | |
9 | 25 Nov 2001; Updated the /etc/fstab; removed usbdevfs (explicitly mounted), |
1553 | 25 Nov 2001; Updated the /etc/fstab; removed usbdevfs (explicitly mounted), |
10 | removed notail from the ext2 boot partition, other cleanups. |
1554 | removed notail from the ext2 boot partition, other cleanups. |
11 | |
1555 | |
12 | 25 Nov 2001; Fixed init.d/clock script to work in UTC mode. |
1556 | 25 Nov 2001; Fixed init.d/clock script to work in UTC mode. |
|
|
1557 | |
|
|
1558 | 24 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
13 | |
1559 | |
|
|
1560 | Added /etc/devfsd.conf and updated /sbin/init to use a new scheme for saving |
|
|
1561 | /dev permissions. Also moved /dev-state to /lib/dev-state which is a more |
|
|
1562 | standard location. |
|
|
1563 | |
|
|
1564 | Fixed a ugly bug in /etc/init.d/depscan.sh. If a service depended on |
|
|
1565 | itself, calling depscan.sh or changing runlevels cause a tempory effect |
|
|
1566 | similar to a 'mini fork bomb'. Afterwards the depends was broken, and |
|
|
1567 | changing runlevels did not want to work. |
|
|
1568 | |
|
|
1569 | Updated /etc/init.d/halt.sh to terminate and display message for devfsd. |
|
|
1570 | More cosmetic than anything else, but cant hurt with the new dev-state |
|
|
1571 | scheme. |
|
|
1572 | |
|
|
1573 | Updated /sbin/init to set the console log level to 1, so that bootup |
|
|
1574 | can be much cleaner. Also updated /etc/init.d/modules not to have |
|
|
1575 | a logger in it 'use' depends, as it should not be needed anymore. |
|
|
1576 | |
|
|
1577 | Updated /sbin/rc to check if devfsd is still running between runlevel |
|
|
1578 | changes. |
|
|
1579 | |
|
|
1580 | Updated /etc/init.d/modules to run update-modules. We want to be sure |
|
|
1581 | /etc/modules.conf is updated when running depmod -a. |
|
|
1582 | |
|
|
1583 | Change ftp's uid to 21 in /etc/passwd (was the same as bind). Also |
|
|
1584 | added a entry for xfs (X Font Server) in /etc/passwd and /etc/group. |
|
|
1585 | |
|
|
1586 | Added /etc/init.d/net.ppp0, /etc/conf.d/net.ppp0 and |
|
|
1587 | /usr/lib/ppp/chat-default as part of my new pppd scripts. Also |
|
|
1588 | updated tarball.sh to handle ppp/chat-default. |
|
|
1589 | |
|
|
1590 | Added /etc/skel/.bash* to make things cleaner. |
|
|
1591 | |
|
|
1592 | Other minor changes. |
|
|
1593 | |
14 | 17 Nov 2001; Donny Davies (woodchip@gentoo.org): Added /etc/shells file |
1594 | 17 Nov 2001; Donny Davies (woodchip@gentoo.org): Added /etc/shells file |
15 | to rc-scripts. Can remove it from sys-libs/shadow at the next release. |
1595 | to rc-scripts. Can remove it from sys-libs/shadow at the next release. |
16 | |
1596 | |
17 | * rc-scripts 1.1.8 (15 Nov 2001) |
1597 | * rc-scripts 1.1.8 (15 Nov 2001) |
18 | |
1598 | |
19 | 16 Nov 2001; removed bogus "mountall.test" script. |
1599 | 16 Nov 2001; removed bogus "mountall.test" script. |
20 | |
1600 | |
21 | 15 Nov 2001; Martin Schlemmer (azarah@gentoo.org): Updated |
1601 | 15 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
|
|
1602 | |
22 | init.d/{runscript.sh,depscan.sh}, sbin/rc to the new dep being 'use' not |
1603 | Updated init.d/{runscript.sh,depscan.sh}, sbin/rc to the new dep being |
23 | 'uses', as it fits better with 'need' (not 'needs'). Also removed unneeded |
1604 | 'use' not 'uses', as it fits better with 'need' (not 'needs'). Also |
24 | for loop from init.d/depscan.sh, and other fixes. Updated names of new |
1605 | removed unneeded for loop from init.d/depscan.sh, and other fixes. Updated |
25 | functions in init.d/runscript.sh to better sounding ones. Updated |
1606 | names of new functions in init.d/runscript.sh to better sounding ones. |
26 | init.d/modules, init.d/netmount to use 'use'. Lots of other fixes/cleanups. |
1607 | Updated init.d/modules, init.d/netmount to use 'use'. Lots of other |
|
|
1608 | fixes/cleanups. |
|
|
1609 | |
27 | Removed try() out of init.d/runscript.sh (why was this here ?). |
1610 | Removed try() out of init.d/runscript.sh (why was this here ?). |
28 | |
1611 | |
29 | 14 Nov 2001; Martin Schlemmer (azarah@gentoo.org): init.d/bootmisc: Now |
1612 | 14 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
30 | cleans /tmp. Also creates /etc/resolv.conf if it doesn't exist. |
1613 | |
|
|
1614 | Now init.d/bootmisc cleans /tmp. Also creates /etc/resolv.conf if it |
|
|
1615 | doesn't exist. |
31 | |
1616 | |
32 | init.d/hostname: Added check for a valid /etc/hostname. |
1617 | init.d/hostname: Added check for a valid /etc/hostname. |
33 | |
1618 | |
34 | init.d/keymaps: Added check for valid $KEYMAP. |
1619 | init.d/keymaps: Added check for valid $KEYMAP. |
35 | |
1620 | |
36 | init.d/modules: Added sysklogd, metalog, syslog-ng as 'use' deps. This |
1621 | init.d/modules: Added sysklogd, metalog, syslog-ng as 'use' deps. This |
37 | should solve Woodchip's syslog+glue issue. We just have to change the |
1622 | should solve Woodchip's syslog+glue issue. We just have to change the |
38 | console loglevel for metalog and syslog-ng (sysklogd already updated) not to |
1623 | console loglevel for metalog and syslog-ng (sysklogd already updated) not to |
39 | output info and warnings, etc to the console, then boot will be much cleaner. |
1624 | output info and warnings, etc to the console, then boot will be much cleaner. |
40 | Also the install guide will need changing to add the loggers to 'boot' and |
1625 | Also the install guide will need changing to add the loggers to 'boot' and |
41 | not 'default' runlevel. |
1626 | not 'default' runlevel. |
42 | |
1627 | |
43 | init.d/mountall.test: Hopefully updated to the new rc-scripts style. Is |
1628 | init.d/mountall.test: Hopefully updated to the new rc-scripts style. Is |
44 | this really needed (I cannot see that it is used anywhere ...)? |
1629 | this really needed (I cannot see that it is used anywhere ...)? |
45 | |
1630 | |
46 | 13 Nov 2001; Martin Schlemmer (azarah@gentoo.org): Updated |
1631 | 13 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
|
|
1632 | |
47 | init.d/runscript.sh, init.d/depscan.sh and sbin/rc with a new depend called |
1633 | Updated init.d/runscript.sh, init.d/depscan.sh and sbin/rc with a new depend |
48 | 'uses'. It basically have the same usage as 'need', except that it do not |
1634 | called 'uses'. It basically have the same usage as 'need', except that it |
49 | start services that is not in the current and 'boot' runlevels. |
1635 | do not start services that is not in the current and 'boot' runlevels. |
50 | |
1636 | |
51 | Updated init.d/netmount to use the 'uses' depend. |
1637 | Updated init.d/netmount to use the 'uses' depend. |
52 | |
1638 | |
53 | 11 Nov 2001; Martin Schlemmer (azarah@gentoo.org): Fixed init.d/runscript.sh |
1639 | 11 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
54 | not to destroy the 'need' depends in /${svcdir}/need. This caused subsequent |
1640 | |
55 | starting and stopping of services not to start depends. |
1641 | Fixed init.d/runscript.sh not to destroy the 'need' depends in |
|
|
1642 | /${svcdir}/need. This caused subsequent starting and stopping of services |
|
|
1643 | not to start depends. |
56 | |
1644 | |
57 | 7 Nov 2001; Martin Schlemmer (azarah@gentoo.org): Fixed a problem in sbin/rc |
1645 | 7 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
58 | where the ${svcdir}/softscripts directory got destroyed before stopping |
1646 | |
59 | running services scheduled to be stopped. This with the fact that $SOFTLEVEL |
1647 | Fixed a problem in sbin/rc where the ${svcdir}/softscripts directory got |
60 | was set too early, caused the services to be stopped in the wrong order. |
1648 | destroyed before stopping running services scheduled to be stopped. This |
|
|
1649 | with the fact that $SOFTLEVEL was set too early, caused the services to be |
|
|
1650 | stopped in the wrong order. |
61 | |
1651 | |
62 | 30 Oct 2001; Martin Schlemmer (azarah@gentoo.org): Modified init.d/netmount to |
1652 | 30 Oct 2001; Martin Schlemmer (azarah@gentoo.org): |
|
|
1653 | |
63 | check if any network filesystems is mounted. |
1654 | Modified init.d/netmount to check if any network filesystems is mounted. |
64 | |
1655 | |
65 | 29 Oct 2001; init.d/netmount: umount -art doesn't seem to work, so I added |
1656 | 29 Oct 2001; init.d/netmount: umount -art doesn't seem to work, so I added |
66 | some awk and grep magic to find all remote filesystems and umount them. |
1657 | some awk and grep magic to find all remote filesystems and umount them. |
67 | |
1658 | |
68 | 29 Oct 2001; Martin Schlemmer (azarah@gentoo.org): A fix for checkroot |
1659 | 29 Oct 2001; Martin Schlemmer (azarah@gentoo.org): |
69 | (missing "/"); it now actually checks the root filesystem. Also, a |
1660 | |
70 | localmount cleanliness fix. |
1661 | A fix for checkroot (missing "/"); it now actually checks the root |
|
|
1662 | filesystem. Also, a localmount cleanliness fix. |
71 | |
1663 | |
72 | * rc-scripts 1.1.7 (18 Oct 2001) |
1664 | * rc-scripts 1.1.7 (18 Oct 2001) |
73 | |
1665 | |
74 | [old changelog format follows] |
1666 | [old changelog format follows] |
75 | |
1667 | |
76 | *lots of scripts; woodchip |
1668 | *lots of scripts; woodchip |
77 | removed old rc5 scripts from cvs |
1669 | removed old rc5 scripts from cvs |
78 | |
1670 | |
79 | *init.d/runscript.sh; agriffis |
1671 | *init.d/runscript.sh; agriffis |
80 | Added support for rc.conf and home-grown functions |
1672 | Added support for rc.conf and home-grown functions |
81 | |
1673 | |
82 | *init.d/modules; |
1674 | *init.d/modules; |
83 | Now correctly looks at /etc/modules.autoload |
1675 | Now correctly looks at /etc/modules.autoload |
84 | |
1676 | |
85 | rc-scripts-1.1.6, released 15 Sep 2001 |
1677 | rc-scripts-1.1.6, released 15 Sep 2001 |
86 | ====================================== |
1678 | ====================================== |
87 | |
1679 | |
88 | *init.d/runscript.sh, others |
1680 | *init.d/runscript.sh, others |
89 | Handling of "net" dependencies resolve to all net devices in |
1681 | Handling of "net" dependencies resolve to all net devices in |
90 | /etc/runlevels/boot and /etc/runlevels/[curr-runlevel]. INTERFACES |
1682 | /etc/runlevels/boot and /etc/runlevels/[curr-runlevel]. INTERFACES |
91 | variable in /etc/rc.conf has been removed. |
1683 | variable in /etc/rc.conf has been removed. |
92 | |
1684 | |
93 | *init.d/runscript.sh |
1685 | *init.d/runscript.sh |
94 | New "zap" option for manually resetting the state of an initscript |
1686 | New "zap" option for manually resetting the state of an initscript |
95 | to stopped. |
1687 | to stopped. |
96 | |
1688 | |
97 | *init.d/{samba,sysklogd,sshd} |
1689 | *init.d/{samba,sysklogd,sshd} |
98 | Removed from CVS; they live in their respective packages. |
1690 | Removed from CVS; they live in their respective packages. |
99 | |
1691 | |
100 | rc-scripts-1.1.5, released 02 Sep 2001 |
1692 | rc-scripts-1.1.5, released 02 Sep 2001 |
101 | ==================================== |
1693 | ==================================== |
102 | |
1694 | |
103 | *sbin/rc-update |
1695 | *sbin/rc-update |
104 | New version of the rc-update command for the new initscripts. Works |
1696 | New version of the rc-update command for the new initscripts. Works |
105 | similarly to the old version, except this one updates our dependency |
1697 | similarly to the old version, except this one updates our dependency |
106 | cache. |
1698 | cache. |
107 | |
1699 | |
108 | *init.d/functions.sh |
1700 | *init.d/functions.sh |
109 | New and better looking informational message functions (einfo, einfon). |
1701 | New and better looking informational message functions (einfo, einfon). |
110 | Brand new message functions (ewarn). |
1702 | Brand new message functions (ewarn). |
111 | |
1703 | |
112 | *sbin/init, init.d/checkroot |
1704 | *sbin/init, init.d/checkroot |
113 | We're going back to a /proc/mounts-based mtab symlink because it's |
1705 | We're going back to a /proc/mounts-based mtab symlink because it's |
114 | just plain better. Appropriate changes made. |
1706 | just plain better. Appropriate changes made. |
|
|
1707 | |
|
|
1708 | # vim:expandtab |