1 |
# ChangeLog for Gentoo Linux System Intialization ("rc") scripts |
2 |
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL |
3 |
# Written by Daniel Robbins (drobbins@gentoo.org) |
4 |
|
5 |
23 Apr 2004; Aron Griffis <agriffis@gentoo.org>: |
6 |
|
7 |
Fix bug 29426 (gentoo should be able to boot with an empty /dev) |
8 |
with patch from Spanky. The patch avoids redirection to /dev/null |
9 |
when it doesn't exist; this was breaking /sbin/rc. |
10 |
|
11 |
* rc-scripts 1.4.9 (15 Apr 2004) |
12 |
|
13 |
15 Apr 2004; Aron Griffis <agriffis@gentoo.org>: |
14 |
|
15 |
Fix bug 47111 (severe depcache problems) with tons of help from |
16 |
dswhite42 and the rest of the crew in that bug. Thanks guys! |
17 |
|
18 |
* rc-scripts 1.4.8 (14 Apr 2004) |
19 |
|
20 |
14 Apr 2004; Aron Griffis <agriffis@gentoo.org>: |
21 |
|
22 |
Fix bug 47623 (error removing inet6 addresses) with patch provided |
23 |
by Vlad Yasevich. |
24 |
|
25 |
* rc-scripts 1.4.7 (12 Apr 2004) |
26 |
|
27 |
12 Apr 2004; Aron Griffis <agriffis@gentoo.org>: |
28 |
|
29 |
Fix bug 47218 (net.eth0 broken for vlans) with patch provided by |
30 |
Andy Dustman. Fix bug 47250 (depscan.sh fails to create |
31 |
/var/lib/init.d/* directories) with patch from Terje Bergström. |
32 |
|
33 |
* rc-scripts 1.4.6 (08 Apr 2004) |
34 |
|
35 |
08 Apr 2004; Aron Griffis <agriffis@gentoo.org>: |
36 |
|
37 |
Update patch from Gustavoz; -ln /bin/bash should have been -nl /bin/bash |
38 |
|
39 |
* rc-scripts 1.4.5 (08 Apr 2004) |
40 |
|
41 |
08 Apr 2004; Aron Griffis <agriffis@gentoo.org>: |
42 |
|
43 |
Patch init.d/checkroot to list / (root) only once in mtab; see bug 38360. |
44 |
Patch from Gustavoz to livecd-functions.sh to run bash instead of login on |
45 |
serial consoles, necessary due to scrambled root passwords. |
46 |
|
47 |
* rc-scripts 1.4.4 (07 Apr 2004) |
48 |
|
49 |
07 Apr 2004; Aron Griffis <agriffis@gentoo.org>: |
50 |
|
51 |
Patch from Gustavoz for Sparc console: Fetch LIVECD_CONSOLE from dmesg |
52 |
output. Also support 4800 baud correctly. |
53 |
|
54 |
16 Mar 2004; Aron Griffis <agriffis@gentoo.org>: |
55 |
|
56 |
The changes in this commit pertain primarily to |
57 |
http://bugs.gentoo.org/show_bug.cgi?id=19695 |
58 |
http://bugs.gentoo.org/show_bug.cgi?id=35736 |
59 |
|
60 |
Specify routes as an array per interface, for example: |
61 |
routes_eth0=( |
62 |
"-net 10.1.0.0 netmask 255.255.0.0 gw 10.0.0.5" |
63 |
"-net 10.2.0.0 netmask 255.255.0.0 gw 10.0.0.6" |
64 |
"-host 10.3.0.1 dev eth0" |
65 |
) |
66 |
|
67 |
You can optionally use the gateway variable or just put the default route |
68 |
in the routes variable. The following two are REDUNDANT: |
69 |
|
70 |
routes_eth0=( "default gw 10.0.0.5" ) |
71 |
gateway="eth0/10.0.0.5" |
72 |
|
73 |
Old configuration variables in /etc/conf.d/net are fully supported and |
74 |
used transparently if ifconfig_eth0 is missing. In other words, this new |
75 |
script is fully backward-compatible. However you can get rid of |
76 |
iface_eth0, alias_eth0, broadcast_eth0 and netmask_eth0 if you want by |
77 |
using the new syntax: |
78 |
|
79 |
ifconfig_eth0=( |
80 |
"10.0.0.6 broadcast 10.0.255.255 netmask 255.255.0.0" |
81 |
"192.168.1.1 netmask 255.255.255.0" |
82 |
"123.456.789.1" |
83 |
) |
84 |
|
85 |
Full backward compatibility so no danger to screwing up users relying on |
86 |
existing /etc/conf.d/net setup |
87 |
|
88 |
NET_DEBUG can be set in the environment for copious debugging output |
89 |
|
90 |
Deprecate [ ] in favor of [[ ]] which has fewer quoting issues and |
91 |
better functionality (and is even slightly faster) |
92 |
|
93 |
Properly localize all variables, including variables returned by |
94 |
setup_vars |
95 |
|
96 |
Allow full options for every ifconfig command, both base address and |
97 |
aliases via ifconfig_eth0, replacing the convoluted and less-functional |
98 |
iface_eth0, alias_eth0, broadcast_eth0, netmask_eth0 |
99 |
|
100 |
Provide full support for static routes via routes_eth0 |
101 |
|
102 |
Fix potential quoting problems in setup_vars by using better eval syntax |
103 |
instead of eval echo |
104 |
|
105 |
Display IP addresses while configuring, both DHCP-retrieved and |
106 |
statically set addresses |
107 |
|
108 |
Collapse redundant caching of $? since eend returns $? again |
109 |
|
110 |
Report when keeping kernel configuration for an interface along with IP |
111 |
address gleaned |
112 |
|
113 |
Don't reset the default gateway if it is already set correctly |
114 |
|
115 |
Don't bind default gateway to particular interface when /sbin/route is |
116 |
called so that it can survive if there is more than one interface on the |
117 |
required subnet. (Old behavior can be obtained by setting |
118 |
routes_eth0="default gw 1.2.3.4 dev eth0" if you really want it) |
119 |
|
120 |
Don't bomb if default gateway can't be set since that doesn't |
121 |
necessarily mean that the interface configuration is invalid. |
122 |
(Old behavior was completely broken, but commented section |
123 |
demonstrates how to do it right if necessary) |
124 |
|
125 |
iface_stop no longer relies on configuration in /etc/conf.d/net AT ALL. |
126 |
This is very good because it means you can put new configuration in |
127 |
/etc/conf.d/net, then restart the interface and the old configuration will |
128 |
be properly shut down. |
129 |
|
130 |
iface_stop reports when it is releasing the DHCP lease |
131 |
|
132 |
* rc-scripts 1.4.3.13p1 (26 Feb 2004) |
133 |
|
134 |
26 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
135 |
|
136 |
Remove /etc/DIR_COLORS, as coreutils provides it now. |
137 |
|
138 |
Add RC_DEVICE_TARBALL to /etc/conf.d/rc to control use of device tarball. |
139 |
Also modified /sbin/rc and /etc/init.d/halt.sh for this. |
140 |
|
141 |
Start udevd if present. |
142 |
|
143 |
Small fix to sbin/rc-services.sh related to mtime checking and 'net' |
144 |
virtual service - it had no mtime generated, so check_mtime() failed |
145 |
for it ... |
146 |
|
147 |
25 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
148 |
|
149 |
Update to enable checking of mtimes on rc-scripts, and auto running |
150 |
depscan.sh if needed. Also try to run depscan.sh when RC_GOT_DEPTREE_INFO |
151 |
is not set instead of just erroring. |
152 |
|
153 |
19 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
154 |
|
155 |
Fix irda type-o in /sbin/MAKEDEV, thanks to Tobias Sager <moixa@gmx.ch>. |
156 |
|
157 |
Fix type-o in /etc/initrc, bug #41666 (Tom Vergote <bugzilla@tomvergote.be>). |
158 |
|
159 |
15 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
160 |
|
161 |
Add RC_TTY_NUMBER to /etc/conf.d/rc to configure how many tty devices |
162 |
are used in scripts such as consolefonts, numlock, etc. This should |
163 |
close bug #39863. |
164 |
|
165 |
Fix type-o in /etc/init.d/consolefont, bug #40938, thanks to patch from |
166 |
Cory Tusar <ctusar@adelphia.net>. |
167 |
|
168 |
09 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
169 |
|
170 |
Add SELinux modifications to /sbin/runscript. This allows runscript to |
171 |
make sure it is running in the right domain. Patch done by |
172 |
Chris PeBenito <pebenito@gentoo.org>. |
173 |
|
174 |
* rc-scripts 1.4.3.13 (08 Feb 2004) |
175 |
|
176 |
08 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
177 |
|
178 |
Fix wrong logic in /etc/init.d/halt.sh which did not umount all mounts |
179 |
_but_ /mnt/cdrom and /mnt/livecd. |
180 |
|
181 |
Update /etc/init.d/consolefont to use newer kbd. Should also close |
182 |
bug #39864. |
183 |
|
184 |
Fix /sbin/depscan.sh, /sbin/functions.sh and /sbin/rc to use mkdir rather |
185 |
than install, as newer versions of install is located in /usr/bin. This |
186 |
closes bug #39648. |
187 |
|
188 |
06 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
189 |
|
190 |
Tweak livecd support changes and add some more to hopefully sort out |
191 |
last issues, with help from Brad House <brad_mssw@gentoo.org>. |
192 |
|
193 |
Add code to generate /dev/fd, /dev/std* and /dev/core to /sbin/rc, |
194 |
bug #37349. |
195 |
|
196 |
* rc-scripts 1.4.3.12p3 (21 Jan 2004) |
197 |
|
198 |
19 Jan 2004; Martin Schlemmer <azarah@gentoo.org>: |
199 |
|
200 |
Add /sbin/livecd-functions.sh from Brad House <brad_mssw@gentoo.org> |
201 |
for livecd support. Add bits to /sbin/rc to support it. |
202 |
|
203 |
06 Jan 2004; Martin Schlemmer <azarah@gentoo.org>: |
204 |
|
205 |
Fix type-o in /etc/init.d/checkfs, bug #37113. |
206 |
|
207 |
29 Dec 2003; Martin Schlemmer <azarah@gentoo.org>: |
208 |
|
209 |
Update /sbin/depscan.sh, /sbin/env-update.sh, src/awk/cachedepends.awk, |
210 |
src/awk/gendepends.awk and src/awk/genenviron.awk to use ENVIRON rather |
211 |
then gawk -v. Also add some tests to see if we got the environment |
212 |
variables. |
213 |
|
214 |
28 Dec 2003; Martin Schlemmer <azarah@gentoo.org>: |
215 |
|
216 |
Fix /sbin/rc to mount /dev/pts with gid=5 and mode=0620, bug #36088. |
217 |
|
218 |
* rc-scripts 1.4.3.12p2 (27 Dec 2003) |
219 |
|
220 |
26 Dec 2003; Martin Schlemmer <azarah@gentoo.org>: |
221 |
|
222 |
Update code to generate /dev from /sys. Add UDEV_NO_SLEEP=1 for |
223 |
hack to not make udev sleep - its not needed as these entries |
224 |
are already present, and not a hotplug event. |
225 |
|
226 |
Update /etc/init.d/{consolefont,numlock} to work with udev managed |
227 |
/dev that have devfs layout. |
228 |
|
229 |
14 Dec 2003; Martin Schlemmer <azarah@gentoo.org>: |
230 |
|
231 |
Fix type-o in /sbin/rc, bug #34837. |
232 |
|
233 |
* rc-scripts 1.4.3.12p1 (26 Nov 2003) |
234 |
|
235 |
26 Nov 2003; Martin Schlemmer <azarah@gentoo.org>: |
236 |
|
237 |
Fix /etc/init.d/halt.sh to reset pam_console permissions, else |
238 |
the next bootup might be done with some non-root nodes which cause |
239 |
some odd issues. |
240 |
|
241 |
Add code to generate /dev from sysfs entries - not much it currently |
242 |
support but block/tty devices, but it is a start for when we have |
243 |
full sysfs support in all drivers. |
244 |
|
245 |
Revert carrier detection check, as there is currently too many |
246 |
issues with it, bug #33272. |
247 |
|
248 |
Make sure we mount already mounted mount (done in /sbin/rc) with |
249 |
correct permissions, etc, bug #33764. Modified /etc/init.d/checkroot |
250 |
for this. |
251 |
|
252 |
16 Nov 2003; Martin Schlemmer <azarah@gentoo.org>: |
253 |
|
254 |
Fix carrier detection - we need to do a 'ifconfig $IFACE up' else |
255 |
some drivers do not set the IFF_RUNNING bit, bug #33272, thanks to |
256 |
Jason Rhinelander <jason-gentoo@gossamer-threads.com> for the fix. |
257 |
|
258 |
15 Nov 2003; Martin Schlemmer <azarah@gentoo.org>: |
259 |
|
260 |
Add a warning to cachedepends.awk if a rc-script's name ends in |
261 |
'.sh', bug #33134. Add better error checking to /sbin/depscan.sh. |
262 |
|
263 |
Fix /etc/init.d/halt.sh to not try and remount virtual devices, |
264 |
also do a few cleanups. Closes bug #33271. |
265 |
|
266 |
* rc-scripts 1.4.3.12 (11 Nov 2003) |
267 |
|
268 |
11 Nov 2003; Martin Schlemmer <azarah@gentoo.org>: |
269 |
|
270 |
Add carrier detection to /etc/init.d/net.eth0 closing bug #25480; |
271 |
patch by Jordan Ritter <jpr5+gentoo@darkridge.com>. |
272 |
|
273 |
Add extra checks for critical directories to /sbin/rc. |
274 |
|
275 |
04 Nov 2003; Martin Schlemmer <azarah@gentoo.org>: |
276 |
|
277 |
Update /bin/rc-status giving a working '-u' parameter, bug #32417. |
278 |
Fix by Michael Frysinger <vapier@gentoo.org>. |
279 |
|
280 |
31 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
281 |
|
282 |
Add support for --tty switch added to setfont and remove consolechars |
283 |
support; modified /etc/init.d/consolefont for this. Also remove |
284 |
consoletools support from /etc/init.d/keymaps. |
285 |
|
286 |
29 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
287 |
|
288 |
We should still use /sbin/udev as hotplug agent if /sbin/hotplug do |
289 |
not exist. Updated /sbin/rc for this. |
290 |
|
291 |
Add a fix to /etc/init.d/keymaps for bug #32111 (we should not have |
292 |
'-u' in the call to loadkeys when using unicode). |
293 |
|
294 |
We should not use '-' in variable names for bash, bug #31184, thanks |
295 |
to Andreas Simon <yuipx@gmx.net>. Updated /sbin/MAKEDEV. |
296 |
|
297 |
27 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
298 |
|
299 |
Fix return code checking of fsck in /etc/init.d/checkfs, bug #31349. |
300 |
|
301 |
26 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
302 |
|
303 |
The unmount stuff in /etc/init.d/halt.sh was flawed, in the fact that |
304 |
it called 'umount -t no<insert_fs_here>', which resulted in /proc, etc |
305 |
unmounted anyhow. Change it to remount the last filesystems readonly |
306 |
without trying to unmount any. This fixes a few cases where reboot |
307 |
would halt due to unmounted /proc, etc. |
308 |
|
309 |
This change set fixes two things: |
310 |
1) In exporting all functions/variables in functions.sh, rc-services.sh |
311 |
and rc-daemon.sh, we created an overly large environment, and also |
312 |
broke stuff like glftpd. Do not do this, and hope whatever caused |
313 |
the issues previously is fixed in the meantime. This should close |
314 |
bugs #25754 and #31794. |
315 |
2) gendepend.awk used to generate deptree with functions called |
316 |
depinfo_<scriptname> which set appropriate variables when called. |
317 |
This broke if the scriptname contained characters that is not valid |
318 |
for bash variable names. Changed things to use an array fixing this. |
319 |
This closes bug #24092. |
320 |
|
321 |
Change /sbin/rc again to not set the hotplug agent to /sbin/udev, as |
322 |
/sbin/hotplug will call udev as well. |
323 |
|
324 |
Fix a logic error in /lib/rcscripts/sh/rc-services.sh that cause the |
325 |
get_dep_info() function to skip the last entry in the RC_DEPEND_TREE |
326 |
array (in my case 'net'). |
327 |
|
328 |
We did not handle the 'net' dependency properly in valid_iuse() and |
329 |
valid_iafter(). Fix this in /lib/rcscripts/sh/rc-services.sh, closing |
330 |
bugs #30327 and #31950. |
331 |
|
332 |
Change an occurance of /etc/modutils in modules-update.8 to |
333 |
/etc/modules.d/ closing bug #31171. |
334 |
|
335 |
19 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
336 |
|
337 |
More bootsplash fixes, bug #21019 (comment #21). |
338 |
|
339 |
Remove the killall5 stuff from /etc/init.d/halt.sh, as it messes with |
340 |
bootsplash. Add support to kill processes still using non-critical |
341 |
mounts with fuser though. |
342 |
|
343 |
17 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
344 |
|
345 |
Bootsplash fixes from Michael Aichler <micha@aichler.net>, (comment #15 |
346 |
and #16 from bug #21019). |
347 |
|
348 |
Bootsplash coded did not play nice with boot profiles, so I fixed that |
349 |
as well. Some other style tweaks. |
350 |
|
351 |
Fix /sbin/MAKEDEV to use 'user:group' form, and not depriciated '.'. |
352 |
Also changed the permissions on tty's, ibcs and scanner devices |
353 |
to 0660. |
354 |
|
355 |
* rc-scripts 1.4.3.11p2 (14 Sep 2003) |
356 |
|
357 |
14 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
358 |
|
359 |
Revert previous changes, and substitute it for the bootsplash patches |
360 |
from Michael Aichler <micha@aichler.net>, bug #21019. His www pages |
361 |
can be reached at: |
362 |
|
363 |
http://www.aichler.net/gentoo/bootsplash/ |
364 |
|
365 |
I should note that the bootsplash stuff is not 100% tested. |
366 |
|
367 |
|
368 |
* rc-scripts 1.4.3.11p1 (14 Sep 2003) |
369 |
|
370 |
14 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
371 |
|
372 |
Initial bootsplash patch as from LiveCD's. |
373 |
|
374 |
Add more tty's to /etc/init.d/numlock, bug #28252. |
375 |
|
376 |
* rc-scripts 1.4.3.11 (14 Sep 2003) |
377 |
|
378 |
14 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
379 |
|
380 |
Add initial udev support. Modified /sbin/rc and /etc/init.d/halt.sh. |
381 |
Resolves bug #27527. |
382 |
|
383 |
Add squid to /etc/services, bug #30995. Other cleanups from rac. |
384 |
|
385 |
Add patch from Kumba <kumba@gentoo.org> to MAKEDEV to not allow |
386 |
running while pwd is root (/). |
387 |
|
388 |
Add 'after hotplug' to /etc/init.d/consolefont, bug #30856. |
389 |
|
390 |
Add entry for floppy in /etc/fstab, bug #30574. |
391 |
|
392 |
Remove changing group of /tmp/.{X,ICE}-unix, as it it not needed, |
393 |
bug #28861. |
394 |
|
395 |
Apply a patch from Mike Frysinger <vapier@gentoo.org> for rc-status. |
396 |
It now will work with runlevels named with any characters (other than |
397 |
ones found in default bash IFS). It also adds a few sanity/error |
398 |
checks, bug #26432. |
399 |
|
400 |
Change /etc/inputrc to have PageUp/PageDown search through bash |
401 |
history again, bug #26036. |
402 |
|
403 |
14 Sep 2003; Martin Schlemmer <azarah@gentoo.org>: |
404 |
|
405 |
Change update-modules to modules-update in manpage, bug #28101. |
406 |
|
407 |
* rc-scripts 1.4.3.10p1 (08 Sep 2003) |
408 |
|
409 |
08 Sep 2003; Martin Schlemmer <azarah@gentoo.org>: |
410 |
|
411 |
Change the '-k' switch to dhcpcd to '-z' in /etc/init.d/net.eth0. |
412 |
|
413 |
12 Aug 2003; Martin Schlemmer <azarah@gentoo.org>: |
414 |
|
415 |
Add missing 'local x' to filter_environ() (bug #26429), thanks to |
416 |
Mark Wagner <mark@lanfear.net>. Modified rc-services.sh for this. |
417 |
|
418 |
11 Aug 2003; Martin Schlemmer <azarah@gentoo.org>: |
419 |
|
420 |
Modify /etc/init.d/modules not to print the autoloading stuff if |
421 |
no modules should be loaded (resolving bug #26288), per request from |
422 |
Michael Frysinger <vapier@gentoo.org>. |
423 |
|
424 |
Fix get_bootparam() in /sbin/functions.sh to check for existance of |
425 |
the /proc/cmdline proc entry. |
426 |
|
427 |
10 Aug 2003; Martin Schlemmer <azarah@gentoo.org>: |
428 |
|
429 |
Modify /etc/init.d/halt.sh to first kill, and then deactivate swap on |
430 |
request of Luke-Jr <luke-jr@gentoo.org>. It should be ok now, as the |
431 |
whole way of devfs handling changed long ago already. |
432 |
|
433 |
Fix /etc/init.d/halt.sh to unmount the mount point and not the device. |
434 |
Also change it to 'mount -d' to detach the loop device. Patch by |
435 |
Kalin KOZHUHAROV <kalin@ThinRope.net>, bug #26256. |
436 |
|
437 |
Fix /etc/init.d/consolefont to not error out if CONSOLEFONT in rc.conf |
438 |
is not set, bug #26278 (noted by Michael Frysinger <vapier@gentoo.org>). |
439 |
|
440 |
* rc-scripts 1.4.3.10 (04 Aug 2003) |
441 |
|
442 |
04 Aug 2003; Martin Schlemmer <azarah@gentoo.org>: |
443 |
|
444 |
Add /bin/rc-status and 'show' support to /sbin/rc-update (long overdue), |
445 |
bug #4222, thanks to Sean E Russell <ser@germane-software.com>, |
446 |
Michael Frysinger <vapier@gentoo.org> (/bin/rc-status) and for the 'show' |
447 |
stuff to /sbin/rc-update, Max Kalika <max@gentoo.org>. |
448 |
|
449 |
Fixed modules-update to only do the /etc/modprobe.conf generation if we |
450 |
are actually running a 2.5+ kernel. |
451 |
|
452 |
Add pop3 entries to /etc/services, bug #25501. |
453 |
|
454 |
Add a switch for devfsd startup to /etc/conf.d/rc, fix /sbin/rc to check |
455 |
RC_DEVFSD_STARTUP. Closes bug #24361, thanks to patches from |
456 |
Kurt V. Hindenburg <khindenburg@cherrynebula.net>. |
457 |
|
458 |
Add LVM2 support thanks to Max Kalika <max@gentoo.org> (bug #21908). |
459 |
|
460 |
Add IPV6 versions of localhost and co in /etc/hosts, bug #25859. |
461 |
|
462 |
Fix type-o in /sbin/rc-update, bug #25854. |
463 |
|
464 |
29 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
465 |
|
466 |
Tweak /etc/init.d/check{root,fs} to set retval after each fsck call, |
467 |
and not the whole block. Tweak check checkroot to reboot if need be |
468 |
(This is with sufficient warning and message). Tweak checkfs to not |
469 |
drop to a sulogin if return code 2 or 3 is given - as we did not |
470 |
mount the filesystems yet, we should not need to reboot ... bug #25398. |
471 |
|
472 |
Add '-T' option to fsck (/etc/init.d/check{root,fs} - requested by |
473 |
Michael Frysinger <vapier@gentoo.org>. |
474 |
|
475 |
28 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
476 |
|
477 |
Rework changes for the Adelie project to support boot config profiles |
478 |
better. Added support for /etc/runlevels/LEVEL/.fake to specify which |
479 |
runlevels should be marked started or stopped without executing the |
480 |
script. Renamed the /etc/runlevels/LEVEL/critical to ".critical" for |
481 |
more uniformity. Modified /sbin/rc, /sbin/functions.sh, /sbin/runscript.sh |
482 |
for this. |
483 |
|
484 |
Add better support for services that provide the "logger" virtual. We |
485 |
should really start the logger earlier, and stop it as late as possible. |
486 |
Modified /sbin/rc, /lib/rcscripts/sh/rc-services.sh and gendepends.awk |
487 |
for this. |
488 |
|
489 |
Fix .../boot/... paths hardcoded in /lib/rcscripts/sh/rc-services.sh, |
490 |
thanks to Jean-Francois Richard <jean-francois@richard.name>. |
491 |
|
492 |
Replace the Suse /etc/inputrc with a non copyrighted one, bug #24918. |
493 |
|
494 |
23 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
495 |
|
496 |
From Jean-Francois Richard <jean-francois@richard.name> and |
497 |
Olivier Crete <tester@gentoo.org> from the Adelie project: |
498 |
|
499 |
The last four patches are the "adaptation" of our previous patches to |
500 |
the new "no-tmpfs" init system in Gentoo. Since we were using quite |
501 |
different scripts for the boot runlevel (no "checkroot" for example) and |
502 |
that the new system hardcodes some of the boot services, we had to find |
503 |
a simple yet elegant solution. |
504 |
|
505 |
We chose to make init scripts read "/etc/runlevels/LEVEL/critical" to |
506 |
know what are the boot runlevel services. If this file is not present, |
507 |
it uses the Gentoo hardcoded defaults. |
508 |
|
509 |
This touches /sbin/rc, /sbin/functions.sh, /sbin/runscript.sh and |
510 |
/etc/init.d/halt.sh. |
511 |
|
512 |
I just changed the behaviour of 'softlevel' kernel command line argument |
513 |
to not only add a suffix and some other cleanups. |
514 |
|
515 |
Add support for irqbalance. |
516 |
|
517 |
22 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
518 |
|
519 |
Fix the /dev/root entry in /etc/mtab, bug #24916. |
520 |
|
521 |
Add EVMS2 support, thanks to Mike Javorski <mike_javorski@bigfoot.com>, |
522 |
bug #24064. |
523 |
|
524 |
* rc-scripts 1.4.3.9 (17 Jul 2003) |
525 |
|
526 |
17 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
527 |
|
528 |
Add vlan support to /etc/init.d/net.eth0, bug #15588, thanks to |
529 |
Andy Dustman <andy-gentoo.54e552@dustman.net>. |
530 |
|
531 |
Add 'TERM=Eterm' to /etc/DIR_COLORS, bug #23423. |
532 |
|
533 |
Add mdadm support to /etc/init.d/checkfs, bug #23437, many thanks |
534 |
to Wes Kurdziolek <wkurdzio@vtluug.org>. |
535 |
|
536 |
Rather use 'uname -r' to get kernel version, as else we need sysctl. |
537 |
This closes bug #23923, modified /etc/init.d/modules. |
538 |
|
539 |
Fix a type-o in /etc/fstab, bug #23308. |
540 |
|
541 |
Add support for the new 'O' agetty option to display the DNS domainname |
542 |
in the issue file thanks to Marius Mauch <genone@genone.de>, bug #22275. |
543 |
Updated /etc/issue and /etc/issue.logo for this. |
544 |
|
545 |
16 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
546 |
|
547 |
Add aliases for add/del to /sbin/rc-update closing bug #24317, thanks |
548 |
to Antonio Dolcetta <zagarna@yahoo.com>. |
549 |
|
550 |
Fix /etc/init.d/net.eth0 to not set rp_filter if already set via |
551 |
/etc/sysctl.conf, bug #24235 - thanks jochen <jochen.eisinger@gmx.de>. |
552 |
|
553 |
Fix /sbin/runscript.sh and /lib/rcscripts/awk/cachedepend.awk to work |
554 |
with symlinks in /etc/init.d/, closing bug #24228. |
555 |
|
556 |
Fix /etc/init.d/clock to work with UML, closing bug #24225 thanks to |
557 |
John Mylchreest <johnm@gentoo.org>. |
558 |
|
559 |
Fix hardcoded color escape sequence in /sbin/rc, closing bug #24109, |
560 |
thanks to splite <splite-gentoo@sigint.cs.purdue.edu>. |
561 |
|
562 |
Fix /sbin/functions.sh to disable color printing if NOCOLOR is set to |
563 |
"true" in /etc/make.conf, closing bug #24107. |
564 |
|
565 |
Fix /etc/init.d/keymaps to be more non-x86 friendly, and also allow |
566 |
more keymaps to be specified in /etc/rc.conf, bug #24084. |
567 |
|
568 |
15 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
569 |
|
570 |
Add /bin/csh to /etc/shells. |
571 |
|
572 |
Add new protocols to /etc/services, thanks Rajiv Aaron Manglani |
573 |
<rajiv@gentoo.org>. |
574 |
|
575 |
23 Jun 2003; Martin Schlemmer <azarah@gentoo.org>: |
576 |
|
577 |
Cleanups for bug #21438 from bug #22637, thanks to |
578 |
Christian Strauf <christian.strauf@gmx.de> and Ian Abbott <ian@abbott.org>. |
579 |
|
580 |
22 Jun 2003; Martin Schlemmer <azarah@gentoo.org>: |
581 |
|
582 |
Really commit fix for bug #21438 to CVS. |
583 |
|
584 |
21 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
585 |
|
586 |
Call /proc mount with explicit options to fix issues where user |
587 |
have 'bind' mounts for /proc in fstab as well, bug #21068. |
588 |
|
589 |
Fix /etc/init.d/bootmisc to check for /sbin/env-update.sh, bug #21384, |
590 |
reported by Gunnlaugur Thor Briem <gthb@hi.is>. |
591 |
|
592 |
Add 'before bootmisc' to /etc/init.d/domainname, as we need to start |
593 |
it before 'env-update.sh' gets run by /etc/init.d/bootmisc. |
594 |
|
595 |
* rc-scripts 1.4.3.8p1 (21 May 2003) |
596 |
|
597 |
21 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
598 |
|
599 |
Last fix I did not use the modified 'myservice', but used $1 again, |
600 |
causing the network dependencies to bork. I did not notice this |
601 |
as I have net.eth0 in default runlevel. |
602 |
|
603 |
* rc-scripts 1.4.3.8 (20 May 2003) |
604 |
|
605 |
20 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
606 |
|
607 |
A '-' in a bash variable is not valid as well. Fix gendepend.awk and |
608 |
rc-service.sh to handle this, thanks to YAMAKURA Makoto |
609 |
<makoto@dsb.club.ne.jp>. |
610 |
|
611 |
Move /etc/issue to /etc/issue.logo, and have /etc/issue only print info |
612 |
about the host it is running on. |
613 |
|
614 |
18 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
615 |
|
616 |
Do not let devfsd handle /dev/log's permission management, as it breaks |
617 |
selinux. Modified /etc/devfsd.conf, changes submited by Chris PeBenito |
618 |
<pebenito@gentoo.org>. |
619 |
|
620 |
Fix type-o in /etc/init.d/net.ppp0, and add local ip-up/ip-down support. |
621 |
|
622 |
14 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
623 |
|
624 |
We should not export the RC_GOT_* variables, as it breaks on some systems, |
625 |
thanks to J?rg Gollnick <gentoo-bugs@wurzelbenutzer.de>, bug #20851. |
626 |
|
627 |
From C. Brewer <killian@gentoo.org>: |
628 |
- Add hide-password to the connect cmd-line of /etc/init.d/net.ppp0, which is |
629 |
suppose to be default, but why take chances? |
630 |
- Also, echoing chmod 640 in the resolv.conf two-step at the end to solve the |
631 |
kppp complaint. |
632 |
|
633 |
13 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
634 |
|
635 |
For the network functions, the dependency code tried to create a funcion |
636 |
with a '.' in the name, causing the network rc-scripts to not have any |
637 |
dependencies. This should fix bug #20849 's order issue, thanks to |
638 |
YAMAKURA Makoto <makoto@dsb.club.ne.jp> for noticing. |
639 |
|
640 |
Fix query_{before,after} to also check 'net' if 'service2' is a network |
641 |
service. |
642 |
|
643 |
12 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
644 |
|
645 |
More cleanups: |
646 |
- Move the broken stuff from symlinks to a DB entry in ${svcdir}/deptree. |
647 |
Updated /sbin/runscript.sh, /sbin/rc-services.sh and gendepend.awk for |
648 |
this. |
649 |
- Add functions for more common tasks in /sbin/runscript.sh to |
650 |
/sbin/rc-services.sh. |
651 |
- Move 'consoletype' to /sbin. |
652 |
- Rename /sbin/rc-envupdate.sh to /sbin/env-update.sh; updated |
653 |
/etc/init.d/bootmisc for this. |
654 |
- Move rc-services.sh, rc-daemon.sh and rc-help.sh to /lib/rcscripts/sh. |
655 |
- Improve detection of circular depends ... modified gendepend.awk for this. |
656 |
|
657 |
* rc-scripts 1.4.3.7 (11 May 2003) |
658 |
|
659 |
11 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
660 |
|
661 |
Too many things to remember, so here is changes of note: |
662 |
- More changes to gendepend.awk. This basically modifies it to not use |
663 |
symlinks in $svcdir/{need,use,before,after,provide} anymore, but rather |
664 |
create a file that can be sourced. Seems to speedup things nicely. |
665 |
- Add /sbin/rc-services.sh. This is basically a module to get dependency |
666 |
info from the new $svcdir/deptree, and some other new service functions. |
667 |
- Modify the whole works to *only* source all needed files once. This |
668 |
includes /sbin/{functions.sh,rc-services.sh,rc-daemon.sh}. Also |
669 |
rc-services.sh will only source $svcdir/deptree once. /sbin/runscript.sh |
670 |
is sourced more than once (actually each time a service is started or |
671 |
stopped, but is is cut down much). Also seems to speed things up again. |
672 |
- Fix a long outstanding bug in gendepend.awk that caused the 'net' |
673 |
dependency to not be actually used in shutdown, causing the services |
674 |
needing it to be stoped before net.* services. |
675 |
- Add the RC_PARALLEL_STARTUP variable, with schedule_service_startup() to |
676 |
/sbin/rc-services.sh and /etc/conf.d/rc. This is experimental parallel |
677 |
startup of services, and seems to work nicely. Only issues to date is |
678 |
that printing of messages is not synced, and a race very intermittantly |
679 |
that causes a service to be started when it was already scheduled. |
680 |
- Add a new dependency type 'parallel' that can be used to control if a |
681 |
service can be started in paralled or not. Possible arguments is "yes" |
682 |
or "no"; if it is not present, it is considered as "yes": |
683 |
|
684 |
depend() { |
685 |
parallel yes|no |
686 |
} |
687 |
|
688 |
Modified cachedepend.awk, gendepend.awk and /sbin/rc-services.sh. |
689 |
- Fix the 'single' runlevel to actually work properly, and without a |
690 |
/etc/runlevels/single directory. |
691 |
- Remove the BOOT variable, and update /sbin/rc to set SOFTLEVEL properly. |
692 |
Fix /etc/init.d/{checkroot,bootmisc} to use SOFTLEVEL instead of BOOT. |
693 |
|
694 |
08 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
695 |
|
696 |
Major rework of /lib/rcscript/awk/gendepend.awk, cleaning it up nicely, |
697 |
and adding more sanity checks. |
698 |
|
699 |
04 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
700 |
|
701 |
Revert /etc/init.d/hostname the way it was, as it should be the user's |
702 |
choice if he want to have a FQDN in there or not, bug #14946. |
703 |
|
704 |
Add /etc/init.d/domainname for those that want to use it. |
705 |
|
706 |
29 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
707 |
|
708 |
Change the root check back the way it was, else it breaks with non bash |
709 |
shells; modified /etc/profile. |
710 |
|
711 |
29 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
712 |
|
713 |
Change test in /etc/profile for root to '[ "$EUID" -eq 0 ]', bug #20140. |
714 |
|
715 |
27 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
716 |
|
717 |
Add various patches from Rachel Holmes <rach@gmx.net>: |
718 |
|
719 |
Dropped use of 'cat' in bash scripts, '$(<$file)' is there for that |
720 |
purpose. Modified: |
721 |
|
722 |
/etc/init.d/net.ppp0 |
723 |
/etc/init.d/nscd |
724 |
/sbin/functions.sh |
725 |
/sbin/rc |
726 |
/sbin/rc-daemon.sh |
727 |
/sbin/rc-envupdate.sh.bash |
728 |
/sbin/runscript.sh |
729 |
|
730 |
Exchanged some gratuitous use of awk for grep. Awk is a little resource |
731 |
hungry just for a simple test. (I [azarah] did not apply the changes to |
732 |
tests for 'devfs', as having 'usbdevfs' in the equation will break |
733 |
things). Modified /sbin/rc for this. |
734 |
|
735 |
Gentoo enforces having /proc, so uname -r is a little redundant when the |
736 |
information is available without an external command. Modified: |
737 |
|
738 |
/etc/init.d/modules |
739 |
/etc/init.d/serial |
740 |
/sbin/functions.sh |
741 |
/sbin/modules-update |
742 |
|
743 |
Changed 'id -u' commands to use $EUID in bash executed scripts, same |
744 |
result no extra command. Modified: |
745 |
|
746 |
/sbin/rc-envupdate.sh |
747 |
/sbin/rc-envupdate.sh.bash |
748 |
/sbin/rc-update |
749 |
|
750 |
Removed all the cat sections, and the separate echo sections. The output |
751 |
is _exactly_ the same, minus some spare spaces that have been removed. |
752 |
Fourfold speed increase in the (granted flimsy) tests I have done. |
753 |
Modified /sbin/rc-help.sh for this. |
754 |
|
755 |
Final remaining 'cat' commands removed, in favour of using bash's internal |
756 |
'$(< )' or 'echo'. Use of echo leads the way to future support for bash's |
757 |
i18n anyway. Modified: |
758 |
|
759 |
/sbin/rc |
760 |
/sbin/rc-envupdate.sh |
761 |
/sbin/rc-envupdate.sh.bash |
762 |
|
763 |
|
764 |
|
765 |
* rc-scripts 1.4.3.6 (27 Apr 2003) |
766 |
|
767 |
27 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
768 |
|
769 |
Add a 'save' function /etc/init.d/clock, bug #19685. |
770 |
|
771 |
Add a slocate group to /etc/group, bug #19604. |
772 |
|
773 |
Do not stop a network service if we do not reboot on runlevel change, |
774 |
as it could have been started by the user or hotplug. This should |
775 |
address bug #12763; modified /sbin/rc for this. |
776 |
|
777 |
Fix /etc/init.d/hostname to set only the hostname, and not the NIS |
778 |
domainname. |
779 |
|
780 |
Fix /etc/init.d/keymaps to be able to set the extended keymap in rc.conf. |
781 |
This should close bug #16884. |
782 |
|
783 |
Fix /etc/profile to be /bin/sh compadible, bug #18918. |
784 |
|
785 |
Change the swap comments in /sbin/rc to "Activating (possible) swap" to |
786 |
be more 'generic' ? Only try to disable swap if any devices/files was |
787 |
activated. This should close bug #19089. |
788 |
|
789 |
Fix /etc/init.d/checkroot to only remount / rw if not set explicitly to |
790 |
rw in /etc/fstab, bug #19158. |
791 |
|
792 |
24 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
793 |
|
794 |
Fix /etc/init.d/net.ppp0 to do the right thing if stopped was called, |
795 |
but the ppp link was already down, bug #15333. |
796 |
|
797 |
12 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
798 |
|
799 |
Fix type-o in /etc/init.d/consolefont (line 38 should be 'retval=$?'). |
800 |
Thanks to Matt Taylor <liverbugg@juno.com> (comment #6, bug #18344). |
801 |
|
802 |
From linux-2.5.68, we need to mount devpts on /dev/pts again ... |
803 |
updated /sbin/rc for this. |
804 |
|
805 |
11 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
806 |
|
807 |
Fix errors on sourcing /etc/profile if EDITOR is not set, bug #18995. |
808 |
|
809 |
10 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
810 |
|
811 |
Make checking in unmount more strict, fixing bug #19007. |
812 |
|
813 |
09 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
814 |
|
815 |
Add one more check to genenviron.awk, to spot cases where there is a |
816 |
space between the variable and the '='. |
817 |
|
818 |
08 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
819 |
|
820 |
Fix interactive shell not to have coloured prompt when used as a |
821 |
dumb client, bug #18886. Fix was inspired by patch from |
822 |
Matthew Kennedy <mkennedy@gentoo.org>. |
823 |
|
824 |
* rc-scripts 1.4.3.5 (06 Apr 2003) |
825 |
|
826 |
06 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
827 |
|
828 |
Hopefully get the serial support sane again. Added /bin/consoletype |
829 |
from Redhat to check for serial console. This should resolve bug |
830 |
#18329 partly. |
831 |
|
832 |
Add the --nocolor option to suppress the use of colors. |
833 |
|
834 |
Change the 'status' option to return true if the service is running, |
835 |
and false if stopped. This is only if the '--quiet' flag was also |
836 |
given. |
837 |
|
838 |
Change the start and stop options not to output or return false if |
839 |
the '--quiet' flag was given. |
840 |
|
841 |
Redirect stderr for consolechars in /etc/init.d/consolefont to /dev/null |
842 |
as well, fixing bug #18344. |
843 |
|
844 |
Optimize $EDITOR extraction in /etc/profile closing bug #18614, thanks to |
845 |
Aron Griffis <agriffis@gentoo.org>. |
846 |
|
847 |
Set HALT to 'shutdown' or 'reboot' depending on if we are shutting down |
848 |
or rebooting. |
849 |
|
850 |
30 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
851 |
|
852 |
Fix bug #18329 ... $COLS was not setup properly for serial console. |
853 |
|
854 |
24 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
855 |
|
856 |
Optimize USB fs stuff in /etc/init.d/localmount to use less cats etc. |
857 |
Fix a problem where it might not have mounted the USB fs when usbcore |
858 |
was compiled as module, and the kernel did not mount it by the time |
859 |
the script was started. Get it to rather check what filesystems is |
860 |
supported when deciding if it should use 'usbdevfs' or 'usbfs', as |
861 |
later 2.4 kernels now also support the newer 'usbfs'. |
862 |
|
863 |
Optimize RAID stuff in /etc/init.d/checkfs a bit. |
864 |
|
865 |
16 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
866 |
|
867 |
Update sbin/rc-envupdate.sh.bash for bug #17549. |
868 |
|
869 |
* rc-scripts 1.4.3.4 (16 Mar 2003) |
870 |
|
871 |
16 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
872 |
|
873 |
Add /etc/issue done by a Polish ascii-artists, v|rus with some slight |
874 |
modifications (purple and display hostname, etc). Closes bug #16806. |
875 |
|
876 |
Add 'use hotplug' to /etc/init.d/net.eth0, to get cardbus hardware to |
877 |
work properly. Closes bug #17348. |
878 |
|
879 |
Add update from Wout Mertens <wmertens@gentoo.org> to speedup shutdown |
880 |
of dhcp interfaces, closing bug #17378. This modified /etc/init.d/net.eth0. |
881 |
|
882 |
11 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
883 |
|
884 |
Fix usage of /usr/bin/cut in /sbin/functions.sh, thanks Brandon Low |
885 |
<lostlogic@gentoo.org>! |
886 |
|
887 |
10 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
888 |
|
889 |
Add sysfs support for 2.5 kernels (mounted to /sys). Updated /sbin/rc |
890 |
and /etc/init.d/halt.sh for this. |
891 |
|
892 |
Update /etc/fstab to correctly mount /proc with: |
893 |
|
894 |
mount -t proc none /proc |
895 |
|
896 |
Do the same for /dev/shm: |
897 |
|
898 |
mount -t tmpfs none /dev/shm |
899 |
|
900 |
Fix a typeo in /etc/init.d/checkroot that caused 'umount -a' to output |
901 |
noise if we exited a recovery console. |
902 |
|
903 |
Fix /etc/init.d/hostname using /usr/bin/cut, closing bug #17175, thanks |
904 |
to Bobby Bingham <uhmmmm@columbus.rr.com> for noticing this. |
905 |
|
906 |
Bring down default gateway before adding new one .. this fixes issues |
907 |
where eth0/whatever was brought up by kernel. Changed /etc/init.d/net.eth0 |
908 |
for this, closing bug #17164. Thanks to nth <y.lesaint@free.fr> for the |
909 |
fix. |
910 |
|
911 |
Fix /etc/init.d/modules to call modprobe with -q .. this fix issues where |
912 |
it fails for module-init-tools if the module is already loaded. This |
913 |
closes bug #17163, thanks to nth <y.lesaint@free.fr>. |
914 |
|
915 |
* rc-scripts 1.4.3.3 (09 Mar 2003) |
916 |
|
917 |
09 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
918 |
|
919 |
Fix /etc/init.d/netmount not to unmount / on nfs/whatever, bug #16274. |
920 |
|
921 |
Fix net.eth0 not to try and start an interface if already up. |
922 |
|
923 |
Update MAKEDEV from Debian to support more archs. This adds support |
924 |
for 'arm', 'hppa' among others. URL: |
925 |
|
926 |
http://packages.debian.org/stable/base/makedev.html |
927 |
|
928 |
Add support to /etc/init.d/modules to use /etc/modules.autoload/kernel-2.4 |
929 |
if we are using a 2.4 kernel, and /etc/modules.autoload/kernel-2.5 if we |
930 |
are using a 2.5 kernel ... bug #17109. |
931 |
|
932 |
02 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
933 |
|
934 |
Update /etc/init.d/hostname to only set the hostname to whatever is before |
935 |
the first '.', and then set the domainname to the rest, closing bug #14946. |
936 |
|
937 |
28 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
938 |
|
939 |
Merge some of the optimizations from Graham Forest <vladimir@gentoo.org>. |
940 |
|
941 |
Fix spelling of dependency and some other spelling/grammer issues. |
942 |
Thanks goes to Kerin Millar <kerin@recruit2recruit.net> and |
943 |
Mike Frysinger <vapier@gentoo.org>, bug #15498. |
944 |
|
945 |
Change $svcdir to '/var/lib/init.d' to be more FHS compliant, bug #15192. |
946 |
|
947 |
Add 'Eterm' to /etc/skel/.bashrc, closing bug #14662. |
948 |
|
949 |
Adjust comments about PROTOCOLS in /etc/rc.conf to try and prevent |
950 |
bug #14556. |
951 |
|
952 |
27 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
953 |
|
954 |
Finally fix /etc/init.d/halt.sh to unmount non critical mounts properly. |
955 |
|
956 |
20 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
957 |
|
958 |
Kill /dev/ttyp0 error at boot by changing test in /etc/init.d/modules |
959 |
to 'test -c /dev/ttyp0 &> /dev/null'. |
960 |
|
961 |
18 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
962 |
|
963 |
Update /sbin/modules-update to generate /etc/modprobe.devfs from |
964 |
/etc/modules.devfs. This along with the devfs-hack.patch in the latest |
965 |
module-init-tools-0.9.9 should get rid of many of the warnings/errors |
966 |
with devfs, and makes it work a bit better. |
967 |
|
968 |
17 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
969 |
|
970 |
Fix /etc/inputrc for dvorak keyboard layout, bug #2599 again. |
971 |
|
972 |
16 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
973 |
|
974 |
Fix the 'source /etc/profile.env' to be '. /etc/profile' to have ksh |
975 |
support. This resolves bug #14994. |
976 |
|
977 |
Move EDITOR to /etc/rc.conf. Also update /etc/profile to set EDITOR |
978 |
according to /etc/rc.conf. |
979 |
|
980 |
Update /etc/init.d/checkfs to fix bug #14282. It did not exclude comments, |
981 |
and used 'basename' which is located in /usr/bin. |
982 |
|
983 |
13 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
984 |
|
985 |
Merge changes from Nick Jones <carpaski@gentoo.org> to not run stty if |
986 |
used in portage. Fix the NOCOLOR stuff. Updated /sbin/functions.sh for |
987 |
this. |
988 |
|
989 |
06 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
990 |
|
991 |
Update src/awk/genenviron.awk to properly set the environment for each |
992 |
rc-script's depend() function by sourcing required config files. |
993 |
|
994 |
05 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
995 |
|
996 |
Fix /sbin/rc-envupdate.sh to use $svcdir to set SVCDIR. This is thanks |
997 |
to Max Kalika <alkern23@yahoo.com>, bug #15050. |
998 |
|
999 |
03 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
1000 |
|
1001 |
Fix /sbin/modules-update to work with module-init-tools-0.9.9. |
1002 |
|
1003 |
30 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1004 |
|
1005 |
Add 'use isapnp' to /etc/init.d/modules, closing bug #14677, thanks to |
1006 |
Hubert Hanghofer <hubert.hanghofer@netbeer.co.at>. |
1007 |
|
1008 |
27 Jan 2003; Donny Davies <woodchip@gentoo.org>: |
1009 |
|
1010 |
Fix halt.sh by moving the nut UPS kill power stuff back into a function! |
1011 |
Add fix from the wonderful analysis of Toby Dickenson |
1012 |
<tdickenson@geminidataloggers.com> in #12947. |
1013 |
|
1014 |
26 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1015 |
|
1016 |
Fix start-stop-daemon to check the call to nice() correctly for failure, |
1017 |
closing bug #14359, thanks to YAMAKURA Makoto <makoto@dsb.club.ne.jp>. |
1018 |
|
1019 |
Fix globbing $? when checking return value of fsck in /etc/init.d/checkroot |
1020 |
and /etc/init.d/checkfs. This closes bug #13320, thanks to good work from |
1021 |
Malcolm Scott <m@lcolm.org.uk>. |
1022 |
|
1023 |
21 Jan 2003; Mike Frysinger <vapier@gentoo.org>: |
1024 |
|
1025 |
Updated /etc/rc.conf to add elogin/entrance support #13790. |
1026 |
|
1027 |
21 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1028 |
|
1029 |
Update /etc/init.d/keymaps to enable unicode if required. This closes |
1030 |
bug #14306 thanks to Danny Milosavljevic <danny_milo@yahoo.com>. |
1031 |
|
1032 |
19 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1033 |
|
1034 |
Fix deadlock durning shutdown if tmpfs filesystems larger than free |
1035 |
memory, and swap gets deactivated, bug #13599. Updated /etc/init.d/halt.sh |
1036 |
for this. |
1037 |
|
1038 |
Merge in some fixes from Vapier <vapier@gentoo.org> to /sbin/functions.sh. |
1039 |
This closes bug #13868. |
1040 |
|
1041 |
Always add "/bin:/sbin:/usr/bin:/usr/sbin" to PATH, as it fixes both |
1042 |
'su -c foo' not finding start-stop-daemon (etc), and bug #14127. |
1043 |
|
1044 |
Add route for lo interface to /etc/init.d/net.lo, closing bug #14055. |
1045 |
|
1046 |
15 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1047 |
|
1048 |
Clear $svcdir in /sbin/rc before we run depscan to make sure we do |
1049 |
not have stale entries left from hard reboot, thanks to pac1085 on |
1050 |
irc. |
1051 |
|
1052 |
* rc-scripts 1.4.3.2 (15 Jan 2003) |
1053 |
|
1054 |
15 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1055 |
|
1056 |
Truely fix bootup on seperate /var. |
1057 |
|
1058 |
Add some fixes and optimizations to /sbin/rc-update, thanks to |
1059 |
Daniel Robbins <drobbins@gentoo.org>. |
1060 |
|
1061 |
* rc-scripts 1.4.3.1 (15 Jan 2003) |
1062 |
|
1063 |
15 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1064 |
|
1065 |
Fix bootup on seperate /var. |
1066 |
|
1067 |
14 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1068 |
|
1069 |
Fix /etc/init.d/hostname and /etc/init.d/serial to close bug #13636. |
1070 |
|
1071 |
07 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1072 |
|
1073 |
Fix /etc/init.d/keymaps to force linux keycodes for PPC, thanks |
1074 |
to Olaf Hering <gentoo@aepfle.de>, bug #13193. |
1075 |
|
1076 |
Turn on -C option to fsck on for all calls to fsck. Updated scripts |
1077 |
/etc/init.d/checkroot and /etc/init.d/checkfs, closing bug #13321. |
1078 |
|
1079 |
* rc-scripts 1.4.3.0 (07 Jan 2003) |
1080 |
|
1081 |
07 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1082 |
|
1083 |
Too much to mention, but here are a few: |
1084 |
- Major rewrite of software RAID startup, based on Mandrake's, as |
1085 |
ours was pretty broken :( |
1086 |
- Redone /sbin/rc to work without the tmpfs/ramfs stat directory. |
1087 |
Much of /sbin/functions.sh and other scripts have been changed |
1088 |
to support this. |
1089 |
- Reworked /etc/inittab to support this. Also moved critical |
1090 |
mounting of local filesystems to 'sysinit' function of /sbin/rc. |
1091 |
- Move state directory to /var/state/init.d/ ($svcdir). |
1092 |
- Move Adelie node init to /sbin/functions.sh to try and simplify |
1093 |
/sbin/rc a bit. |
1094 |
- Updated Copyright dates to 2003. |
1095 |
|
1096 |
* rc-scripts 1.4.2.8 (06 Jan 2003) |
1097 |
|
1098 |
02 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
1099 |
|
1100 |
Fix src/awk/genenviron.awk to work with multiple 'need', 'use', etc |
1101 |
lines, as it seems users do not note the need to have them all on |
1102 |
one line .... |
1103 |
|
1104 |
Fix /sbin/runscript.sh to detect 'net.adsl', or any other net.* |
1105 |
script not ending on a digit. This closes bug #12887. |
1106 |
|
1107 |
Fix get_KV to also check micro version of kernel; add KV_to_int() |
1108 |
helper function for get_KV. Update /etc/init.d/localmount to work |
1109 |
with new get_KV ... |
1110 |
|
1111 |
28 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
1112 |
|
1113 |
Add support for generate-modprobe.conf or generating /etc/modprobe.conf |
1114 |
in the new sys-apps/module-init-tools. Note that you need version |
1115 |
0.9.7 or later of sys-apps/module-init-tools. Updated |
1116 |
/sbin/modules-update for this. |
1117 |
|
1118 |
Change /etc/init.d/localmount to use 'usbfs' and not 'usbdevfs' if |
1119 |
we are running kernel 2.5 or later ... |
1120 |
|
1121 |
26 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
1122 |
|
1123 |
Add /etc/init.d/crypto-loop and /etc/conf.d/crypto-loop, a cool |
1124 |
rc-script to setup encrypted loopback devices. This was kindly |
1125 |
donated by Matthew Kennedy <mkennedy@gentoo.org> (bug #11471). |
1126 |
|
1127 |
25 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
1128 |
|
1129 |
Fix src/awk/genenviron.awk stripping *all* '=', closing |
1130 |
bug #8901. |
1131 |
|
1132 |
Fix src/awk/genenviron.awk not seperating CONFIG_PROTECT with |
1133 |
spaces ... |
1134 |
|
1135 |
* rc-scripts 1.4.2.7 (24 Dec 2002) |
1136 |
|
1137 |
24 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
1138 |
|
1139 |
Add a fix to /sbin/functions.sh for bug #12601. |
1140 |
|
1141 |
22 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
1142 |
|
1143 |
Add INFOPATH to /etc/env.d/00basic. |
1144 |
|
1145 |
Fix src/awk/genenviron.awk to get the order of the env.d files |
1146 |
correct. Also fix it to handle *all* the SPECIALS correctly. |
1147 |
This closes bug #12411. |
1148 |
|
1149 |
* rc-scripts 1.4.2.6 (18 Dec 2002) |
1150 |
|
1151 |
18 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
1152 |
|
1153 |
Add mips changes to sbin/MAKEDEV. This should close bug #12329, |
1154 |
thanks to Nicholas Wourms <nwourms@netscape.net>. |
1155 |
|
1156 |
Quote some tests in /sbin/rc-update to fix/avoid the problem |
1157 |
in bug # |
1158 |
|
1159 |
Fix awk regex in /etc/init.d/halt.sh to fix bug #11795. |
1160 |
|
1161 |
Update shell for postgres user, closing bug #12258. |
1162 |
|
1163 |
11 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
1164 |
|
1165 |
Fix src/awk/genenviron.awk not to add duplicate entries, closing |
1166 |
bug #8999. |
1167 |
|
1168 |
* rc-scripts 1.4.2.5 (09 Dec 2002) |
1169 |
|
1170 |
08 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
1171 |
|
1172 |
Add another sync to /etc/init.d/halt.sh, closing bug 8173. |
1173 |
|
1174 |
Add smmsp uid and gid. Closes bug #8952. |
1175 |
|
1176 |
04 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
1177 |
|
1178 |
Setup colums, etc up properly for serial consoles in /sbin/functions.sh. |
1179 |
Closes bug #11557, thanks to Erik Scrafford <erik@scrafford.org>. |
1180 |
|
1181 |
Add headers similar to that of portage-2.0.45 and up to the |
1182 |
generated profile files (/etc/{profile,csh}.env). Updated |
1183 |
src/awk/genenviron.awk for this. |
1184 |
|
1185 |
01 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
1186 |
|
1187 |
Fix typeo in /etc/devfsd.conf, closing bug #11424, thanks to the |
1188 |
sharp eye of Techie2000 <Linux@mochamail.com>. |
1189 |
|
1190 |
Rename /sbin/update-modules to /sbin/modules-update, closing |
1191 |
bug #11445. |
1192 |
|
1193 |
Nano moved from /usr/bin/nano to /bin/nano. Fix this in |
1194 |
/etc/env.d/00basic, bug #10916. |
1195 |
|
1196 |
27 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1197 |
|
1198 |
Add more improvements to clustering code. This is from |
1199 |
Olivier Crete <crete@cerca.umontreal.ca>, bug #4151. |
1200 |
|
1201 |
26 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1202 |
|
1203 |
Change default 'net' dependency behaviour to be more suited |
1204 |
for notebook users. Basically if at least one net.* service |
1205 |
beside net.lo start successfully, the 'net' dependency is |
1206 |
considered up. Server admin can set RC_NET_STRICT_CHECKING="yes" |
1207 |
in /etc/conf.d/rc to change this back to the old default. |
1208 |
This is the start to address bug #2706. |
1209 |
|
1210 |
* rc-scripts 1.4.2.4 (26 Nov 2002) |
1211 |
|
1212 |
26 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1213 |
|
1214 |
Initial merge of bits for Adelie Linux for SSI clusters. More |
1215 |
info at: |
1216 |
|
1217 |
http://www.cerca.umontreal.ca/hpc/en/projects/adelie/index.html |
1218 |
|
1219 |
25 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1220 |
|
1221 |
One liner fix to src/awk/cachedepends.awk to once again fix |
1222 |
bug #7803. |
1223 |
|
1224 |
18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1225 |
|
1226 |
Add 'alias char-major-89 i2c-dev' to /etc/modules.d/aliases. |
1227 |
This should close bug #10891. |
1228 |
|
1229 |
* rc-scripts 1.4.2.3 (18 Nov 2002) |
1230 |
|
1231 |
18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1232 |
|
1233 |
Add some more checks to src/awk/*. Fix error printing for |
1234 |
/sbin/depscan.sh. |
1235 |
|
1236 |
Link awk module with gcc and not with ld. This should fix |
1237 |
problems on sparc and alpha. Many thanks for this fix to |
1238 |
Stephan Jones <cretin@gentoo.org>. |
1239 |
|
1240 |
Remove the copyright info from config files, thanks to |
1241 |
Matthew Kennedy <mkennedy@gentoo.org>. |
1242 |
|
1243 |
* rc-scripts 1.4.2.2 (18 Nov 2002) |
1244 |
|
1245 |
18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1246 |
|
1247 |
Add src/awk/genenviron.awk which is rc-envupdate.sh ported |
1248 |
to awk. This is also much faster than its bash version. |
1249 |
|
1250 |
Remove the 'Spider cat fix' from depscan.sh.bash, as it makes |
1251 |
things even slower on older boxes. Bug #10548. |
1252 |
|
1253 |
After a bored Vapier decided that he needed to update the |
1254 |
licenses of things in /etc :P, I did the rest. Hopefully |
1255 |
not too many people will nuke thier fstab :/ |
1256 |
|
1257 |
* rc-scripts 1.4.2.1 (18 Nov 2002) |
1258 |
|
1259 |
18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1260 |
|
1261 |
Update src/awk/cachedepends.awk to find its own rc-scripts, |
1262 |
fixing the need for find which broke systems with /usr on |
1263 |
a different partition. |
1264 |
|
1265 |
17 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1266 |
|
1267 |
Add some extra checks to src/awk/cachedepends.awk and |
1268 |
src/awk/gendepends.awk. |
1269 |
|
1270 |
Move some of the more generic functions in src/awk/gendepends.awk |
1271 |
to src/awk/functions.awk. |
1272 |
|
1273 |
* rc-scripts 1.4.2 (17 Nov 2002) |
1274 |
|
1275 |
17 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1276 |
|
1277 |
Add initial version of new depscan.sh. This uses awk scripts |
1278 |
to do the main work, giving about 10 times speed improvement on |
1279 |
slower machines. Updated /sbin/depscan.sh, src/filefuncts.c, |
1280 |
src/Makefile, src/awk/cachedepends.awk and src/awk/gendepends.awk |
1281 |
for this. This should close bug #10548. |
1282 |
|
1283 |
* rc-scripts 1.4.1.2 (5 Nov 2002) |
1284 |
|
1285 |
5 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1286 |
|
1287 |
Add UID/GID of 250 for Portage Fakeroot account. |
1288 |
|
1289 |
4 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
1290 |
|
1291 |
Change /etc/init.d/clock to depend on localmount again, fixing |
1292 |
bug #10048. |
1293 |
|
1294 |
Get deps on logger sane again. I wanted to get the logger started |
1295 |
as early as possible, but clock for one breaks if /usr is mounted |
1296 |
on seperate partition. |
1297 |
|
1298 |
29 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
1299 |
|
1300 |
Fix return in /etc/init.d/modules to return 0 if /proc/modules |
1301 |
do not exists. Closes bug #7738, comment #5. |
1302 |
|
1303 |
* rc-scripts 1.4.1.1 (28 Oct 2002) |
1304 |
|
1305 |
28 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
1306 |
|
1307 |
Fix /sbin/update-modules not to include backup files. Closes |
1308 |
bug #9707. |
1309 |
|
1310 |
26 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
1311 |
|
1312 |
Fix update-modules borking if there are directories present |
1313 |
in /etc/modules.d/. Closes bug #9632. |
1314 |
|
1315 |
17 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
1316 |
|
1317 |
Change deps on /etc/init.d/{clock,hostname,modules} not to |
1318 |
depend on localmount, but rather on checkroot, as all of them |
1319 |
just need / to be mounted. This should fix race conditions |
1320 |
because of checkfs dependency on modules. This should close |
1321 |
bug #9266. |
1322 |
|
1323 |
* rc-scripts 1.4.1 (13 Oct 2002) |
1324 |
|
1325 |
13 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
1326 |
|
1327 |
Create and fix permissions on /tmp/.{ICE,X11}-unix/. This |
1328 |
is additional measures for bug #8281. |
1329 |
|
1330 |
12 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
1331 |
|
1332 |
Update /etc/init.d/net.eth0 to fix bug #8626. |
1333 |
|
1334 |
Fix /sbin/rc-update to check return code of "ln". This should |
1335 |
close bug #8867. |
1336 |
|
1337 |
29 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
1338 |
|
1339 |
Fix indentation in /etc/inputrc. This should close |
1340 |
bug #8368. |
1341 |
|
1342 |
Add extended status functionality. Should close bug #2462. |
1343 |
|
1344 |
Add support for /sbin/rc-update to check if the rc-script |
1345 |
is executable or not. Thanks to widersacher@gmx.net, closing |
1346 |
bug #8326. |
1347 |
|
1348 |
25 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
1349 |
|
1350 |
Fix /etc/init.d/bootmisc not to kill pidfiles of running |
1351 |
daemons. Improve NGPT support in /sbin/rc a bit. |
1352 |
|
1353 |
23 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
1354 |
|
1355 |
Fix my last screwup with /etc/init.d/net.ppp0. Basically |
1356 |
forgot to change a few DEVICE's to IFACE ... |
1357 |
|
1358 |
22 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
1359 |
|
1360 |
NGPT support. |
1361 |
|
1362 |
17 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
1363 |
|
1364 |
Did a small fix to /etc/init.d/net.eth0, thanks to |
1365 |
naanyaar2000@yahoo.com, bug #7407. |
1366 |
|
1367 |
16 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
1368 |
|
1369 |
Add the permission stuff for generic scsi when compiled as |
1370 |
module, thanks to Bauno <bauno@inwind.it>. |
1371 |
|
1372 |
Add support for /etc/devfs.d/ for additional devfs config |
1373 |
stuff .. idea from Denys Duchier <Denys.Duchier@ps.uni-sb.de>. |
1374 |
|
1375 |
11 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
1376 |
|
1377 |
Fix small type-o from last changes to /etc/init.d/netmount. |
1378 |
Should resolve bug #7803. |
1379 |
|
1380 |
* rc-scripts 1.4.0 (7 Sep 2002) |
1381 |
|
1382 |
7 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
1383 |
|
1384 |
Update /etc/init.d/net.eth0 to handle individual broadcast |
1385 |
and netmask for aliases. Should close bug #7407. |
1386 |
|
1387 |
Give /var/run/utmp and /var/log/wtmp the proper permissions |
1388 |
and ownership. First steps in fixing bug #7630. |
1389 |
|
1390 |
Change Raid stuff again in /etc/init.d/checkfs. |
1391 |
|
1392 |
26 Aug 2002; Donny Davies <woodchip@gentoo.org>: |
1393 |
|
1394 |
Give root a 'root' GECOS in /etc/passwd, was NULL before. |
1395 |
|
1396 |
* rc-scripts 1.3.9 (25 Aug 2002) |
1397 |
|
1398 |
25 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
1399 |
|
1400 |
Update /sbin/rc to fix some spelling/slang mistakes. Closes |
1401 |
bug #6887. |
1402 |
|
1403 |
Move /etc/init.d/net.ppp0 's config to /etc/conf.d/net.ppp0. |
1404 |
This closes bug #6378. |
1405 |
|
1406 |
Add IPv6 support to /etc/init.d/net.eth0. Closes bug #6175, |
1407 |
with many thanks to Asbjorn Sannes <ace@sannes.org>. |
1408 |
|
1409 |
20 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
1410 |
|
1411 |
Update /etc/init.d/bootmisc to reset pam_console permissions. |
1412 |
|
1413 |
Update /etc/devfsd.conf to have the "pam_console_apply_devfsd.so" |
1414 |
line for getting devfs to work with pam_console. |
1415 |
|
1416 |
12 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
1417 |
|
1418 |
Update /etc/init.d/keymaps to first load the windowkeys.inc then |
1419 |
the user selected one, fixing bug #6295. |
1420 |
|
1421 |
11 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
1422 |
|
1423 |
Change the 'cat' in check_rcscript() to a single 'awk' in |
1424 |
/sbin/depscan.sh. This should fix broken pipe issues if the |
1425 |
loop exists too early. Resolves bug #5961. |
1426 |
|
1427 |
Fix software RAID startup/shutdown, bug #5310. Modified |
1428 |
/etc/init.d/checkfs and /etc/init.d/halt.sh for this. |
1429 |
|
1430 |
* rc-scripts 1.3.8 (08 Aug 2002) |
1431 |
|
1432 |
7 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
1433 |
|
1434 |
Move the color ls stuff to .bashrc. Fix bug #5250. |
1435 |
|
1436 |
6 Aug 2002; Dan Armak <danarmak@gentoo.org>: |
1437 |
|
1438 |
Correct the comments in rc.conf about the XSESSION variable: it should |
1439 |
be set to "kde-<version>" not "KDE". Closes bug #5948. |
1440 |
|
1441 |
5 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
1442 |
|
1443 |
Fix the 'Usage' line in the help to return the correct options for |
1444 |
the script (/sbin/runscript.sh). Resolve bug #6029. |
1445 |
|
1446 |
3 Aug 2002; Donny Davies <woodchip@gentoo.org>: |
1447 |
|
1448 |
Added UPS shutdown support for nut to halt.sh. |
1449 |
Added nut user/group as uid/gid 84. |
1450 |
|
1451 |
27 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
1452 |
|
1453 |
Updated /sbin/rc's way of checking for devfs support (now rather uses |
1454 |
awk, as it is more accurate). Closes bug #5458. |
1455 |
|
1456 |
Add the Redhat/Mandrake /forcefsck and /fastboot options to our checkroot |
1457 |
and checkfs. Updated /etc/init.d/{checkroot,checkfs,halt.sh} for this. |
1458 |
Thanks goes to Chris PeBenito (bug #5570). |
1459 |
|
1460 |
Changed most daemons to use /bin/false as shell. Should close bug #5388. |
1461 |
|
1462 |
27 Jul 2002; Nicholas Jones <carpaski@gentoo.org>: |
1463 |
|
1464 |
Added vpopmail user and group as 89:89 |
1465 |
|
1466 |
22 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
1467 |
|
1468 |
Add the cyrus user to /etc/passwd. Resolves bug #4100. |
1469 |
|
1470 |
Some bugfixes and speed improvements to /sbin/depscan.sh after |
1471 |
last changes. |
1472 |
|
1473 |
Replace some cat/grep's in /sbin/rc-envupdate.sh with awk's to |
1474 |
get some speed improvements. |
1475 |
|
1476 |
21 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
1477 |
|
1478 |
Fix LVM support in /etc/init.d/checkfs again, thanks to help from |
1479 |
Kyle Manna <nitro@gentoo.org>. |
1480 |
|
1481 |
Add software RAID support to /etc/init.d/checkfs, thanks to |
1482 |
Daniel Ahlberg <aliz@gentoo.org>. |
1483 |
|
1484 |
Update the cache_depend() funtion in /sbin/depscan.sh not to |
1485 |
quit on any "}", but only on the one matching the first "{". This |
1486 |
requires wc in /bin, so baselayout should depend on |
1487 |
>=sys-apps/textutils-2.0.19-r2 |
1488 |
|
1489 |
Update /etc/init.d/netmount to try and detect nfs mounts that should be |
1490 |
mounted automatically on boot. This requires awk in /bin, so baselayout |
1491 |
should depend on >=sys-apps/gawk-3.1.0-r3. |
1492 |
|
1493 |
* rc-scripts 1.3.7 (17 Jul 2002) |
1494 |
|
1495 |
17 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
1496 |
|
1497 |
Add logging functionality to the rc-scripts, thanks to Alexander Holler, |
1498 |
bug #4037 for the basic idea. Updated /sbin/functions.sh for this. |
1499 |
|
1500 |
16 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
1501 |
|
1502 |
Add additional entries to /etc/services to support cyrus-imapd, thanks |
1503 |
to Nick Hadaway <raker@gentoo.org>. |
1504 |
|
1505 |
Update /etc/init.d/consolefont to resolve bug #4968. This fixes a |
1506 |
problem with non 7bit ascii symbols. |
1507 |
|
1508 |
Updated /etc/init.d/checkfs to detect if lvm is already active. |
1509 |
This should resolve bug #3613. |
1510 |
|
1511 |
5 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
1512 |
|
1513 |
Add "usb" group, gid 85. Move "sshd" user and group to 22. Move |
1514 |
"games" user and group to 35 |
1515 |
|
1516 |
3 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
1517 |
|
1518 |
Update Copyright displayed at boot, thanks to Sascha Schwabbauer |
1519 |
(aka cybersystem). Updated /sbin/rc for this. |
1520 |
|
1521 |
30 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
1522 |
|
1523 |
Update /etc/skel/.bashrc to update the window title of X terminals |
1524 |
that supports it. Closes bug #4232. |
1525 |
|
1526 |
26 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
1527 |
|
1528 |
Add sshd user and group. Updated /etc/passwd and /etc/group for this. |
1529 |
|
1530 |
Update /etc/inputrc to resolve bug #2599. |
1531 |
|
1532 |
20 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
1533 |
|
1534 |
Add /opt/bin to $PATH and $ROOTPATH, closing bug #3603. Modified |
1535 |
/etc/env.d/00basic for this. |
1536 |
|
1537 |
Add some new daemon stop and pid detection stuff to /sbin/functions.sh. |
1538 |
Nothing official, but I spent enouth time on it not to want to loose it :) |
1539 |
|
1540 |
Fixed a bug in /sbin/functions.sh that caused rc-scripts run as cron jobs |
1541 |
to give output to stderr. This was caused by a call to "stty", which when |
1542 |
run without a attatched terminal, have this effect. Basically just pipe |
1543 |
stderr to /dev/null. |
1544 |
|
1545 |
5 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
1546 |
|
1547 |
Add /usr/local/share/man to $MANPATH (/etc/env.d/00basic), resolving |
1548 |
bug #3363 |
1549 |
|
1550 |
26 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
1551 |
|
1552 |
Update /etc/init.d/netmount not to try and mount NFS filesystems |
1553 |
if portmap was not started. This is to stop "hang" problems for |
1554 |
new users who do not add portmap to the default runlevel. See |
1555 |
bug #2555. |
1556 |
|
1557 |
Add the video4linux stuff to /etc/devfsd.conf. Resolves bug #2015. |
1558 |
|
1559 |
19 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
1560 |
|
1561 |
Move $EDITOR from /etc/profile to /etc/env.d/00basic. |
1562 |
|
1563 |
13 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
1564 |
|
1565 |
Change the homes of user "at" and "cron" in /etc/passwd, as |
1566 |
they moved to /var/spool/cron... |
1567 |
|
1568 |
* rc-scripts 1.3.5 (12 May 2002) |
1569 |
|
1570 |
12 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
1571 |
|
1572 |
Make slight modifications to /sbin/depscan.sh to improve speed (about |
1573 |
1 second on a celeron 633). |
1574 |
|
1575 |
Finally fix /sbin/runscript.sh to properly handle interdependencies |
1576 |
between types need/use and before/after on runlevel change. I can |
1577 |
actually kick myself for previous implementations, as this fix simplifies |
1578 |
things a lot, and is almost 30 lines of code less! |
1579 |
|
1580 |
Change /etc/init.d/netmount not to fail if all mounts are not mounted. |
1581 |
It rather just exit with a warning, as I think most people have like |
1582 |
me mounts that are to boxes that are not always up. |
1583 |
|
1584 |
Resolve bug #2439 (should not use try with the dd command for ramdisk |
1585 |
stuff). Also increase the number of inodes used for the ramdisk to |
1586 |
fix "out of space" errors. Updated /sbin/rc for this. |
1587 |
|
1588 |
10 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
1589 |
|
1590 |
Resolve bug #2505 ... /sbin/rc-envupdate.sh should not use |
1591 |
backup files to generate /etc/profile.env. |
1592 |
|
1593 |
Resolve bug #2489 and #2175. Modified /etc/init.d/net.eth0 |
1594 |
for this. |
1595 |
|
1596 |
6 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
1597 |
|
1598 |
Fixed /sbin/rc-envupdate.sh to only use the $KDEDIR of the highest |
1599 |
/etc/env.d/ file. Same for $QTDIR. |
1600 |
|
1601 |
5 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
1602 |
|
1603 |
Add /etc/DIR_COLORS as it is no longer shipped with fileutils, |
1604 |
and is needed for some fixes. |
1605 |
|
1606 |
28 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
1607 |
|
1608 |
Update /etc/rc.conf to be more clear and state that you should |
1609 |
remove consolefont from startup if you do not use it. Should |
1610 |
resolve bug #2174. |
1611 |
|
1612 |
26 Apr 2002; Donny Davies <woodchip@gentoo.org> passwd, group : |
1613 |
|
1614 |
Added user/group apache with uid/gid 81. |
1615 |
|
1616 |
25 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
1617 |
|
1618 |
Remove the "-net" from the line setting the default gateway |
1619 |
in /etc/init.d/net.eth0. Thanks to Peter W. Michaleas for |
1620 |
noting this. |
1621 |
|
1622 |
24 Apr 2002; Donny Davies <woodchip@gentoo.org> rc.conf : |
1623 |
|
1624 |
Remove NFSSERVER from rc.conf since it's now covered in /etc/conf.d/nfs |
1625 |
which is installed with the nfs-utils package. Also tidied up some |
1626 |
really old, leftover junk like the non-supported stuff from rc5. |
1627 |
Closes #1754. |
1628 |
|
1629 |
23 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
1630 |
|
1631 |
Remove creation of /var/run/utmpx from bootmisc again. Seems |
1632 |
other people have wierd problems. |
1633 |
|
1634 |
* rc-scripts 1.3.4 (21 Apr 2002) |
1635 |
|
1636 |
21 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
1637 |
|
1638 |
Add /sbin/rc-envupdate.sh to speedup updating of /etc/profile.env, |
1639 |
and /etc/csh.env. Update /etc/init.d/bootmisc to use this. |
1640 |
|
1641 |
Implement the status commandline argument. Updated /sbin/runscript.sh |
1642 |
and /sbin/rc-help.sh for this. |
1643 |
|
1644 |
Fix /sbin/depscan.sh to honour NEED and USE overriding BEFORE |
1645 |
and AFTER. |
1646 |
|
1647 |
12 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
1648 |
|
1649 |
Update /etc/init.d/bootmisc to create /var/run/utmpx. This |
1650 |
is needed, else /usr/bin/newgrp segfault. |
1651 |
|
1652 |
11 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
1653 |
|
1654 |
Update /etc/skel/.bash_profile to make it tcsh compadible. |
1655 |
Thanks to Väinö Järvelä for this fix. |
1656 |
|
1657 |
Update /etc/profile to also set the PS? variables if $SHELL |
1658 |
is set to /bin/sh. This should make prompt colours in |
1659 |
bootstrap work again. |
1660 |
|
1661 |
Move LVM stuff to checkfs to ensure that they get fscked. |
1662 |
This resolves bug #1552. |
1663 |
|
1664 |
* rc-scripts 1.3.3 (5 Apr 2002) |
1665 |
|
1666 |
5 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
1667 |
|
1668 |
Move /etc/init.d/{depscan.sh,runscript.sh,functions.sh} to /sbin. |
1669 |
This is done to try and ensure system integrity. |
1670 |
|
1671 |
1 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
1672 |
|
1673 |
Add quotes to the "export INPUTRC=/etc/inputrc" line to resolve bug #1391. |
1674 |
|
1675 |
Add a error message to /etc/init.d/consolefont, resolving bug #1415. |
1676 |
|
1677 |
Add a bash check to the code that sets the prompt, fixing bug #1078. |
1678 |
|
1679 |
* rc-scripts 1.3.2 (24 Mar 2002) |
1680 |
|
1681 |
24 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1682 |
|
1683 |
Resolve bug #1274. Updated /etc/init.d/hostname and /etc/init.d/bootmisc |
1684 |
for this. |
1685 |
|
1686 |
With the "before" and "after" stuff, recursion levels was getting too high, |
1687 |
and with some cases, things just plain did not work as it should. Reworked |
1688 |
things to to lower the levels of recursion and get the order right. Updated |
1689 |
/etc/init.d/runscript.sh for this. |
1690 |
|
1691 |
Fixed a problem in /sbin/rc and /etc/init.d/runscript.sh where |
1692 |
${svcdir}/softlevel did not always exist, but runscript.sh tried to open it. |
1693 |
|
1694 |
Enhance --quiet support. Updated /etc/init.d/functions.sh for this. |
1695 |
|
1696 |
Remove /etc/pwdb.conf, as pwdb already install a copy of this. |
1697 |
|
1698 |
Remove /etc/pam.d/{rexec,rlogin,rsh} as pam already install this. |
1699 |
|
1700 |
Added $INPUTRC to /etc/profile, since too many people keep on bugging me, |
1701 |
and it seems it has fallen now to my discression. |
1702 |
|
1703 |
* rc-scripts 1.3.1 (23 Mar 2002) |
1704 |
|
1705 |
23 Mar 2002; Daniel Robbins <drobbins@gentoo.org>: init.d/net.eth0: fix for |
1706 |
DHCP lease release from Jim Nutt. |
1707 |
|
1708 |
23 Mar 2002; Daniel Robbins <drobbins@gentoo.org>: rolling a new release |
1709 |
since there are a lot of important bug fixes in here that are needed. |
1710 |
|
1711 |
23 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1712 |
|
1713 |
Resolve bug #1292. |
1714 |
|
1715 |
Remove the extra 'depmod -a' in /etc/init.d/modules, thanks to |
1716 |
Spidler. |
1717 |
|
1718 |
21 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1719 |
|
1720 |
Update /sbin/rc to fix a 'cat mounts' instead of the correct |
1721 |
version, 'cat /proc/mounts'. |
1722 |
|
1723 |
19 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1724 |
|
1725 |
Add initial support for the --quiet flag that suppress output. |
1726 |
|
1727 |
18 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1728 |
|
1729 |
Remove the 'try' from 'try /etc/init.d/depscan.sh' in /sbin/rc |
1730 |
as not all errors by depscan.sh is critical. It should be |
1731 |
reworked to do better error handeling. |
1732 |
|
1733 |
14 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1734 |
|
1735 |
Fix the GID and UID of nobody and nogroup in /etc/passwd and |
1736 |
/etc/group to match those of Debian, FBSD and others. Thanks |
1737 |
to those who reported it, and Woodchip for looking up the |
1738 |
proper values. |
1739 |
|
1740 |
Update /etc/init.d/net.eth0 to properly down DHCP interfaces. |
1741 |
This resolves bug #1150, thanks to Paul Fleischer. |
1742 |
|
1743 |
11 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1744 |
|
1745 |
Updated /etc/init.d/functions.sh not to use /usr/bin/basename, |
1746 |
as some users have /usr on seperate partition which is not |
1747 |
mounted when depscan.sh is run the first time. |
1748 |
|
1749 |
Updated the checking for more than one service providing the |
1750 |
same virtual function in /etc/init.d/depscan.sh. It should |
1751 |
be working now, and this also fix a problem that when there is no |
1752 |
service providing a virtual, counter was used uninitialized. |
1753 |
|
1754 |
* rc-scripts 1.3.0 (10 Mar 2002) |
1755 |
|
1756 |
10 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1757 |
|
1758 |
Resolved bug #1021; updated /etc/init.d/consolefont for this. |
1759 |
|
1760 |
Resolved bug #1029; updated /etc/init.d/net.eth0 for this. |
1761 |
|
1762 |
Resolved bug #990; updated /etc/init.d/net.eth0, /etc/init.d/netmount |
1763 |
and /etc/init.d/localmount for this. |
1764 |
|
1765 |
Lots of form/syntax cleanups, most things should be more |
1766 |
consistant now. Fixed fail detection/return values of lots of |
1767 |
scripts. |
1768 |
|
1769 |
Lots of cleanup/fixes in the three main scripts behind our |
1770 |
rc-system, /sbin/rc, /etc/init.d/depscan.sh, /etc/init.d/runscript.sh |
1771 |
|
1772 |
Fix a bug regarding a invalid $PATH for portage if /etc/init.d/functions.sh |
1773 |
is sourced in a ebuild. |
1774 |
|
1775 |
Fix a bug that our rc-script wrapper introduced: Global variables |
1776 |
in scripts no longer worked. Updated /etc/init.d/runscript.sh for |
1777 |
this. |
1778 |
|
1779 |
Implemented more error checking for the main startup code in /sbin/rc. |
1780 |
Also fixed try() for mounting /proc (maybe all mount commands). |
1781 |
The function worked fine in a simulated test, but in real life failed |
1782 |
to detect a error when mounting /proc (remember to thank Grant for |
1783 |
his UserMode ebuilds, and Guide). |
1784 |
|
1785 |
* rc-scripts 1.2.9 (6 Mar 2002) |
1786 |
|
1787 |
6 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1788 |
|
1789 |
General form updates and some piping fixes. |
1790 |
|
1791 |
Updated /etc/inittab, /etc/init.d/xdm and /etc/X11/startDM.sh |
1792 |
to fix a problem where startDM.sh would be respawned repeatedly |
1793 |
if xdm was not in the default runlevel. |
1794 |
|
1795 |
* rc-scripts 1.2.8 (4 Mar 2002) |
1796 |
|
1797 |
4 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1798 |
|
1799 |
Add /etc/init.d/xdm, /etc/X11/startDM.sh and updated /etc/inittab |
1800 |
to fix the "dead key" problem we had with xdm/gdm/kdm. We should |
1801 |
move them to the xfree ebuild later on when things settles down. |
1802 |
|
1803 |
Added some sanity checks to /sbin/rc, /etc/init.d/runscripts.sh. |
1804 |
|
1805 |
Added a basic $PATH to /etc/init.d/functions.sh to fix a problem |
1806 |
where we had a invalid $PATH on boot in some cases. |
1807 |
|
1808 |
Updated /etc/init.d/keymap and /etc/init.d/consolefont to work with |
1809 |
the new sys-apps/kbd package. |
1810 |
|
1811 |
* rc-scripts 1.2.7 (3 Mar 2002) |
1812 |
|
1813 |
3 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1814 |
|
1815 |
Fixed the problem of rc-scripts trying to start/stop a service multiple |
1816 |
times if it fails to do so. Updated /etc/init.d/runscript.sh and /sbin/rc |
1817 |
for this. |
1818 |
|
1819 |
Fixing some variable declarations in /etc/init.d/runscript.sh caused |
1820 |
/etc/init.d/net.lo to fail on stop ($IFACE was set invalid). Fixed |
1821 |
this. |
1822 |
|
1823 |
Added caching of the "depend() { need foo; } " lines, and updated |
1824 |
/etc/init.d/depscan.sh to touch the actual files less. This should |
1825 |
speedup dependency caching a lot, especially on slow machines. |
1826 |
|
1827 |
Updated /etc/passwd to have users with no shell defined, use /bin/false |
1828 |
for security. |
1829 |
|
1830 |
Update /etc/fstab to mention /dev/shm since we dont mount it anymore. |
1831 |
|
1832 |
1 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
1833 |
|
1834 |
Added a wrapper for sourcing the rc-scripts to eliminate syntax errors. |
1835 |
Thanks to Karl Trygve Kalleberg (aka karltk) for the idea. Updated |
1836 |
/etc/init.d/depscan.sh, /etc/init.d/functions.sh and |
1837 |
/etc/init.d/runscript.sh for this (added wrap_rcscript() function). |
1838 |
|
1839 |
Removed stopping of dependent services that have current service as |
1840 |
a 'use'dependency ... should be less confusing now. |
1841 |
Updated /etc/init.d/runscript.sh for this. |
1842 |
|
1843 |
28 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
1844 |
|
1845 |
Add /etc/conf.d/local.start and /etc/conf.d/local.stop for adding any misc |
1846 |
programs to startup. This should pretty much have /etc/init.d/ static, |
1847 |
except for baselayout updates, etc. |
1848 |
|
1849 |
27 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
1850 |
|
1851 |
In some wierd cases, a redundent /dev/.devfsd on a unmounted /dev can cause |
1852 |
problems. Fixed this in /sbin/rc. |
1853 |
|
1854 |
Added the patches from Grant Goodyear (aka g2boojum) to enable us to |
1855 |
use a ramdisk to store the contents of ${svcdir}. Updated /sbin/rc, |
1856 |
/etc/init.d/functions.sh and /etc/init.d/checkroot for this. |
1857 |
|
1858 |
26 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
1859 |
|
1860 |
Fix my brain dead update of the 25th. It really should keep |
1861 |
"gentoo=nodevfs" in mind. Also added 'get_bootparam()' to help in |
1862 |
retrieving kernel options. Updated /etc/init.d/functions.sh, |
1863 |
/etc/init.d/checkroot and /sbin/rc for this. |
1864 |
|
1865 |
Updated /etc/init.d/consolefont to work without devfs as well. |
1866 |
|
1867 |
When rebooting or shutting down, a service should not fail to stop |
1868 |
if a service it depends on, fails. Updated /etc/init.d/runscript.sh |
1869 |
for this. |
1870 |
|
1871 |
25 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
1872 |
|
1873 |
Added a check if /dev is mounted when creating entries for /etc/mtab. |
1874 |
This should solve a invalid entry or /dev being mounted even with |
1875 |
'gentoo=nodevfs' option. Updated /etc/init.d/checkroot for this. |
1876 |
|
1877 |
17 Feb 2002: Daniel Robbins <drobbins@gentoo.org>: Made "xfs" the default |
1878 |
filesystem in /etc/fstab (from ReiserFS) and removed "notail" option (it's |
1879 |
just in a comment now) |
1880 |
|
1881 |
17 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
1882 |
|
1883 |
Mmore fixes to 'after' and 'before', updated /etc/init.d/runscript.sh for |
1884 |
this. This should fix services not getting started in the correct order |
1885 |
in a tight loop, services getting stopped out of order, and some other |
1886 |
sanity checks. Updated rc-script.sh for updated help. |
1887 |
|
1888 |
15 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
1889 |
|
1890 |
Update /etc/profile to resolve bug #588. Reimplemented things a bit, |
1891 |
and added the 'after' type. 'before' and 'after' will only work currently |
1892 |
for a change of runlevel. Updated /etc/init.d/depscan.sh, |
1893 |
/etc/init.d/runscript.sh and /sbin/rc for this. |
1894 |
|
1895 |
13 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
1896 |
|
1897 |
Add some more entries to /etc/devfsd.conf to make alsa users life |
1898 |
easier ... thanks Tod. |
1899 |
|
1900 |
12 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
1901 |
|
1902 |
Some more cleanups to /etc/init.d/depscan.sh and /etc/init.d/runscript.sh. |
1903 |
|
1904 |
Fixed some services not starting again when restarting a service. |
1905 |
Seems simple is still the best way. |
1906 |
|
1907 |
Fixed some other problems created with feature additions and cleanups. |
1908 |
|
1909 |
11 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
1910 |
|
1911 |
General cleanups to /etc/init.d/depscan.sh and /etc/init.d/runscript.sh. |
1912 |
|
1913 |
Added 'before *' to /etc/init.d/checkroot to make sure it gets |
1914 |
started first. |
1915 |
|
1916 |
Added 'use *' to /etc/init.d/local to make sure it gets started |
1917 |
last. |
1918 |
|
1919 |
10 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
1920 |
|
1921 |
Fixed /sbin/rc to stop a service on change of runlevel if it is |
1922 |
in 'use' by another service. |
1923 |
|
1924 |
Added the 'provide' depend type for creating virtual services. |
1925 |
Updated /etc/init.d/depscan.sh for this. |
1926 |
|
1927 |
Added the 'before' depend type. This is more for changing the |
1928 |
order services start in. Updated /etc/init.d/depscan.sh and |
1929 |
/etc/init.d/functions.sh for this. |
1930 |
|
1931 |
Updated /etc/init.d/depscan.sh to work with '*' as argument for |
1932 |
dependency types. This can be used with 'use' and 'before' to |
1933 |
start a script last or first respectively. |
1934 |
|
1935 |
Added save_options() and get_options() to /etc/init.d/functions.sh |
1936 |
for saving misc settings between startup/shutdown. Updated |
1937 |
/etc/init.d/net.eth0 to use these and properly down virtual |
1938 |
interfaces. |
1939 |
|
1940 |
6 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
1941 |
|
1942 |
Updated both /etc/init.d/bootmisc and /etc/init.d/keymaps to be quiet |
1943 |
on no errors. |
1944 |
|
1945 |
* rc-scripts 1.2.6 (6 Feb 2002) |
1946 |
|
1947 |
2 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
1948 |
|
1949 |
Updated /etc/net.eth0 to specify the gateway device via the $gateway |
1950 |
variable (something like gateway="eth0/192.168.0.1"). |
1951 |
|
1952 |
2 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
1953 |
|
1954 |
Added rc-script /etc/init.d/numlock, for enabling numlock at boot. |
1955 |
|
1956 |
29 Jan 2002: Martin Schlemmer (azarah@gentoo.org): |
1957 |
|
1958 |
Hopefully the last fix to /etc/init.d/netmount to umount cleanly. This fix |
1959 |
implements a retry if not successful the first time, and will kill |
1960 |
processess using the mount. Also small type-o fix to /etc/init.d/halt.sh. |
1961 |
|
1962 |
27 Jan 2002: Donny Davies (woodchip@gentoo.org): security fix to |
1963 |
/etc/pam.d/sshd,login,chsh: added pam_shells.so to the stack. |
1964 |
Fixed /etc/passwd,group for user/group mysql. |
1965 |
|
1966 |
27 Jan 2002: Martin Schlemmer (azarah@gentoo.org): added charset |
1967 |
map file support to /etc/init.d/consolefont and the setting to |
1968 |
/etc/rc.conf. |
1969 |
|
1970 |
25 Jan 2002: Martin Schlemmer (azarah@gentoo.org): fixed dircolors |
1971 |
in skel files to support both versions of dircolors. |
1972 |
|
1973 |
23 Jan 2002: Martin Schlemmer (azarah@gentoo.org): fixed bug |
1974 |
in the restart stuff of /etc/init.d/runscript.sh that caused |
1975 |
a restart of a 'net' service not to restart services again |
1976 |
that depended on it. |
1977 |
|
1978 |
* rc-scripts 1.2.5 (20 Jan 2002) |
1979 |
|
1980 |
20 Jan 2002: Martin Schlemmer (azarah@gentoo.org): updated |
1981 |
/etc/init.d/net.eth0 to 'use' pcmcia. |
1982 |
|
1983 |
8 Jan 2002: Martin Schlemmer (azarah@gentoo.org): added '--sh' to |
1984 |
the dircolors command in /etc/skel/.bash_profile to handle cases |
1985 |
where bash do not export $SHELL. |
1986 |
|
1987 |
6 Jan 2002: Martin Schlemmer (azarah@gentoo.org): updated |
1988 |
/etc/init.d/runscripts.sh, /etc/init.d/net.eth0, /etc/conf.d/net and |
1989 |
removed /etc/init.d/net.eth0-dhcp to reflect a new 'bsd-ish' config |
1990 |
scheme for the net.eth* scripts. |
1991 |
|
1992 |
6 Jan 2002: Donny Davies (woodchip@gentoo.org): Removed email address |
1993 |
from manpages; no need for that.. |
1994 |
|
1995 |
5 Jan 2002: Martin Schlemmer (azarah@gentoo.org): fix type-o in |
1996 |
/etc/devfsd.conf; had 'dvd' in the cdrw stuff. |
1997 |
|
1998 |
* rc-scripts 1.2.4 (30 Dec 2001) |
1999 |
|
2000 |
30 Dec 2001: Daniel Robbins (drobbins@gentoo.org): Changed default umask |
2001 |
back to 022 as it should be. |
2002 |
|
2003 |
30 Dec 2001; Martin Schlemmer (azarah@gentoo.org): Updated |
2004 |
/etc/init.d/checkfs to return 0 if the fs was successfully repaired. |
2005 |
|
2006 |
29 Dec 2001; Donny Davies (woodchip@gentoo.org): |
2007 |
sort -t: -k3,3 -n /etc/passwd,group. Ahhhh :)) |
2008 |
|
2009 |
28 Dec 2001; Martin Schlemmer (azarah@gentoo.org); |
2010 |
|
2011 |
Updated /etc/init.d/depscan.sh to store info about missing dependencies |
2012 |
of type 'need' in ${svcdir}/broken. Also updated /etc/init.d/runscript.sh |
2013 |
to use this when starting a script ('need' dependencies is critical for |
2014 |
startup). Added the broken() function to /etc/init.d/runscript.sh |
2015 |
to list the missing dependencies. |
2016 |
|
2017 |
Updated /etc/init.d/runscript.sh for svc_start() to have better error |
2018 |
checking. |
2019 |
|
2020 |
Updated /etc/init.d/functions.sh with ewend(), which is the same as |
2021 |
eend(), but print a warning on error, not a error. Updated |
2022 |
/etc/init.d/checkroot and /etc/init.d/checkfs to use this function. |
2023 |
|
2024 |
27 Dec 2001; Martin Schlemmer (azarah@gentoo.org); |
2025 |
|
2026 |
Update /sbin/runscript.c to run /etc/init.d/rc-help.sh if no arguments |
2027 |
is passed to a rc-script. |
2028 |
|
2029 |
Added /etc/init.d/rc-help.sh, simple script that prints out help for |
2030 |
the rc-scripts. |
2031 |
|
2032 |
25 Dec 2001; Martin Schlemmer (azarah@gentoo.org); |
2033 |
|
2034 |
Update /etc/init.d/shutdown.sh and /etc/init.d/reboot.sh not to force the |
2035 |
halt and reboot. This fixes a problem where / was not unmounted properly |
2036 |
in some cases. |
2037 |
|
2038 |
24 Dec 2001; Martin Schlemmer (azarah@gentoo.org): |
2039 |
|
2040 |
Move $svcdir to to /etc/init.d/functions.sh, and update |
2041 |
/etc/init.d/runscript.sh and /etc/init.d/depscan.sh for this |
2042 |
|
2043 |
Modified /etc/init.d/runscript.sh to also restart the services that |
2044 |
depend on a service if that service is restarted. Enhanced the |
2045 |
restart function to be able to have custom restart() functions in |
2046 |
rc-scripts. The custom restart() have to use svc_stop() and |
2047 |
svc_start() to restart the service. |
2048 |
|
2049 |
Add a pause function to /etc/init.d/runscript.sh. It will basically |
2050 |
stop a service without stopping the services that depends on that |
2051 |
service. |
2052 |
|
2053 |
Add a pause function to /etc/init.d/runscript.sh. It will basically stop a |
2054 |
service without stopping the services that depends on that service. |
2055 |
|
2056 |
* rc-scripts 1.2.3 (18 Dec 2001) |
2057 |
|
2058 |
16 Dec 2001; Martin Schlemmer (azarah@gentoo.org): |
2059 |
|
2060 |
Moved the stuff from /sbin/init (old) to /sbin/rc (basically drop the |
2061 |
init wrapper we used). |
2062 |
|
2063 |
Some cleanups: take out the shm resize comment; |
2064 |
|
2065 |
remove the $wrongmount; |
2066 |
|
2067 |
remove the mountshm() function and insert it directly |
2068 |
where needed; |
2069 |
|
2070 |
remove the setting of $PATH as /sbin/init already do |
2071 |
this for us. |
2072 |
|
2073 |
Added the if statement to detect if it is the first time the 'boot' |
2074 |
runlevel is executed (if [ "$RUNLEVEL" = "S" ] && [ "$argv1" = "boot" ]). |
2075 |
$RUNLEVEL is a env var set by /sbin/init. |
2076 |
|
2077 |
Also added functionality to detect if the kernel have DEVFS support |
2078 |
compiled in; seems new users thinks devfs is unstable and as they do |
2079 |
not always read the docs, it does not get compiled in ;/ Should |
2080 |
make live for us a bit easier. |
2081 |
|
2082 |
14 Dec 2001; Martin Schlemmer (azarah@gentoo.org): |
2083 |
|
2084 |
Fixed /sbin/rc to kill a cosmetic bug in the part that stops all |
2085 |
the unneeded services. |
2086 |
|
2087 |
* rc-scripts 1.2.2 (8 Dec 2001) |
2088 |
|
2089 |
10 Dec 2001; Added a localhost entry in /etc/hosts. |
2090 |
|
2091 |
8 Dec 2001; Donny Davies (woodchip@gentoo.org): Added start-stop-daemon.c |
2092 |
to rc-scripts/sbin source. Moved rc-scripts/init.d/runscript.c to |
2093 |
rc-scripts/sbin/runscript.c. Added manpage for start-stop-daemon. |
2094 |
Start-stop-daemon is moved here from sysvinit by the way. There is stuff |
2095 |
in this ChangeLog that needs to be removed! Like the changes to hosts, |
2096 |
profile. /etc/{passwd,group} have minor UID and GID type fixes for |
2097 |
users ftp, postgres, xfs. Tweaked tarball.sh to not include CVS |
2098 |
directories. |
2099 |
|
2100 |
29 Nov 2001; Donny Davies (woodchip@gentoo.org): Added a man directory |
2101 |
to rc-scripts. Checked in two manpages there, one for modules.autoload.5 |
2102 |
and one for update-modules.8. These were adapted from Debian. Updated |
2103 |
tarball.sh to include the new man directory. Updated baselayout to install |
2104 |
these manpages. Slightly tweak the /etc/modules.autoload comments. |
2105 |
|
2106 |
28 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
2107 |
|
2108 |
Updated /sbin/init to work correctly with the 'gentoo=nodevfs' option, |
2109 |
and cleaned out old code. |
2110 |
|
2111 |
Updated /etc/init.d/bootmisc with additional lock files to clean. |
2112 |
|
2113 |
27 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
2114 |
|
2115 |
Updated /etc/init.d/depscan.sh for a virtual 'use' depend, called 'logger' |
2116 |
that can be used for services that needs to have a logger started before |
2117 |
they are started. Updated /etc/conf.d/basic with $SYSLOGGER that is used |
2118 |
to define what loggers the 'logger' depend represent. |
2119 |
|
2120 |
26 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
2121 |
|
2122 |
Updated /etc/passwd and /etc/group with minor fixes to pass pwck |
2123 |
and grpck. |
2124 |
|
2125 |
25 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
2126 |
|
2127 |
Changed umask in /etc/profile for the user to 077 for security. |
2128 |
|
2129 |
Added a stop() function to /etc/init.d/clock. Also removed uneeded |
2130 |
'source /etc/rc.conf' line. |
2131 |
|
2132 |
Updated /etc/init.d/hostname to set the hostname to 'localhost' if |
2133 |
/etc/hostname is invalid. |
2134 |
|
2135 |
Updated /sbin/init to move the entries in /lib/dev-state to /dev before |
2136 |
running devfsd, as it did still not save settings properly. Also removed |
2137 |
old /dev-state/compat stuff. |
2138 |
|
2139 |
25 Nov 2001; ncsd, the name service cache daemon script, has been removed |
2140 |
from the default "default" runlevel. It still exists in the archive so that |
2141 |
users who want/need it can add it easily. |
2142 |
|
2143 |
25 Nov 2001; Updated the /etc/fstab; removed usbdevfs (explicitly mounted), |
2144 |
removed notail from the ext2 boot partition, other cleanups. |
2145 |
|
2146 |
25 Nov 2001; Fixed init.d/clock script to work in UTC mode. |
2147 |
|
2148 |
24 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
2149 |
|
2150 |
Added /etc/devfsd.conf and updated /sbin/init to use a new scheme for saving |
2151 |
/dev permissions. Also moved /dev-state to /lib/dev-state which is a more |
2152 |
standard location. |
2153 |
|
2154 |
Fixed a ugly bug in /etc/init.d/depscan.sh. If a service depended on |
2155 |
itself, calling depscan.sh or changing runlevels cause a tempory effect |
2156 |
similar to a 'mini fork bomb'. Afterwards the depends was broken, and |
2157 |
changing runlevels did not want to work. |
2158 |
|
2159 |
Updated /etc/init.d/halt.sh to terminate and display message for devfsd. |
2160 |
More cosmetic than anything else, but cant hurt with the new dev-state |
2161 |
scheme. |
2162 |
|
2163 |
Updated /sbin/init to set the console log level to 1, so that bootup |
2164 |
can be much cleaner. Also updated /etc/init.d/modules not to have |
2165 |
a logger in it 'use' depends, as it should not be needed anymore. |
2166 |
|
2167 |
Updated /sbin/rc to check if devfsd is still running between runlevel |
2168 |
changes. |
2169 |
|
2170 |
Updated /etc/init.d/modules to run update-modules. We want to be sure |
2171 |
/etc/modules.conf is updated when running depmod -a. |
2172 |
|
2173 |
Change ftp's uid to 21 in /etc/passwd (was the same as bind). Also |
2174 |
added a entry for xfs (X Font Server) in /etc/passwd and /etc/group. |
2175 |
|
2176 |
Added /etc/init.d/net.ppp0, /etc/conf.d/net.ppp0 and |
2177 |
/usr/lib/ppp/chat-default as part of my new pppd scripts. Also |
2178 |
updated tarball.sh to handle ppp/chat-default. |
2179 |
|
2180 |
Added /etc/skel/.bash* to make things cleaner. |
2181 |
|
2182 |
Other minor changes. |
2183 |
|
2184 |
17 Nov 2001; Donny Davies (woodchip@gentoo.org): Added /etc/shells file |
2185 |
to rc-scripts. Can remove it from sys-libs/shadow at the next release. |
2186 |
|
2187 |
* rc-scripts 1.1.8 (15 Nov 2001) |
2188 |
|
2189 |
16 Nov 2001; removed bogus "mountall.test" script. |
2190 |
|
2191 |
15 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
2192 |
|
2193 |
Updated init.d/{runscript.sh,depscan.sh}, sbin/rc to the new dep being |
2194 |
'use' not 'uses', as it fits better with 'need' (not 'needs'). Also |
2195 |
removed unneeded for loop from init.d/depscan.sh, and other fixes. Updated |
2196 |
names of new functions in init.d/runscript.sh to better sounding ones. |
2197 |
Updated init.d/modules, init.d/netmount to use 'use'. Lots of other |
2198 |
fixes/cleanups. |
2199 |
|
2200 |
Removed try() out of init.d/runscript.sh (why was this here ?). |
2201 |
|
2202 |
14 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
2203 |
|
2204 |
Now init.d/bootmisc cleans /tmp. Also creates /etc/resolv.conf if it |
2205 |
doesn't exist. |
2206 |
|
2207 |
init.d/hostname: Added check for a valid /etc/hostname. |
2208 |
|
2209 |
init.d/keymaps: Added check for valid $KEYMAP. |
2210 |
|
2211 |
init.d/modules: Added sysklogd, metalog, syslog-ng as 'use' deps. This |
2212 |
should solve Woodchip's syslog+glue issue. We just have to change the |
2213 |
console loglevel for metalog and syslog-ng (sysklogd already updated) not to |
2214 |
output info and warnings, etc to the console, then boot will be much cleaner. |
2215 |
Also the install guide will need changing to add the loggers to 'boot' and |
2216 |
not 'default' runlevel. |
2217 |
|
2218 |
init.d/mountall.test: Hopefully updated to the new rc-scripts style. Is |
2219 |
this really needed (I cannot see that it is used anywhere ...)? |
2220 |
|
2221 |
13 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
2222 |
|
2223 |
Updated init.d/runscript.sh, init.d/depscan.sh and sbin/rc with a new depend |
2224 |
called 'uses'. It basically have the same usage as 'need', except that it |
2225 |
do not start services that is not in the current and 'boot' runlevels. |
2226 |
|
2227 |
Updated init.d/netmount to use the 'uses' depend. |
2228 |
|
2229 |
11 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
2230 |
|
2231 |
Fixed init.d/runscript.sh not to destroy the 'need' depends in |
2232 |
/${svcdir}/need. This caused subsequent starting and stopping of services |
2233 |
not to start depends. |
2234 |
|
2235 |
7 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
2236 |
|
2237 |
Fixed a problem in sbin/rc where the ${svcdir}/softscripts directory got |
2238 |
destroyed before stopping running services scheduled to be stopped. This |
2239 |
with the fact that $SOFTLEVEL was set too early, caused the services to be |
2240 |
stopped in the wrong order. |
2241 |
|
2242 |
30 Oct 2001; Martin Schlemmer (azarah@gentoo.org): |
2243 |
|
2244 |
Modified init.d/netmount to check if any network filesystems is mounted. |
2245 |
|
2246 |
29 Oct 2001; init.d/netmount: umount -art doesn't seem to work, so I added |
2247 |
some awk and grep magic to find all remote filesystems and umount them. |
2248 |
|
2249 |
29 Oct 2001; Martin Schlemmer (azarah@gentoo.org): |
2250 |
|
2251 |
A fix for checkroot (missing "/"); it now actually checks the root |
2252 |
filesystem. Also, a localmount cleanliness fix. |
2253 |
|
2254 |
* rc-scripts 1.1.7 (18 Oct 2001) |
2255 |
|
2256 |
[old changelog format follows] |
2257 |
|
2258 |
*lots of scripts; woodchip |
2259 |
removed old rc5 scripts from cvs |
2260 |
|
2261 |
*init.d/runscript.sh; agriffis |
2262 |
Added support for rc.conf and home-grown functions |
2263 |
|
2264 |
*init.d/modules; |
2265 |
Now correctly looks at /etc/modules.autoload |
2266 |
|
2267 |
rc-scripts-1.1.6, released 15 Sep 2001 |
2268 |
====================================== |
2269 |
|
2270 |
*init.d/runscript.sh, others |
2271 |
Handling of "net" dependencies resolve to all net devices in |
2272 |
/etc/runlevels/boot and /etc/runlevels/[curr-runlevel]. INTERFACES |
2273 |
variable in /etc/rc.conf has been removed. |
2274 |
|
2275 |
*init.d/runscript.sh |
2276 |
New "zap" option for manually resetting the state of an initscript |
2277 |
to stopped. |
2278 |
|
2279 |
*init.d/{samba,sysklogd,sshd} |
2280 |
Removed from CVS; they live in their respective packages. |
2281 |
|
2282 |
rc-scripts-1.1.5, released 02 Sep 2001 |
2283 |
==================================== |
2284 |
|
2285 |
*sbin/rc-update |
2286 |
New version of the rc-update command for the new initscripts. Works |
2287 |
similarly to the old version, except this one updates our dependency |
2288 |
cache. |
2289 |
|
2290 |
*init.d/functions.sh |
2291 |
New and better looking informational message functions (einfo, einfon). |
2292 |
Brand new message functions (ewarn). |
2293 |
|
2294 |
*sbin/init, init.d/checkroot |
2295 |
We're going back to a /proc/mounts-based mtab symlink because it's |
2296 |
just plain better. Appropriate changes made. |
2297 |
|
2298 |
# vim:expandtab |