| … | |
… | |
| 7 | The unmount stuff in /etc/init.d/halt.sh was flawed, in the fact that |
7 | The unmount stuff in /etc/init.d/halt.sh was flawed, in the fact that |
| 8 | it called 'umount -t no<insert_fs_here>', which resulted in /proc, etc |
8 | it called 'umount -t no<insert_fs_here>', which resulted in /proc, etc |
| 9 | unmounted anyhow. Change it to remount the last filesystems readonly |
9 | unmounted anyhow. Change it to remount the last filesystems readonly |
| 10 | without trying to unmount any. This fixes a few cases where reboot |
10 | without trying to unmount any. This fixes a few cases where reboot |
| 11 | would halt due to unmounted /proc, etc. |
11 | would halt due to unmounted /proc, etc. |
|
|
12 | |
|
|
13 | This change set fixes two things: |
|
|
14 | 1) In exporting all functions/variables in functions.sh, rc-services.sh |
|
|
15 | and rc-daemon.sh, we created an overly large environment, and also |
|
|
16 | broke stuff like glftpd. Do not do this, and hope whatever caused |
|
|
17 | the issues previously is fixed in the meantime. This should close |
|
|
18 | bugs #25754 and #31794. |
|
|
19 | 2) gendepend.awk used to generate deptree with functions called |
|
|
20 | depinfo_<scriptname> which set appropriate variables when called. |
|
|
21 | This broke if the scriptname contained characters that is not valid |
|
|
22 | for bash variable names. Changed things to use an array fixing this. |
|
|
23 | This closes bug #24092. |
| 12 | |
24 | |
| 13 | 19 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
25 | 19 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 14 | |
26 | |
| 15 | More bootsplash fixes, bug #21019 (comment #21). |
27 | More bootsplash fixes, bug #21019 (comment #21). |
| 16 | |
28 | |