Parent Directory
|
Revision Log
system module now creates it's temporary files in /tmp instead of /etc
| 1 | vapier | 1.490 | # ChangeLog for Gentoo System Intialization ("rc") scripts |
| 2 | vapier | 1.584 | # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPLv2 |
| 3 | |||
| 4 | uberlord | 1.686 | 01 Jun 2005; Roy Marples <uberlord@gentoo.org>: |
| 5 | |||
| 6 | removed cruft from net-scripts functions helper as rc-services.sh can | ||
| 7 | now be sourced by our dhcp helpers without causing errors. | ||
| 8 | |||
| 9 | uberlord | 1.687 | system module now creates it's temporary files in /tmp instead of /etc |
| 10 | |||
| 11 | vapier | 1.684 | 31 May 2005; Mike Frysinger <vapier@gentoo.org>: |
| 12 | |||
| 13 | Add support for bootlogging (via blogd in showconsole package). | ||
| 14 | |||
| 15 | vapier | 1.685 | Rewrite the modules.autoload code in init.d/modules to work off the |
| 16 | current arbitrary kernel version #35872. | ||
| 17 | |||
| 18 | vapier | 1.683 | 29 May 2005; Mike Frysinger <vapier@gentoo.org>: |
| 19 | |||
| 20 | Make sure we quote EDITOR in /etc/profile #94412 by Stanislav Brabec. | ||
| 21 | |||
| 22 | uberlord | 1.681 | 27 May 2005; Roy Marples <uberlord@gentoo.org>: |
| 23 | |||
| 24 | Added macnet module (like essidnet but for mac addresses) | ||
| 25 | Regresses macchanger one version | ||
| 26 | Tweaked module depends for macnet | ||
| 27 | dhcp helper now uses macnet | ||
| 28 | uberlord | 1.682 | |
| 29 | is_net_fs now works with what $1 was mounted as, not would it would | ||
| 30 | be remounted as - fixes #53104 | ||
| 31 | uberlord | 1.681 | |
| 32 | uberlord | 1.679 | 26 May 2005; Roy Marples <uberlord@gentoo.org>: |
| 33 | |||
| 34 | report ${myservice} instead of $0 when disallowing net scripts to work in | ||
| 35 | the boot runlevel - fixes #91534 | ||
| 36 | |||
| 37 | uberlord | 1.680 | You can now configure all options via the MAC address of your network card |
| 38 | and the MAC address of AP you connect to like so | ||
| 39 | config_001122334455=( "192.168.0.2/24 brd +") | ||
| 40 | Fixes the last part of #52975 | ||
| 41 | |||
| 42 | The old way of configuring for the MAC address of the AP is no longer | ||
| 43 | supported | ||
| 44 | |||
| 45 | vapier | 1.678 | 25 May 2005; Mike Frysinger <vapier@gentoo.org>: |
| 46 | |||
| 47 | Add gfs to the NET_FS_LIST #93911 by Thomas Rasch. | ||
| 48 | |||
| 49 | uberlord | 1.677 | 25 May 2005; Roy Marples <uberlord@gentoo.org>: |
| 50 | |||
| 51 | networking now expands configuration parameters - fixes #91564 | ||
| 52 | so config_eth0=( "192.168.{1..3}.{1..3}/24 brd +" ) expands into | ||
| 53 | config_eth0=( | ||
| 54 | "192.168.1.1/24 brd +" | ||
| 55 | "192.168.1.2/24 brd +" | ||
| 56 | "192.168.1.3/24 brd +" | ||
| 57 | "192.168.2.1/24 brd +" | ||
| 58 | "192.168.2.2/24 brd +" | ||
| 59 | "192.168.2.3/24 brd +" | ||
| 60 | "192.168.3.1/24 brd +" | ||
| 61 | "192.168.3.2/24 brd +" | ||
| 62 | "192.168.3.3/24 brd +" | ||
| 63 | ) | ||
| 64 | |||
| 65 | updated ESSID variables example in wireless.example - fixes #92469 | ||
| 66 | |||
| 67 | azarah | 1.676 | 21 May 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 68 | |||
| 69 | Quiet down valid_i() if ${svcdir}/softlevel do not yet exist, try #2. | ||
| 70 | |||
| 71 | uberlord | 1.674 | 20 May 2005; Roy Marples <uberlord@gentoo.org>: |
| 72 | |||
| 73 | fix ifconfig to understand CIDR addresses - bug #93237 | ||
| 74 | iproute2 now works out broadcast addresses | ||
| 75 | |||
| 76 | uberlord | 1.675 | added #!/bin/bash or #!/bin/sh to modules and helpers so they now get |
| 77 | nice syntax highlighting and indenting | ||
| 78 | |||
| 79 | azarah | 1.673 | 20 May 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 80 | |||
| 81 | Fixup sbin/{depscan.sh,modules-update} to use is_older_than() for mtime | ||
| 82 | logic. Some small tweaks regarding 2.6 systems and modules-update. | ||
| 83 | |||
| 84 | uberlord | 1.672 | 19 May 2005; Roy Marples <uberlord@gentoo.org>: |
| 85 | |||
| 86 | Merged Paul Pacheco's parallel startup #69854 and modules update | ||
| 87 | #55329 patches | ||
| 88 | |||
| 89 | If RC_PARALLEL_STARTUP==yes then we no longer output einfo/ebegin | ||
| 90 | messages as they don't line up on screen correctly - instead we output | ||
| 91 | service ${myservice} starting/started/stopping/stopped/failed | ||
| 92 | |||
| 93 | vapier | 1.671 | 17 May 2005; Mike Frysinger <vapier@gentoo.org>: |
| 94 | |||
| 95 | Make sure /dev is mounted with exec since many video drivers need to | ||
| 96 | mmap() device nodes in there with exec access #92921 by Lachlan Pease. | ||
| 97 | |||
| 98 | vapier | 1.668 | 16 May 2005; Mike Frysinger <vapier@gentoo.org>: |
| 99 | |||
| 100 | If halt/reboot failed, try to force it as a fallback. | ||
| 101 | |||
| 102 | vapier | 1.669 | Add RC_FORCE_AUTO setting so people can try to minimize amount of |
| 103 | user interaction required for booting. | ||
| 104 | |||
| 105 | vapier | 1.670 | Move nsswitch.conf to glibc. |
| 106 | |||
| 107 | uberlord | 1.667 | 15 May 2005; Roy Marples <uberlord@gentoo.org>: |
| 108 | |||
| 109 | udhcpc and dhclient now select the best interface when one goes down | ||
| 110 | |||
| 111 | vapier | 1.661 | 14 May 2005; Mike Frysinger <vapier@gentoo.org>: |
| 112 | |||
| 113 | Make sure /dev is mounted with sane permissions #87745 by Jordan. | ||
| 114 | |||
| 115 | vapier | 1.662 | When we search /etc/fstab for /, make sure we handle mounts that have |
| 116 | UUID/LABEL info in them #90603 by Alessandro Sappia. | ||
| 117 | |||
| 118 | vapier | 1.663 | Simplify rc-script error checking so we don't need a tempfile and so |
| 119 | non-root users can run /etc/init.d/status #85892 by Stuart Shelton. | ||
| 120 | |||
| 121 | vapier | 1.664 | Add a sanity check for devs who write bad scripts and call exit #85298. |
| 122 | |||
| 123 | vapier | 1.665 | Run irqbalance after /var is rw #85304 by Miroslaw Mieszczak. |
| 124 | |||
| 125 | vapier | 1.666 | Redo the addon code to prepare for profiling support #74425. |
| 126 | |||
| 127 | vapier | 1.660 | 12 May 2005; Mike Frysinger <vapier@gentoo.org>: |
| 128 | |||
| 129 | Move pam files out of baselayout and into packages #92387. | ||
| 130 | |||
| 131 | azarah | 1.657 | 10 May 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 132 | |||
| 133 | azarah | 1.658 | Really fix trace_dependencies() to handle net.* services properly. |
| 134 | |||
| 135 | azarah | 1.659 | Quiet down valid_i() if ${svcdir}/softlevel do not yet exist. |
| 136 | |||
| 137 | azarah | 1.658 | 10 May 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 138 | |||
| 139 | Fix get_service_index() being off by one. Fix trace_dependencies() to also | ||
| 140 | take "net" into regard if its a net_service. This fixes two problems, first | ||
| 141 | shutdown should bring services down that uses net before the net.* services, | ||
| 142 | and secondly '/etc/init.d/net.eth0 needsme', etc should now work properly. | ||
| 143 | All changes to sbin/rc-services.sh. | ||
| 144 | azarah | 1.657 | |
| 145 | uberlord | 1.656 | 03 May 2005; Roy Marples <uberlord@gentoo.org>: |
| 146 | |||
| 147 | changed default indentation to 2 spaces to match rcscripts in functions.sh | ||
| 148 | |||
| 149 | wpa_supplicant now stops wpa_cli before wpa_supplicant to fix a potential | ||
| 150 | future error | ||
| 151 | |||
| 152 | uberlord | 1.655 | 02 May 2005; Roy Marples <uberlord@gentoo.org>: |
| 153 | |||
| 154 | Fix user function hooks for echoing to stdout and protecting our vars | ||
| 155 | |||
| 156 | azarah | 1.653 | 30 Apr 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 157 | |||
| 158 | azarah | 1.654 | Do not create the udev devices.tar.bz2 if we do not have write permissions |
| 159 | for /. Request by Donnie (spyderous) for boxes with / on NFS. | ||
| 160 | |||
| 161 | 30 Apr 2005; Martin Schlemmer <azarah@gentoo.org>: | ||
| 162 | |||
| 163 | azarah | 1.653 | Fixor column/color logic for when used in portage. |
| 164 | |||
| 165 | vapier | 1.652 | 29 Apr 2005; Mike Frysinger <vapier@gentoo.org>: |
| 166 | |||
| 167 | Move crypto-loop to util-linux and skel bash files to bash. | ||
| 168 | |||
| 169 | vapier | 1.650 | 28 Apr 2005; Mike Frysinger <vapier@gentoo.org>: |
| 170 | |||
| 171 | Export the 'service name' for init scripts #86348. | ||
| 172 | |||
| 173 | azarah | 1.649 | 28 Apr 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 174 | |||
| 175 | If no /etc/modules.conf exist, do not 'touch' it, but create a new | ||
| 176 | file with the 'modules-update header' in it to get modules-update | ||
| 177 | to do the right thing (regen), and not just quit (init.d/modules). | ||
| 178 | |||
| 179 | vapier | 1.648 | 27 Apr 2005; Mike Frysinger <vapier@gentoo.org>: |
| 180 | |||
| 181 | Ignore trailing comments in module files #88553. | ||
| 182 | |||
| 183 | vapier | 1.647 | 26 Apr 2005; Mike Frysinger <vapier@gentoo.org>: |
| 184 | |||
| 185 | Sync special var's with portage's env-update.sh and ours #88819. | ||
| 186 | |||
| 187 | uberlord | 1.646 | 26 Apr 2005; Roy Marples <uberlord@gentoo.org>: |
| 188 | |||
| 189 | wpa_supplicant now supports wpa_supplicant-0.4.0 | ||
| 190 | |||
| 191 | iwconfig downs and ups the interface after a scan | ||
| 192 | |||
| 193 | uberlord | 1.645 | 25 Apr 2005; Roy Marples <uberlord@gentoo.org>: |
| 194 | |||
| 195 | iproute2 now handles mtu the same way as ifconfig - fixes #90242 | ||
| 196 | |||
| 197 | net.lo no longer errors when using postdown and postup functions | ||
| 198 | |||
| 199 | uberlord | 1.644 | 22 Apr 2005; Roy Marples <uberlord@gentoo.org>: |
| 200 | |||
| 201 | Address network routes now get metrics applied as well | ||
| 202 | (ie a route automatically added when an address is added) | ||
| 203 | |||
| 204 | net.lo no longer errors when exlcuding modules who are installed | ||
| 205 | |||
| 206 | uberlord | 1.643 | * rc-scripts 1.7.1 (19 Apr 2005) |
| 207 | |||
| 208 | uberlord | 1.642 | 18 Apr 2005; Roy Marples <uberlord@gentoo.org>: |
| 209 | |||
| 210 | Changed "sed -ne" to "sed -n -e" for portability. | ||
| 211 | |||
| 212 | Added auto_interface (default yes). | ||
| 213 | if auto_interface is yes then we | ||
| 214 | *) default to dhcp | ||
| 215 | *) automatically calculate a metric (this may need work) | ||
| 216 | *) select the best interface based on metric | ||
| 217 | (restore resolv.conf, ntp.conf and yp.conf we have saved) | ||
| 218 | otherwise we | ||
| 219 | *) default to null | ||
| 220 | |||
| 221 | wpa_supplicant no longer kills itself when we're not stopping the interface | ||
| 222 | it's running on. | ||
| 223 | |||
| 224 | wpa_supplicant now uses wpa_monitor (yet to be released) if available. | ||
| 225 | |||
| 226 | Added a new module called system which enables the definition of domain | ||
| 227 | name, dns servers, ntp servers, nis domain and nis servers per interface. | ||
| 228 | essidnet and dhcp helpers have been re-coded around this module. | ||
| 229 | |||
| 230 | wolf31o2 | 1.641 | 15 Apr 2005; Chris Gianelloni <wolf31o2@gentoo.org> -bin/bashlogin, |
| 231 | -sbin/livecd-functions.sh: | ||
| 232 | Removed sbin/livecd-functions.sh and bin/bashlogin as they are only used in | ||
| 233 | release building, and they have been moved to livecd-tools. | ||
| 234 | |||
| 235 | azarah | 1.640 | 14 Apr 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 236 | |||
| 237 | Do not kill udevd in /sbin/rc, as it is apparently evil. | ||
| 238 | |||
| 239 | uberlord | 1.639 | 14 Apr 2005; Roy Marples <uberlord@gentoo.org>: |
| 240 | |||
| 241 | Fixed ifconfig and iproute2 erroring from new lo code - fixes #88006 | ||
| 242 | |||
| 243 | If /proc/net/netlink does not exist then iproute2 will fail the | ||
| 244 | check_installed function with an appropriate error - Thanks to | ||
| 245 | Jeremy Huddleston for the patch. | ||
| 246 | |||
| 247 | If /proc/net/packet does not exist then wpa_supplicant will fail | ||
| 248 | check_installed function with an appropriate error | ||
| 249 | |||
| 250 | Background fixes for net.lo, udhcpc and wpa_supplicant | ||
| 251 | |||
| 252 | uberlord | 1.637 | 11 Apr 2005; Roy Marples <uberlord@gentoo.org>: |
| 253 | |||
| 254 | removed ${devnull} from net.lo and net-script modules | ||
| 255 | updated all modules not to re-direct stderr where appropriate | ||
| 256 | |||
| 257 | iwconfig and wpa_supplicant now save their current ESSID via save_options | ||
| 258 | and reload it in their pre_stops so that ${ESSID} and ${ESSIDVAR} can be | ||
| 259 | used in users custom postdown functions | ||
| 260 | |||
| 261 | uberlord | 1.638 | wpa_supplicant now calls iwconfig_defaults and iwconfig_user_config |
| 262 | if available - fixes #88703 | ||
| 263 | |||
| 264 | vapier | 1.636 | 09 Apr 2005; Mike Frysinger <vapier@gentoo.org>: |
| 265 | |||
| 266 | Have the 'status' function return 0/1 based upon the status of the | ||
| 267 | init script #88319 by Josh Nichols. | ||
| 268 | |||
| 269 | uberlord | 1.634 | 08 Apr 2005; Roy Marples <uberlord@gentoo.org>: |
| 270 | |||
| 271 | added a bash_variable to functions.sh which converts the given string | ||
| 272 | into a variable that bash can use - fixes #88175 | ||
| 273 | |||
| 274 | uberlord | 1.635 | net scripts can only launch if we're not in ${BOOTLEVEL} - fixes #78495 |
| 275 | uberlord | 1.634 | |
| 276 | uberlord | 1.633 | 01 Apr 2005; Roy Marples <uberlord@gentoo.org>: |
| 277 | |||
| 278 | RC_DAEMON_syslog_ng allows syslog-ng to be started with the specified | ||
| 279 | launcher - like valgrind or strace. Handy for debugging/auditing. | ||
| 280 | Thanks to Rob Holland for the idea. | ||
| 281 | |||
| 282 | Stopped setting ESSID in predown functions in iwconfig and wpa_supplicant | ||
| 283 | as there is no guarantee that the current ESSID is the one we started with | ||
| 284 | Also, we may not have an ESSID at all... | ||
| 285 | |||
| 286 | uberlord | 1.631 | 23 Mar 2005; Roy Marples <uberlord@gentoo.ord>: |
| 287 | |||
| 288 | bridge stops removing IP addresses from bridge ports. | ||
| 289 | iwconfig no longer tries to get an ESSID from non-wireless interfaces. | ||
| 290 | ifconfig no longer errors when deleting addresses on a non-existant | ||
| 291 | interface. | ||
| 292 | |||
| 293 | azarah | 1.630 | 23 Mar 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 294 | |||
| 295 | Get modules-update to clean up after itself if we on a 2.6 kernel without | ||
| 296 | modules.conf. | ||
| 297 | |||
| 298 | uberlord | 1.629 | 22 Mar 2005; Roy Marples <uberlord@gentoo.org>: |
| 299 | |||
| 300 | revamped rc-services.sh for STYLE updates and code rationalisation. | ||
| 301 | |||
| 302 | uberlord | 1.628 | 21 Mar 2005; Roy Marples <uberlord@gentoo.org>: |
| 303 | |||
| 304 | udhcpc now checks for custom hostname correctly | ||
| 305 | |||
| 306 | azarah | 1.626 | 21 Mar 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 307 | |||
| 308 | Fix tracing for current service as list_depend_trace() was removed. | ||
| 309 | azarah | 1.627 | Fix mylevel not being set if valid_iuse(), etc is called from /sbin/rc. |
| 310 | azarah | 1.626 | |
| 311 | azarah | 1.625 | 20 Mar 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 312 | |||
| 313 | Take sort_services function from bug #70009, and fix the removing of a | ||
| 314 | service from a array properly by using unset. Use this instead of the | ||
| 315 | trace_* stuff, and fixup shutdown order. | ||
| 316 | |||
| 317 | vapier | 1.624 | 19 Mar 2005; Mike Frysinger <vapier@gentoo.org>: |
| 318 | |||
| 319 | Make sure we mount svcdir with 0755 and not 0644 #85888. | ||
| 320 | |||
| 321 | azarah | 1.623 | 15 Mar 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 322 | |||
| 323 | Export myservice when starting critical services, as its needed by | ||
| 324 | some of the addons (dmcrypt for example). | ||
| 325 | |||
| 326 | vapier | 1.622 | 12 Mar 2005; Mike Frysinger <vapier@gentoo.org>: |
| 327 | |||
| 328 | When shutting down, pass -h to halt too #84654 by Dmitry Karasik. | ||
| 329 | |||
| 330 | uberlord | 1.621 | 11 Mar 2005; Roy Marples <uberlord@gentoo.org>: |
| 331 | |||
| 332 | Prepend rc-daemon.sh functions with rc_ to avoid name conflicts | ||
| 333 | |||
| 334 | azarah | 1.620 | 11 Mar 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 335 | |||
| 336 | Make sure the last test in init.d/modules do not bork the return | ||
| 337 | value of the script if not true. | ||
| 338 | |||
| 339 | vapier | 1.619 | 10 Mar 2005; Mike Frysinger <vapier@gentoo.org>: |
| 340 | |||
| 341 | Add udev/selinux support by Chris PeBenito #84337. | ||
| 342 | |||
| 343 | azarah | 1.617 | 10 Mar 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 344 | |||
| 345 | The system() stuff in *depends.awk should be dosystem(). | ||
| 346 | |||
| 347 | agriffis | 1.616 | * rc-scripts 1.7.0 (10 Mar 2005) |
| 348 | |||
| 349 | uberlord | 1.615 | 09 Mar 2005; Roy Marples <uberlord@gentoo.org>: |
| 350 | |||
| 351 | changed from $( cat ${file} ) to $( < ${file ) in net-scripts | ||
| 352 | |||
| 353 | fixed ChangeLog corruption | ||
| 354 | |||
| 355 | rc-daemon.sh now works with the env program | ||
| 356 | |||
| 357 | uberlord | 1.614 | 08 Mar 2005; Roy Marples <uberlord@gentoo.org>: |
| 358 | |||
| 359 | rc-services.sh now does a /sbin/depscan.sh -u if we have not got | ||
| 360 | our deptree loaded | ||
| 361 | |||
| 362 | removed net_start/stop function from net.lo, bridge and bonding | ||
| 363 | |||
| 364 | net.lo now supports depend() per interface like so | ||
| 365 | depend_br0() { need net.eth0 net.eth1 } | ||
| 366 | |||
| 367 | uberlord | 1.613 | 04 Mar 2005; Roy Marples <uberlord@gentoo.org>: |
| 368 | |||
| 369 | applied STYLE updates to rc-status | ||
| 370 | |||
| 371 | rc-status now uses find correctly for -maxdepth which fixes #84055 | ||
| 372 | |||
| 373 | uberlord | 1.611 | 03 Mar 2005; Roy Marples <uberlord@gentoo.org>: |
| 374 | |||
| 375 | iwconfig now defaults the transmit key to 1 | ||
| 376 | uberlord | 1.612 | bridging and bonding modules now start an interface if it's not |
| 377 | marked as started | ||
| 378 | uberlord | 1.611 | |
| 379 | uberlord | 1.610 | 02 Mar 2005; Roy Marples <uberlord@gentoo.org>: |
| 380 | |||
| 381 | net_service() now returns 1 for non net-services | ||
| 382 | fixes bug #83352 | ||
| 383 | |||
| 384 | agriffis | 1.609 | 02 Mar 2005; Aron Griffis <agriffis@gentoo.org>: |
| 385 | |||
| 386 | Add requote() to functions.sh to help rc-daemon.sh | ||
| 387 | |||
| 388 | azarah | 1.608 | 01 Mar 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 389 | |||
| 390 | Fix braindead logic in init.d/checkfs ([[ -z $CDBOOT ]] &&, not -n). | ||
| 391 | |||
| 392 | uberlord | 1.607 | 01 Mar 2005; Roy Marples <uberlord@gentoo.org> |
| 393 | |||
| 394 | azarah | 1.608 | rc-daemon.sh now provides a working wrapper for start-stop-daemon |
| 395 | fixes bug #7198 | ||
| 396 | uberlord | 1.607 | |
| 397 | azarah | 1.608 | removed ps calls from net scripts |
| 398 | uberlord | 1.607 | |
| 399 | wolf31o2 | 1.604 | 25 Feb 2005; Chris Gianelloni <wolf31o2@gentoo.org> |
| 400 | azarah | 1.606 | |
| 401 | azarah | 1.608 | Updated livecd-functions.sh to match what we are using on the LiveCD. |
| 402 | wolf31o2 | 1.604 | |
| 403 | azarah | 1.603 | 25 Feb 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 404 | |||
| 405 | azarah | 1.606 | Style updates for init.d/halt.sh. |
| 406 | |||
| 407 | azarah | 1.605 | Only run pam_console_apply if we are actually using pam_console. |
| 408 | |||
| 409 | azarah | 1.603 | Fix init.d/checkfs, init.d/localmount and init.d/halt.sh to call |
| 410 | start_addon, stop_addon, start_volumes and stop_volumes. | ||
| 411 | |||
| 412 | azarah | 1.601 | 24 Feb 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 413 | azarah | 1.602 | |
| 414 | Update /sbin/modules-update to work without modprobe.old (modutils) for | ||
| 415 | 2.6 kernels. | ||
| 416 | azarah | 1.601 | |
| 417 | Update /etc/init.d/modules so that it will only touch modules.conf if we | ||
| 418 | have a <= 2.4 kernel, or have /sbin/modprobe.old. | ||
| 419 | |||
| 420 | azarah | 1.599 | 23 Feb 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 421 | |||
| 422 | azarah | 1.601 | Remove RAID/LVM/EVMS2/dm-crypt from checkfs and localmount, and |
| 423 | add needed {start,stop}-volumes() and {start,stop}-addons(). | ||
| 424 | |||
| 425 | azarah | 1.600 | Add use tempory file for deptree, bug #48303, thanks to patch from |
| 426 | Stefan Hoefer <stefan@hoefer.ch>. | ||
| 427 | |||
| 428 | azarah | 1.601 | Add {start,stop}-volumes() to /sbin/functions.sh, as well as |
| 429 | azarah | 1.599 | RC_VOLUME_ORDER to /etc/conf.d/rc. |
| 430 | |||
| 431 | vapier | 1.597 | 21 Feb 2005; Mike Frysinger <vapier@gentoo.org>: |
| 432 | |||
| 433 | Move the serial init.d to the setserial package. | ||
| 434 | |||
| 435 | vapier | 1.598 | Create a rc-status.8 manpage #81917. |
| 436 | |||
| 437 | vapier | 1.595 | 11 Feb 2005; Mike Frysinger <vapier@gentoo.org>: |
| 438 | |||
| 439 | Add UPS kill fixes for halt.sh by Lee Weisz / Remy Blank #46440. | ||
| 440 | |||
| 441 | vapier | 1.596 | Define a few more {for,back}ward-word bindings in inputrc to fix up |
| 442 | the different GUI terminals #53770 by Arturo Alberto Busleiman. | ||
| 443 | |||
| 444 | uberlord | 1.594 | 10 Feb 2005; Roy Marples <uberlord@gentoo.org>: |
| 445 | |||
| 446 | net.lo now supports fallback_route - fixes #75676 | ||
| 447 | due to bash limitations, only one fallback route is supported | ||
| 448 | |||
| 449 | cleaned up dhcp helper | ||
| 450 | |||
| 451 | iproute now appends routes instead of adding them - this allows multiple | ||
| 452 | default routes | ||
| 453 | |||
| 454 | RC_STRICT_NET_CHECKING now supports the none "option" which means | ||
| 455 | that the net service is always up | ||
| 456 | |||
| 457 | vapier | 1.592 | 31 Jan 2005; Mike Frysinger <vapier@gentoo.org>: |
| 458 | |||
| 459 | Punt the PROTOCOL variable from rc.conf since nothing uses it. | ||
| 460 | |||
| 461 | Punt the consolefont related variables from rc.conf since they've | ||
| 462 | been moved to conf.d/consolefont. | ||
| 463 | |||
| 464 | vapier | 1.593 | Import some VServer support from #55973. For now, just add the |
| 465 | detection function to functions.sh and support in init.d/clock. | ||
| 466 | |||
| 467 | azarah | 1.591 | 07 Feb 2005; Martin Schlemmer <azarah@gentoo.org>: |
| 468 | |||
| 469 | Fix /sbin/functions.sh not to run stty during 'emerge depend'. | ||
| 470 | |||
| 471 | uberlord | 1.590 | 07 Feb 2005; Roy Marples <uberlord@gentoo.org>: |
| 472 | |||
| 473 | netmask2cidr now works correctly - fixes #81119 | ||
| 474 | Thanks to Benoit Boissinot for the patch | ||
| 475 | |||
| 476 | 06 Feb 2005; Mike Frysinger <vapier@gentoo.org>: | ||
| 477 | vapier | 1.589 | |
| 478 | Remove the apache user and let apache ebuilds handle it #77738. | ||
| 479 | |||
| 480 | uberlord | 1.588 | 04 Feb 2005; Roy Marples <uberlord@gentoo.org>: |
| 481 | |||
| 482 | It's now possible to configure addresses and routes for the loopback | ||
| 483 | interface if required - however you cannot override our defaults | ||
| 484 | |||
| 485 | wpa_supplicant and iwconfig now loop for 5 seconds if essid is | ||
| 486 | not returned straight away | ||
| 487 | |||
| 488 | 31 Jan 2005; Mike Frysinger <vapier@gentoo.org>: | ||
| 489 | vapier | 1.585 | |
| 490 | Fix the test for device-mapper in checkfs #80206. | ||
| 491 | |||
| 492 | vapier | 1.586 | Change home of man to /usr/share/man. |
| 493 | |||
| 494 | vapier | 1.584 | * rc-scripts 1.6.9 (30 Jan 2004) |
| 495 | vapier | 1.490 | |
| 496 | uberlord | 1.588 | 30 Jan 2005; Mike Frysinger <vapier@gentoo.org>: |
| 497 | vapier | 1.576 | |
| 498 | Use clock, don't need it. Not everyone has a RTC #78997. | ||
| 499 | |||
| 500 | vapier | 1.577 | Rewrite the KV_* functions to use pure bash rather than awk #75836. |
| 501 | |||
| 502 | vapier | 1.578 | Don't use 'none' when mounting virtual filesystems since `umount` can |
| 503 | vapier | 1.587 | produce some pretty vague output #78684. Fixed sbin/rc and etc/fstab |
| 504 | and etc/halt.sh to handle the new format. | ||
| 505 | vapier | 1.578 | |
| 506 | vapier | 1.579 | modules-update.8 touchups by Benno Schulenberg #77582. |
| 507 | |||
| 508 | vapier | 1.580 | Don't symlink /etc/filesystems since it is an user config file #74176. |
| 509 | |||
| 510 | vapier | 1.581 | Punt the 'guest' user #74737. |
| 511 | |||
| 512 | vapier | 1.582 | Add support for loopback dm-crypt by Dylan Carlson #73598 and for gpg |
| 513 | dm-crypt by Lars Strojny #75659. | ||
| 514 | |||
| 515 | agriffis | 1.618 | Update crypto-loop to newer util-linux #40874 by jochen / Jürgen Hötzel |
| 516 | vapier | 1.583 | |
| 517 | uberlord | 1.588 | 27 Jan 2005; Roy Marples <uberlord@gentoo.org>: |
| 518 | uberlord | 1.575 | |
| 519 | removed udhcpc-* and dhclient-* helper modules and replaced them with a | ||
| 520 | generic dhcp module which caters for all interfaces and dhcp clients that | ||
| 521 | need it. | ||
| 522 | We now prefer iproute2 over ifconfig if both are installed. | ||
| 523 | |||
| 524 | uberlord | 1.588 | 24 Jan 2005; Roy Marples <uberlord@gentoo.org>: |
| 525 | uberlord | 1.573 | |
| 526 | replaced awk commands with sed equivalents in net-scripts to make us | ||
| 527 | more portable | ||
| 528 | uberlord | 1.574 | STYLE fixes to many net-scripts modules |
| 529 | Removed hardcoded Version and replaced with cvs $Header: | ||
| 530 | uberlord | 1.573 | |
| 531 | uberlord | 1.588 | 17 Jan 2005; Roy Marples <uberlord@gentoo.org>: |
| 532 | uberlord | 1.570 | |
| 533 | net.lo changed logic to read "only fail if no configuration parameters | ||
| 534 | work, bring interface down and abort". Fixes #78092 | ||
| 535 | uberlord | 1.571 | all modules should now check interface existance correctly - fixes #76385 |
| 536 | uberlord | 1.572 | wpa_supplicant now works with EAP - fixes #78367 |
| 537 | uberlord | 1.570 | |
| 538 | uberlord | 1.588 | 13 Jan 2005; Roy Marples <uberlord@gentoo.org>: |
| 539 | uberlord | 1.567 | |
| 540 | wpa_supplicant forces ctrl_interface to /var/run/wpa_supplicant | ||
| 541 | and removes stale directories | ||
| 542 | clean_pidfile function no longer errors on empty pidfiles | ||
| 543 | uberlord | 1.568 | net dependancies corrected in runscript.sh - fixes #77839 |
| 544 | uberlord | 1.569 | allow pure IPv6 addresses - fixes #73844 |
| 545 | uberlord | 1.567 | |
| 546 | uberlord | 1.588 | 12 Jan 2005; Roy Marples <uberlord@gentoo.org>: |
| 547 | uberlord | 1.565 | |
| 548 | net.lo now ignores dot files when loading modules | ||
| 549 | uberlord | 1.566 | ipppd module now stops correctly - fixes #73067 again |
| 550 | uberlord | 1.565 | |
| 551 | uberlord | 1.588 | 11 Jan 2005; Roy Marples <uberlord@gentoo.org>: |
| 552 | uberlord | 1.564 | |
| 553 | added "noop" config parameter which means take no action if the interface | ||
| 554 | is up and has an address configured, otherwise continue | ||
| 555 | addresses are now removed when starting an interface - fixes #77111 | ||
| 556 | |||
| 557 | uberlord | 1.588 | 06 Jan 2005; Roy Marples <uberlord@gentoo.org>: |
| 558 | uberlord | 1.562 | |
| 559 | uberlord | 1.563 | ifconfig, udhcpc-ifconfig now deletes addresses using 0.0.0.0 for uclibc |
| 560 | - fixes #76846 | ||
| 561 | uberlord | 1.562 | |
| 562 | uberlord | 1.560 | 04 Jan 2005; Roy Marples <uberlord@gentoo.org>: |
| 563 | |||
| 564 | bridge now marks interfaces as UP - fixes #75354 | ||
| 565 | bridge, net.lo, iwconfig touched up to match new STYLE | ||
| 566 | net.lo tests the return value of modprobe - fixes #76385 | ||
| 567 | iwconfig now sets enc keys through an eval statement - fixes #76601 | ||
| 568 | updated wireless.example for whitespace in keys | ||
| 569 | uberlord | 1.561 | iwconfig now accepts mode "auto" and defaults to it |
| 570 | uberlord | 1.560 | |
| 571 | vapier | 1.559 | 30 Dec 2004; Mike Frysinger <vapier@gentoo.org>: |
| 572 | |||
| 573 | Touch up rc-update to match our new STYLE. Also tweak the help | ||
| 574 | to fit in the standard console. | ||
| 575 | |||
| 576 | vapier | 1.558 | 23 Dec 2004; Mike Frysinger <vapier@gentoo.org>: |
| 577 | |||
| 578 | Merge a bunch of BSD fixes into our .c files. | ||
| 579 | |||
| 580 | uberlord | 1.557 | 18 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 581 | |||
| 582 | iwconfig now sets ESSIDVAR for master/ad-hoc modes - fixes #74802 | ||
| 583 | |||
| 584 | uberlord | 1.556 | 17 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 585 | |||
| 586 | wpa_supplicant - fixed file location for wpa_cli and association test | ||
| 587 | as it they changed in wpa_supplicant-0.3.x | ||
| 588 | wpa_supplicant now brings the interface up before launching - fixes #74637 | ||
| 589 | |||
| 590 | vapier | 1.555 | * rc-scripts 1.6.8 (15 Dec 2004) |
| 591 | |||
| 592 | vapier | 1.553 | 15 Dec 2004; Mike Frysinger <vapier@gentoo.org>: |
| 593 | |||
| 594 | start_critical_service in /sbin/rc should rely on $1 instead of | ||
| 595 | the external variable $x for the service name. #74425 | ||
| 596 | |||
| 597 | uberlord | 1.552 | 15 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 598 | |||
| 599 | vapier | 1.553 | rc-status now reports stopping status |
| 600 | Updated documentation to point non-usb linux-wlan-ng users to use | ||
| 601 | hostap-driver instead | ||
| 602 | uberlord | 1.552 | |
| 603 | azarah | 1.551 | 13 Dec 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 604 | |||
| 605 | Tweak init.d/halt.sh to support new text based udev_db ('udevinfo -d' do | ||
| 606 | not work anymore, and there is no space after '(S|N):'). Also check if | ||
| 607 | devices.tar.bz2 is empty before trying to create it, bug #71143. | ||
| 608 | |||
| 609 | vapier | 1.548 | 12 Dec 2004; Mike Frysinger <vapier@gentoo.org>: |
| 610 | |||
| 611 | Tweak get_mount_fstab to only print the first mount point found and then | ||
| 612 | vapier | 1.554 | spit warning messages for extra matches. Also add support for RC_USE_FSTAB |
| 613 | so normal users don't have to worry about a broken /etc/fstab. | ||
| 614 | vapier | 1.548 | |
| 615 | vapier | 1.549 | Add an additional sanity check to the udev tarball usage. Don't try to |
| 616 | unpack an empty or non-existant tarball. | ||
| 617 | |||
| 618 | vapier | 1.550 | Tweak the 'static' description so users know they can use it to make |
| 619 | /sbin/rc ignore /dev completely. | ||
| 620 | |||
| 621 | azarah | 1.547 | 12 Dec 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 622 | |||
| 623 | Add suport for using /sbin/udevsend from new udev-048 as hotplug multiplexer. | ||
| 624 | |||
| 625 | uberlord | 1.545 | 12 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 626 | |||
| 627 | fixed installed typo in net.lo - fixes #74152. Thanks to Federico Galassi | ||
| 628 | |||
| 629 | uberlord | 1.546 | dhcpcd and udhcpc now run via the eval statement so quotes can be used |
| 630 | in options. Fixes #74053 - thanks to Evan Buswell | ||
| 631 | |||
| 632 | uberlord | 1.543 | 09 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 633 | |||
| 634 | fixed net.lo getting vlan config | ||
| 635 | uberlord | 1.544 | rc doesn't stop hotplugged devices when system is booting - fixes #61594 |
| 636 | thanks to Andreas Sundebo for the fix | ||
| 637 | uberlord | 1.552 | rc-status now reports stopping |
| 638 | uberlord | 1.543 | |
| 639 | uberlord | 1.541 | 08 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 640 | |||
| 641 | iwconfig now unsets wireless config and downs interface when backgrounding | ||
| 642 | fails | ||
| 643 | wpa_supplicant now supports backgrounding | ||
| 644 | uberlord | 1.542 | removed is_in_fstab function and replaced with get_mount_fstab which |
| 645 | returns a mount command based on the contents of fstab. Resolves bugs | ||
| 646 | #70044 and #73762 | ||
| 647 | uberlord | 1.541 | |
| 648 | uberlord | 1.537 | 07 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 649 | |||
| 650 | essidnet - fixed setting up search domains | ||
| 651 | uberlord | 1.540 | ifconfig now reads the old gateway variable correctly - fixes #73641 |
| 652 | uberlord | 1.537 | iwconfig now supports backgrounding |
| 653 | uberlord | 1.538 | ifconfig and iproute2 now support function interface_set_mac_address |
| 654 | macchanger no longer depends on macchanger if configuring a specific | ||
| 655 | mac address | ||
| 656 | uberlord | 1.537 | |
| 657 | uberlord | 1.539 | fix depstop for net-services when system is booting - should fix #61594 |
| 658 | added service_stopped function to make reading code easier and trying | ||
| 659 | to avoid race conditions | ||
| 660 | |||
| 661 | uberlord | 1.533 | 06 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 662 | |||
| 663 | macchanger defaults to setting the interface down, and then trying | ||
| 664 | with it up - fixes #71929 | ||
| 665 | macchanger converts mac_${IFACE} to lowercase - fixes #73549 | ||
| 666 | iproute2 now configures the interface up everytime we add an address | ||
| 667 | removed "need interface" from all modules depends as net.lo requires | ||
| 668 | interface anyway | ||
| 669 | uberlord | 1.534 | removed hardcoded ath0 in wpa_supplicant |
| 670 | uberlord | 1.533 | |
| 671 | uberlord | 1.536 | added rc-script statuses "starting", "stopping" and "inactive" |
| 672 | uberlord | 1.535 | dhcpcd, udhcpc and dhclient now support backgrounding - fixes #52975 |
| 673 | |||
| 674 | uberlord | 1.532 | 05 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 675 | |||
| 676 | dhclient now kill it's process if it failed to get a lease on startup | ||
| 677 | all dhclient responses are now handled correctly | ||
| 678 | |||
| 679 | uberlord | 1.528 | 04 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 680 | |||
| 681 | fixed dhclient-ifconfig to look for dhclient-udhcpc-wrapper in the correct | ||
| 682 | place and changed hardcoded eth1 to ${interface} in udhcpc-ifconfig. | ||
| 683 | Fixes #73327 - thanks to Benoit Boissinot | ||
| 684 | |||
| 685 | essidnet gets the essid itself instead of relying on ${ESSID} | ||
| 686 | uberlord | 1.530 | wpa_supplicant module added |
| 687 | config-system now creates files as .tmp instead of .new and loads | ||
| 688 | the wpa_supplicant module if needed | ||
| 689 | ifconfig now addes aliases to devices other than eth0 | ||
| 690 | dhcpcd, dhclient, pump and udhcpc now expose the dhcp_${IFACE} variable | ||
| 691 | instead of the old peer_dns_${IFACE}, peer_ntp_${IFACE}, peer_nis_${IFACE} | ||
| 692 | ones | ||
| 693 | uberlord | 1.528 | |
| 694 | uberlord | 1.531 | removed modules use dependancy in net.lo and added installed |
| 695 | - this allows use to provide "virtual" modules which are only "installed" | ||
| 696 | when other depended modules are installed | ||
| 697 | |||
| 698 | agriffis | 1.527 | * rc-scripts 1.6.7 (03 Dec 2004) |
| 699 | |||
| 700 | vapier | 1.526 | 03 Dec 2004; Mike Frysinger <vapier@gentoo.org>: |
| 701 | |||
| 702 | Simply filesystem unmounting in halt.sh. Based upon work by Georg Sauthoff | ||
| 703 | #68697. Also clean up the filesystem remounting readonly. As a last | ||
| 704 | resort to filesystems which won't remount readonly, we try to unmount them | ||
| 705 | with the force/readonly options. Idea from #70349. | ||
| 706 | |||
| 707 | uberlord | 1.521 | 03 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 708 | |||
| 709 | Fixed config-system for only changing hostname when needed | ||
| 710 | udhcpc and dhclient now restore saved configs when stopping and work | ||
| 711 | with non-infinite leases | ||
| 712 | uberlord | 1.522 | Moved generic dhcp options into a space seperated string |
| 713 | uberlord | 1.523 | udhcpc now caches it's IP address and requests it the next time it starts |
| 714 | if the address is not released | ||
| 715 | uberlord | 1.524 | udhcpc and dhclient no longer flush interfaces if we don't need too |
| 716 | uberlord | 1.525 | ipppd module now looks for ipppd in /usr/sbin - fixes #73067 |
| 717 | uberlord | 1.521 | |
| 718 | vapier | 1.520 | 02 Dec 2004; Mike Frysinger <vapier@gentoo.org>: |
| 719 | |||
| 720 | Merge time checking function (is_older_than) to help simplify config | ||
| 721 | file update checking. Used for now in env-update.sh #71285. Function | ||
| 722 | written by Paul Pacheco #55329. | ||
| 723 | |||
| 724 | uberlord | 1.518 | 02 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 725 | |||
| 726 | Added option dhcp_release to specify if we release the DHCP lease or not | ||
| 727 | defaults to no | ||
| 728 | Changed variables peer_* to dhcp_* | ||
| 729 | dhclient and udhcpc now specify a pidfile | ||
| 730 | uberlord | 1.519 | Fixed iwconfig report if iwgetid does not support --channel |
| 731 | uberlord | 1.518 | |
| 732 | vapier | 1.517 | 01 Dec 2004; Mike Frysinger <vapier@gentoo.org>: |
| 733 | |||
| 734 | Refix and clean up the netmount script to kill processes #64034. | ||
| 735 | |||
| 736 | uberlord | 1.516 | 01 Dec 2004; Roy Marples <uberlord@gentoo.org>: |
| 737 | |||
| 738 | Documentation fixes regarding iwconfig and linux-wlan-ng | ||
| 739 | Fixed bonding deps per bug #71419 | ||
| 740 | |||
| 741 | vapier | 1.514 | 30 Nov 2004; Mike Frysinger <vapier@gentoo.org>: |
| 742 | |||
| 743 | Fix the UML/coLinux check in init.d/clock #72937. | ||
| 744 | |||
| 745 | vapier | 1.515 | Allow the user to override the default mount options via /etc/fstab |
| 746 | for all the mounts. Added a 'is_in_fstab' function to see if the | ||
| 747 | user has defined the mount, and if not, fall back to the hardcoded | ||
| 748 | stuff from before. This also lets us get rid of $RC_DEVICE_FS #70044. | ||
| 749 | |||
| 750 | uberlord | 1.511 | 26 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 751 | |||
| 752 | Fixed up address detection in apipa | ||
| 753 | net.lo now checks for duplicate static IPv4 addresses before assigning | ||
| 754 | iwconfig now supports preassociate and postassociate user hooks | ||
| 755 | net.example - changed $1 to ${IFACE} in examples | ||
| 756 | uberlord | 1.512 | clarified lack of linux-wlan-ng support |
| 757 | uberlord | 1.511 | |
| 758 | vapier | 1.509 | 24 Nov 2004; Mike Frysinger <vapier@gentoo.org>: |
| 759 | |||
| 760 | Allow users to specify charset option to dumpkeys when using unicode | ||
| 761 | in conf.d/keymaps #72225. Also move all the init.d/keymap specific | ||
| 762 | options out of rc.conf and into conf.d/keymaps and add some config | ||
| 763 | checks to init.d/keymaps like the clock/hostname init.d scripts. | ||
| 764 | |||
| 765 | vapier | 1.513 | Make sure /etc/rc.conf overrides conf.d files when starting up |
| 766 | critical services. Should help out with transition from rc.conf. | ||
| 767 | |||
| 768 | uberlord | 1.508 | 24 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 769 | |||
| 770 | Ensure all net-scripts modules depend on interface_variable function | ||
| 771 | where applicable | ||
| 772 | uberlord | 1.510 | Fixed adsl stopping - #68934. Thanks to Andreas Kauer |
| 773 | uberlord | 1.508 | |
| 774 | uberlord | 1.504 | 23 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 775 | |||
| 776 | iproute2 does not need to create dummy interfaces for aliases | ||
| 777 | unlike ifconfig so we no longer do this | ||
| 778 | We now bring down all aliases and addresses properly | ||
| 779 | Split off some functions from net.lo into helpers.d/functions | ||
| 780 | so that our DHCP helper scripts can use them too :) | ||
| 781 | Deprecated interface specific setup in favour of a generic config | ||
| 782 | macchanger brings interface up now - fixes #71929 | ||
| 783 | DHCP over VLAN now works - fixes #71860 | ||
| 784 | Disabled modified function checking as it's far too expensive on CPU | ||
| 785 | and still isn't 100% reliable | ||
| 786 | When specifing a module that isn't emerged, you now get an error | ||
| 787 | telling you what to emerge | ||
| 788 | Removed -p option from the diff call used for function removal | ||
| 789 | uberlord | 1.505 | Removed rp_filter setting - fixes first part of bug #71971 |
| 790 | Added sysctl.conf settings relating to rp_filter to sysctl.conf | ||
| 791 | - fixes last part of bug #71971 | ||
| 792 | uberlord | 1.506 | Fixed pump exporing ntp servers |
| 793 | implemented MODULES_DIR so we can change directory we load from on the fly | ||
| 794 | uberlord | 1.507 | fixed variables for vlans in most modules |
| 795 | uberlord | 1.504 | |
| 796 | agriffis | 1.502 | 19 Nov 2004; Aron Grffis <agriffis@gentoo.org>: |
| 797 | uberlord | 1.504 | |
| 798 | agriffis | 1.502 | Remove crap "ll" and "d" aliases from skel .bashrc |
| 799 | |||
| 800 | uberlord | 1.501 | 19 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 801 | uberlord | 1.504 | |
| 802 | uberlord | 1.501 | tests for hostname (none) when sending hostname via dhcpcd, udhpc or pump |
| 803 | udhcpc now does correct signal handling so we can release leases and | ||
| 804 | terminate cleanly | ||
| 805 | Improved pump process detection | ||
| 806 | Rewrote udhcpc helper scripts around udhcpc and wrapped dhclient to udhcpc | ||
| 807 | scripts. This makes things much saner as udhcpc is much saner - also fixed | ||
| 808 | essidnet and ipv6 local link for them. | ||
| 809 | uberlord | 1.503 | removed iproute2 udhcpc reliance on the "bc" command |
| 810 | uberlord | 1.501 | |
| 811 | uberlord | 1.497 | 17 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 812 | uberlord | 1.504 | |
| 813 | uberlord | 1.497 | Fixed invalid variable handling in bonding and vlan - bug #71419 |
| 814 | apipa now brings the interface up before testing if address exists | ||
| 815 | uberlord | 1.498 | Updated bonding documentation - bug #71419 |
| 816 | uberlord | 1.499 | Fixed iproute2 adding addresses for vlans - bug #71419 |
| 817 | uberlord | 1.500 | ifconfig handle inet6 routing automatically - bug #33310 |
| 818 | ifconfig - fixed old gateway + gateway in routes conflict | ||
| 819 | iproute2 cleaned up some functions | ||
| 820 | uberlord | 1.497 | |
| 821 | uberlord | 1.496 | 16 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 822 | |||
| 823 | We no longer default a fallback to APIPA when no config is given | ||
| 824 | net.example fleshed out a bit more for dhcpcd - fixes #60845 | ||
| 825 | Improved forced module handling a touch | ||
| 826 | modules_sort and modules_check_user in net.lo buffer _provides, | ||
| 827 | _before and _after in arrays to avoid shelling out | ||
| 828 | |||
| 829 | vapier | 1.490 | 15 Nov 2004; Mike Frysinger <vapier@gentoo.org>: |
| 830 | |||
| 831 | Add a check to clock init.d to make sure users dont try to set | ||
| 832 | config their clock in rc.conf anymore. | ||
| 833 | azarah | 1.172 | |
| 834 | vapier | 1.491 | Redo hostname/domainname scripts to use files in /etc/conf.d/ |
| 835 | instead of creating files in /etc/. Allows for controlling things | ||
| 836 | like the behavior of setting the 'domain' in resolv.conf since users | ||
| 837 | may not always understand exactly what's going on. | ||
| 838 | |||
| 839 | vapier | 1.493 | Stop referring to conf.d/basic as a global rc config option. That |
| 840 | file hasn't been used in a long time and has since been replaced | ||
| 841 | with env.d/00basic. Updated sbin/runscript.sh, etc/profile, | ||
| 842 | sbin/rc-help.sh, and src/awk/cachedepends.awk. | ||
| 843 | |||
| 844 | vapier | 1.494 | Run `find | xargs` instead of `find -exec`. Much better performance |
| 845 | this way, and busybox friendly #59732. | ||
| 846 | |||
| 847 | uberlord | 1.488 | 15 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 848 | |||
| 849 | uberlord | 1.495 | Split modules_load into smaller more managable functions in net.lo |
| 850 | Added modules_force option to net.lo with a big phat warning in | ||
| 851 | net.example about it potentially breaking networking | ||
| 852 | uberlord | 1.492 | Added searchdomains_ESSID option to essidnet |
| 853 | Stopped the domain setting from putting the same entry in search | ||
| 854 | in config-system and essidnet | ||
| 855 | uberlord | 1.489 | Removed second warning in net.lo when configuration not set |
| 856 | uberlord | 1.488 | Documented APIPA module in net.example |
| 857 | Added kernel checking for vlan - fixes #70829 | ||
| 858 | Added kernel checking for bonding, bridging and tuntap | ||
| 859 | Added iproute2 support to the APIPA module | ||
| 860 | |||
| 861 | vapier | 1.487 | 13 Nov 2004; Mike Frysinger <vapier@gentoo.org>: |
| 862 | |||
| 863 | Update the svcdir mounting #69595. Instead of mounting in /mnt | ||
| 864 | and then bind mounting to $svcdir, we mount the ramdisk on $svcidr. | ||
| 865 | |||
| 866 | uberlord | 1.484 | 12 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 867 | |||
| 868 | uberlord | 1.486 | Added arping duplicate address detection to net.lo |
| 869 | Created Automatic Private IP Addressing (APIPA) module | ||
| 870 | |||
| 871 | uberlord | 1.485 | Added dependancy checking to ipppd |
| 872 | Bonding is now started pre instead of post | ||
| 873 | uberlord | 1.484 | Fixed iface variable in dhcp modules for vlans |
| 874 | Changed get_device to interface_device | ||
| 875 | Changed get_type to interface_type | ||
| 876 | Added vlan configuration options and documented them in net.example | ||
| 877 | Fixed bridge configuration handling | ||
| 878 | Removed _get_vlans from iproute2 and ifconfig as vlan now does it itself | ||
| 879 | |||
| 880 | uberlord | 1.483 | 11 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 881 | |||
| 882 | Fixed category of rp-pppoe to net-dialup error when requesting ADSL | ||
| 883 | Improved inet6 address deletion and detection in iproute2 | ||
| 884 | Improved gateway logic in ifconfig | ||
| 885 | Changed all wireless reporting functions to use iwgetid instead of | ||
| 886 | parsing iwconfig output except for essid | ||
| 887 | |||
| 888 | agriffis | 1.482 | * rc-scripts 1.6.6 (08 Nov 2004) |
| 889 | agriffis | 1.481 | |
| 890 | uberlord | 1.480 | 08 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 891 | |||
| 892 | Added options to configure bridge | ||
| 893 | Added bridge configuration example to net.example | ||
| 894 | Added missing required function interface_exists to iptunnel check_depends | ||
| 895 | |||
| 896 | agriffis | 1.478 | 07 Nov 2004; Aron Griffis <agriffis@gentoo.org>: |
| 897 | |||
| 898 | agriffis | 1.479 | Fix shell scripting errors that would result in |
| 899 | /sbin/functions.sh: line 166: [: too many arguments. | ||
| 900 | agriffis | 1.478 | |
| 901 | uberlord | 1.476 | 05 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 902 | |||
| 903 | uberlord | 1.477 | net-scripts/net.modules.d/bridge |
| 904 | - fixed destroying a bridge if no ports were added | ||
| 905 | - starts interfaces if they don't exist - fixed bug #65153 | ||
| 906 | |||
| 907 | net-scrips/net.modules.d/bonding | ||
| 908 | - starts interfaces if they don't exist | ||
| 909 | |||
| 910 | uberlord | 1.476 | net-scripts/init.d/net.lo |
| 911 | uberlord | 1.477 | - added net_start() function to start depandant ifaces |
| 912 | so that bridge br0 can active tun0 which net.tun0 has to create | ||
| 913 | uberlord | 1.476 | - added use dependany on wlan incase we're using linux-wlan-ng drivers |
| 914 | fixes bug #64978 | ||
| 915 | - moved start() to run_start() and stop() to run_stop() | ||
| 916 | created run() and new start()/stop() functions | ||
| 917 | this is so that we have one single entry point to localise variables | ||
| 918 | and to remove any added functions loaded by our modules | ||
| 919 | - removed redundant interface_exists() as it's provided by | ||
| 920 | ifconfig and/or iproute2 | ||
| 921 | |||
| 922 | net-scripts/net.modules.d/ifconfig and iproute2 | ||
| 923 | - added ifconfig_tunnel and iproute2_tunnel functions | ||
| 924 | |||
| 925 | addred gre/ipip tunnel support via the the tunnel module | ||
| 926 | - fixes bug #50765 | ||
| 927 | |||
| 928 | uberlord | 1.475 | 04 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 929 | uberlord | 1.474 | |
| 930 | uberlord | 1.475 | net-scripts/net.modules.d/pump |
| 931 | - fixed setting ntp servers | ||
| 932 | uberlord | 1.474 | |
| 933 | uberlord | 1.475 | net-scripts/net.modules.d/dhcpcd |
| 934 | - fixed stopping function | ||
| 935 | uberlord | 1.472 | |
| 936 | uberlord | 1.473 | net-scripts/net.modules.d/bonding |
| 937 | - fixed module to actually work with the interface | ||
| 938 | |||
| 939 | uberlord | 1.472 | net-scripts/init.d/net.lo |
| 940 | - we remove all added functions when restarting an interface | ||
| 941 | this relies on the diff command being available | ||
| 942 | |||
| 943 | uberlord | 1.476 | added isdn support via the new ipppd module - fixes bug #69035 |
| 944 | uberlord | 1.472 | |
| 945 | net-scripts/conf.d/net.example | ||
| 946 | - added sample isdn setup | ||
| 947 | |||
| 948 | net-scripts/conf.d/wireless.example | ||
| 949 | - added better descriptions to the _sleep variables | ||
| 950 | |||
| 951 | Fixed boolean logic error when testing is_net_up in /sbin/runscript.sh | ||
| 952 | - fixed bug #70022 | ||
| 953 | |||
| 954 | uberlord | 1.475 | net.lo - added get_type function to return the type of the interface |
| 955 | - eth, ippp, etc | ||
| 956 | |||
| 957 | ipppd, tuntap | ||
| 958 | - start() moved to pre_start() and we now test by type | ||
| 959 | this means you no longer need ifconfig_ippp0=( "isdn" "dhcp" ) | ||
| 960 | as ippp0 is always an isdn device | ||
| 961 | |||
| 962 | bridge - fixed stop function and moved start() to pre_start() | ||
| 963 | and automatically start if the variable bridge_${iface} exists | ||
| 964 | |||
| 965 | net.example - fixed up documentation for changed behaviour above | ||
| 966 | |||
| 967 | vapier | 1.470 | 03 Nov 2004; Mike Frysinger <vapier@gentoo.org>: |
| 968 | |||
| 969 | When launching critical services in /sbin/rc, make sure we source | ||
| 970 | the conf.d file (if it exists). Resolves #69956. | ||
| 971 | |||
| 972 | uberlord | 1.466 | 03 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 973 | |||
| 974 | net-scripts/init.d/net.lo | ||
| 975 | - fixed !module when it's not installed | ||
| 976 | - we can now specify null inet addresses in the config | ||
| 977 | this allows a pure inet6 setup | ||
| 978 | uberlord | 1.469 | - shutdown lo the same way we bring it up |
| 979 | uberlord | 1.466 | |
| 980 | net-scripts/net.modules.d/ifconfig | ||
| 981 | - changed IPv6 to inet6 in output of adding inet6 addresses | ||
| 982 | - just output inet6 address removed, not eth0 del foo | ||
| 983 | |||
| 984 | net-scripts/net.modules.d/iproute2 | ||
| 985 | - fix deletion of non-link addresses - fixes bug #65417 (again) | ||
| 986 | - handle inet6 addresses like ifconfig - fixes more bug #65417 | ||
| 987 | |||
| 988 | net-scripts/conf.d/net.example | ||
| 989 | - noted that inet6 addresses do not create aliases | ||
| 990 | - added examples of assigning inet6 addresses | ||
| 991 | |||
| 992 | uberlord | 1.467 | net-scripts/net.modules.d/iwconfig |
| 993 | - improve error message when card does not support scanning | ||
| 994 | |||
| 995 | uberlord | 1.468 | net-scripts/conf.d/wireless.example |
| 996 | - fixed comment regarding preferred_aps not working with cards that don't | ||
| 997 | support scanning | ||
| 998 | |||
| 999 | uberlord | 1.464 | 02 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 1000 | |||
| 1001 | uberlord | 1.465 | net-scripts/conf.d/net.example |
| 1002 | uberlord | 1.464 | - added bridging and tuntap examples |
| 1003 | |||
| 1004 | uberlord | 1.465 | net-scripts/init.d/net.lo |
| 1005 | - modprobe ${IFACE} when ${IFACE} does not exist | ||
| 1006 | |||
| 1007 | uberlord | 1.464 | net-scripts/net.modules.d/ifconfig |
| 1008 | - fixed interface existance check | ||
| 1009 | |||
| 1010 | net-scripts/net.modules.d | ||
| 1011 | ifconfig & iproute2 | ||
| 1012 | - added boolean to interface_exists to report if it exists or not | ||
| 1013 | - added checks to see if the interface exists or not when starting | ||
| 1014 | |||
| 1015 | dhcpcd | ||
| 1016 | - removed debug line | ||
| 1017 | |||
| 1018 | bonding, dhclient, dhcpcd, essidnet, macchanger, pump, udhcpc | ||
| 1019 | - added checks to see if the interface exists or not when starting | ||
| 1020 | |||
| 1021 | tuntap | ||
| 1022 | - added checks to see if the interface exists or not when stopping | ||
| 1023 | |||
| 1024 | vapier | 1.461 | 01 Nov 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1025 | |||
| 1026 | Dump the error message that hwclock returns since it tends to be | ||
| 1027 | quite useful. Modified init.d/clock. | ||
| 1028 | |||
| 1029 | vapier | 1.462 | Fix error in functions.sh [ -z "$@" ] -> [[ -z "$@" ]] #69789. |
| 1030 | |||
| 1031 | vapier | 1.463 | Don't create /dev/sndstat link anymore in populate_udev per #69635. |
| 1032 | |||
| 1033 | uberlord | 1.460 | 01 Nov 2004; Roy Marples <uberlord@gentoo.org>: |
| 1034 | |||
| 1035 | net-scripts/init.d/net.lo: | ||
| 1036 | - modules specified by interface config now error if they are not loaded | ||
| 1037 | - moved interface check to after preup incase user preup loads drivers | ||
| 1038 | - modules can be explicitly not used by prefixing them with a ! | ||
| 1039 | however, they are still available to other modules | ||
| 1040 | fixes bugs #68908, #69027 | ||
| 1041 | - remove check to see if interface exists | ||
| 1042 | - modules may setup new interfaces and still require config | ||
| 1043 | so we have a new label counter in iface_start | ||
| 1044 | - removed the check to see if a class wrapping already exists | ||
| 1045 | this fixes the bug where ifconfig and iproute2 are installed, but | ||
| 1046 | ifconfig is asked for and the interface is restarted. | ||
| 1047 | - added check to see if the configured module is loaded | ||
| 1048 | and installed or not in iface_start | ||
| 1049 | - add dependancy on isdn4linux - fixes bug #69035 | ||
| 1050 | - interface_exists moved to iproute and ifconfig | ||
| 1051 | |||
| 1052 | net-scripts/net.modules.d | ||
| 1053 | - Split wireless module into iwconfig and essidnet modules | ||
| 1054 | - Added tuntap and bridge modules, fixes bug #55394, #30688 | ||
| 1055 | |||
| 1056 | net-scripts/init.d/iwconfig: | ||
| 1057 | - wep mode is now reported | ||
| 1058 | - removed post_stop function so we keep existing config | ||
| 1059 | - added pre_stop to set the ESSID variable | ||
| 1060 | - changed to veinfo/vewarn where appropriate | ||
| 1061 | - check if interface exists otherwise abort gracefully | ||
| 1062 | - no longer deletes addresses as we now avoid | ||
| 1063 | ipv6 local addresses in detecting if interface has an addresses or not | ||
| 1064 | |||
| 1065 | net-scripts/init.d/ifconfig: | ||
| 1066 | - added flag enable/disable function | ||
| 1067 | - scope:link inet6 addresses are ignored when testing is_up and | ||
| 1068 | del_addresses - fixes bug #65417 | ||
| 1069 | |||
| 1070 | net-scripts/init.d/iproute2: | ||
| 1071 | - added flag enable/disable function | ||
| 1072 | - scope:link inet6 addresses are ignored when testing is_up and | ||
| 1073 | del_addresses - fixes bug #65417 | ||
| 1074 | |||
| 1075 | net-scripts/init.d/macchanger: | ||
| 1076 | - fixed detecting whether the change worked or not, fixes bug #68893 | ||
| 1077 | |||
| 1078 | net-scripts/init.d/vlan: | ||
| 1079 | - fixed old config problem | ||
| 1080 | |||
| 1081 | azarah | 1.457 | 31 Oct 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1082 | |||
| 1083 | Do not delete depscan and envupdate caches on reboot, as this should | ||
| 1084 | improve bootup times - works nicely with the '-u' parameters of both. | ||
| 1085 | Also move the '-u' parameter test of depscan.sh after the directory | ||
| 1086 | exist test, else ${svcdir}/started/, etc do not exist. Modified both | ||
| 1087 | /sbin/rc and /sbin/depscan.sh for this. | ||
| 1088 | |||
| 1089 | azarah | 1.458 | Move things around in /sbin/functions.sh to have all functions above. |
| 1090 | |||
| 1091 | azarah | 1.459 | Add the 'lo' option to RC_NET_STRICT_CHECKING to resolve bug #29225. |
| 1092 | |||
| 1093 | azarah | 1.453 | 28 Oct 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1094 | |||
| 1095 | Only add files not managed by udev to device tarball, bug #57110. | ||
| 1096 | |||
| 1097 | vapier | 1.452 | 28 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1098 | |||
| 1099 | Revert pam_console_apply udev check in bootmisc/halt.sh since | ||
| 1100 | the bug is with pam_console_apply and not udev/pam. | ||
| 1101 | |||
| 1102 | vapier | 1.454 | Use ${EUID} instead of $(id -u) to help out BSD in runscript.sh. |
| 1103 | |||
| 1104 | Allow users to select ramfs instead of default tmpfs for mounting | ||
| 1105 | on /dev with udev #69091. | ||
| 1106 | |||
| 1107 | Add issue.devfix which would be auto copied to /etc/issue if | ||
| 1108 | /sbin/rc detects the user is missing /dev/null or /dev/console. | ||
| 1109 | Includes a simple explanation/fix for what's wrong. | ||
| 1110 | vapier | 1.452 | |
| 1111 | vapier | 1.471 | Make sure the clock init script runs after checkroot/modules/localmount |
| 1112 | so that timestamps are synchronized asap #68133 / #70008. | ||
| 1113 | vapier | 1.455 | |
| 1114 | vapier | 1.456 | Accept '-nc' as a short option to '--nocolor' #64736. |
| 1115 | |||
| 1116 | vapier | 1.450 | 26 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1117 | |||
| 1118 | Don't use -A with fsck to respect the fs_passno since it'll try | ||
| 1119 | to fsck all filesystems, not just the ones specified. Instead, | ||
| 1120 | awk /etc/fstab to review the passno field in checkroot #68822. | ||
| 1121 | |||
| 1122 | Add support for 'gentoo=forcefsck' boot option in checkroot. | ||
| 1123 | |||
| 1124 | Make sure we run devfsd in /sbin/rc even when /dev has been | ||
| 1125 | automounted by the kernel #68795. | ||
| 1126 | |||
| 1127 | agriffis | 1.451 | Don't generate the device tarball in halt.sh with livecds #68469. |
| 1128 | vapier | 1.450 | |
| 1129 | agriffis | 1.448 | 25 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1130 | |||
| 1131 | agriffis | 1.449 | net-scripts/net.modules.d/ifconfig: |
| 1132 | agriffis | 1.448 | - Simplify ifconfig_is_up() |
| 1133 | - Fix ifconfig_get_aliases_rev() to actually work... you can't | ||
| 1134 | specify an interface name to ifconfig if you want to see the | ||
| 1135 | aliases. | ||
| 1136 | - Workaround a couple ifconfig bugs dealing with aliases | ||
| 1137 | - Correct a return status in ifconfig_interface_del_addresses() | ||
| 1138 | agriffis | 1.449 | - ifconfig_iface_stop() is bool, not void; fix the comments |
| 1139 | |||
| 1140 | net-scripts/net.modules.d/iproute2: | ||
| 1141 | - iproute2_iface_stop() is bool, not void. Fix the code so it | ||
| 1142 | returns meaningful values | ||
| 1143 | |||
| 1144 | net-scripts/init.d/net.lo: | ||
| 1145 | - Fix preferred (ifconfig/dhcpcd) module loading so it doesn't | ||
| 1146 | barf when a preferred module is either (1) missing from | ||
| 1147 | net.modules.d or (2) not available due to missing dependencies | ||
| 1148 | - When loading all modules in order to stop an interface, only use | ||
| 1149 | the first available to satisfy each class wrapper | ||
| 1150 | agriffis | 1.448 | |
| 1151 | agriffis | 1.446 | 24 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1152 | |||
| 1153 | Include livecd patch that was applied to baselayout-1.9.4-r6 | ||
| 1154 | to use agetty instead of mingetty | ||
| 1155 | |||
| 1156 | vapier | 1.445 | 24 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1157 | |||
| 1158 | vapier | 1.454 | Mount tmpfs instead of ramfs on /dev when using udev systems. |
| 1159 | vapier | 1.445 | The problem with ramfs is that it has no size limitations so |
| 1160 | vapier | 1.454 | one could easily take down their machine by accident #68653. |
| 1161 | vapier | 1.445 | |
| 1162 | agriffis | 1.444 | * rc-scripts 1.6.3 (23 Oct 2004) |
| 1163 | |||
| 1164 | agriffis | 1.443 | 22 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1165 | |||
| 1166 | Add support for user_eth0 in the adsl module and in net.example. | ||
| 1167 | This means that most users won't need to edit pppoe.conf at all | ||
| 1168 | |||
| 1169 | agriffis | 1.442 | 21 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1170 | |||
| 1171 | Remove old etc/conf.d/net and try to clarify instructions in | ||
| 1172 | net-scripts/conf.d/net.example. Add example for ADSL | ||
| 1173 | |||
| 1174 | vapier | 1.441 | 21 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1175 | |||
| 1176 | Merge all of the UML checks into one function, is_uml_sys(), | ||
| 1177 | which is now in functions.sh. | ||
| 1178 | |||
| 1179 | agriffis | 1.435 | 18 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1180 | |||
| 1181 | Add v-e-commands (veinfo, vbegin, etc) to sbin/functions.sh that | ||
| 1182 | depend on RC_VERBOSE which defaults to no. Add --verbose to args | ||
| 1183 | understood by runscript.sh. | ||
| 1184 | |||
| 1185 | agriffis | 1.436 | In net.lo, use veinfo and friends when loading modules since this |
| 1186 | information is confusing to users. | ||
| 1187 | agriffis | 1.435 | |
| 1188 | agriffis | 1.436 | In net.lo, always load global "modules" setting in following |
| 1189 | "modules_iface" since this is a little easier for users to | ||
| 1190 | understand. | ||
| 1191 | |||
| 1192 | In net.lo, use eindent for output of pre/post scripts | ||
| 1193 | agriffis | 1.435 | |
| 1194 | vapier | 1.433 | 18 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1195 | |||
| 1196 | vapier | 1.440 | Add shfs to our list of net filesystems #61452. Also add afs/nfs4. |
| 1197 | vapier | 1.433 | |
| 1198 | vapier | 1.434 | Add a '-u' parameter to depscan.sh to allow for updates only when |
| 1199 | the config files have changed. With /sbin/rc using this, we speed | ||
| 1200 | up bootup by only regenerating the cache when need be #67976. Also | ||
| 1201 | add a '-u' parameter to env-update.sh for same reasons. | ||
| 1202 | |||
| 1203 | Don't run depscan.sh in rc-update anymore since the cache files don't | ||
| 1204 | depend on runlevels (which is all that rc-update modifies). | ||
| 1205 | |||
| 1206 | vapier | 1.437 | Add unicode support to keymaps/consolefont #32111 and UML support #29707. |
| 1207 | |||
| 1208 | vapier | 1.438 | Add checks to many filesystem operations in the eventuality that the |
| 1209 | vapier | 1.439 | filesystems are mounted read only. |
| 1210 | vapier | 1.438 | |
| 1211 | vapier | 1.428 | 16 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1212 | vapier | 1.426 | |
| 1213 | vapier | 1.427 | Update the default fstab /dev/shm mount to include the nodev, nosuid, |
| 1214 | and noexec mount flags. No reason for the filesystem to have those. | ||
| 1215 | vapier | 1.426 | |
| 1216 | vapier | 1.428 | Cleaned up the clock init script. Moved the clock options out of |
| 1217 | rc.conf and into its own conf.d/clock file. Added support for the | ||
| 1218 | weird Alpha consoles SRM/ARC since they need special config options. | ||
| 1219 | Also made the syncing of system clock to hardware clock at shutdown | ||
| 1220 | vapier | 1.430 | optional (with the default being off) #15834. Don't try to set the |
| 1221 | clock if running inside a coLinux environment #52870. | ||
| 1222 | vapier | 1.428 | |
| 1223 | vapier | 1.429 | Update default PATH ordering to try to follow default behavior in |
| 1224 | other distro's and because it's logical that /usr/local should | ||
| 1225 | override /usr which should override /. Fixes #12531. | ||
| 1226 | |||
| 1227 | vapier | 1.431 | Move devfs stuff out of baselayout and into the devfsd package. |
| 1228 | |||
| 1229 | vapier | 1.432 | Don't run /sbin/pam_console_apply -r if using udev on /dev #50315. |
| 1230 | |||
| 1231 | agriffis | 1.424 | 14 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1232 | |||
| 1233 | vapier | 1.425 | Fix rc-status to work with new COLS code. |
| 1234 | |||
| 1235 | 14 Oct 2004; Mike Frysinger <vapier@gentoo.org>: | ||
| 1236 | |||
| 1237 | Allow users to mount ramfs/tmpfs/ramdisk as their svcdir and | ||
| 1238 | stop assuming ramfs==ramdisk #64079. | ||
| 1239 | agriffis | 1.424 | |
| 1240 | vapier | 1.422 | 13 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1241 | |||
| 1242 | Rework the code for managing /dev to make it more flexible for | ||
| 1243 | users. Some don't want to use devfs/udev but rather just create | ||
| 1244 | their own nodes. Handles some issues with #44906 / #67276. | ||
| 1245 | |||
| 1246 | vapier | 1.423 | Move the utmp clearing code out of bootmisc and into /sbin/rc. |
| 1247 | The utmp log must be cleared while in the initial boot level | ||
| 1248 | (meaning inside /sbin/rc) because as soon as rc exists, init | ||
| 1249 | writes a 'boot' record (`who -b`) which would normally be lost | ||
| 1250 | when the bootmisc init.d script is run #61727. | ||
| 1251 | |||
| 1252 | agriffis | 1.420 | 13 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1253 | |||
| 1254 | Cosmetic fixes for starting loopback interface | ||
| 1255 | |||
| 1256 | vapier | 1.422 | SpanKY doesn't like the dots... disable them by default, but you |
| 1257 | agriffis | 1.421 | can set RC_DOT_PATTERN=' .' in /etc/conf.d/rc to get them back |
| 1258 | |||
| 1259 | agriffis | 1.419 | * rc-scripts 1.6.2 (13 Oct 2004) |
| 1260 | |||
| 1261 | agriffis | 1.418 | 13 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1262 | |||
| 1263 | Install net.modules.d to /lib/rcscripts instead of /etc so we | ||
| 1264 | don't have to deal with CONFIG_PROTECT | ||
| 1265 | |||
| 1266 | Fix diff code in modules_load so it can identify which functions | ||
| 1267 | have been modified | ||
| 1268 | |||
| 1269 | Fix fallback mechanism in iface_start so that it works correctly | ||
| 1270 | and doesn't report a bogus error message when trying the fallback | ||
| 1271 | |||
| 1272 | Get rid of need_begin trickery in iface_stop | ||
| 1273 | |||
| 1274 | Simplify eend processing in dhcp modules | ||
| 1275 | |||
| 1276 | Implement eindent, eoutdent, esetdent in functions.sh and adjust | ||
| 1277 | net-scripts to use them. | ||
| 1278 | |||
| 1279 | Re-write einfo, ewarn, eerror, ebegin, eend, ewend to use | ||
| 1280 | RC_INDENTATION and to work better on serial terminals | ||
| 1281 | |||
| 1282 | Remove conf.d/net.ppp0 since that is provided by net-dialup/ppp | ||
| 1283 | |||
| 1284 | agriffis | 1.417 | 12 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1285 | |||
| 1286 | Fix ipaddr_fallback in net-scripts/conf.d/net.example | ||
| 1287 | |||
| 1288 | agriffis | 1.414 | 09 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1289 | |||
| 1290 | Remove init.d/net.eth0 net.lo and net.ppp0. The first two are | ||
| 1291 | provided now by net-scripts and net.ppp0 is shipped in | ||
| 1292 | net-dialup/ppp | ||
| 1293 | |||
| 1294 | agriffis | 1.415 | Create NET_FS_LIST and is_net_fs in functions.sh and use them in |
| 1295 | checkroot, localmount, netmount, net.example, and net.lo | ||
| 1296 | |||
| 1297 | vapier | 1.413 | 09 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1298 | |||
| 1299 | If the hostname has already been set via the kernel/dhcp, don't | ||
| 1300 | force it to 'localhost'. Used in netboot/terminal setups #38172. | ||
| 1301 | |||
| 1302 | vapier | 1.416 | Add domainname to default boot runlevel list #47041. |
| 1303 | |||
| 1304 | vapier | 1.411 | 08 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1305 | |||
| 1306 | Make sure that when we try to mount /sys, we do so with -n (tigger). | ||
| 1307 | |||
| 1308 | vapier | 1.412 | Add some examples for nfs to sysctl.conf #66575. |
| 1309 | |||
| 1310 | agriffis | 1.410 | 06 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1311 | |||
| 1312 | Update to net-scripts 1.0.2 from Roy | ||
| 1313 | ------------------------------------ | ||
| 1314 | - wireless module: replaced preferred_only var with | ||
| 1315 | associate_order this makes more sense now as we have changed the | ||
| 1316 | possible values | ||
| 1317 | - wireless module: added patch from Daniel Zappala we should call | ||
| 1318 | wireless_get_essid everywhere now | ||
| 1319 | - wireless module: don't declare ESSID local in | ||
| 1320 | wireless_configure(). This allows ESSID to be tested in the | ||
| 1321 | user defined postup() function | ||
| 1322 | - wireless module: test type != "NOT READY!" instead of testing = | ||
| 1323 | IEEE. this resolves problems with intel and ra-tech drivers | ||
| 1324 | - net.lo start() now errors when the interface does not exist | ||
| 1325 | - dhcpcd, dhclient, udhcpc and pump now expose peer_* vars this | ||
| 1326 | enables wireless to map them from peer_dns_ESSID | ||
| 1327 | - config-system helper now loads wireless module to remap | ||
| 1328 | variables from ESSID this allows udhcpc and dhclient to use | ||
| 1329 | remapped wireless vars | ||
| 1330 | - fixed dhcpcd and pump modules using peer_* vars | ||
| 1331 | - wireless aborts after 5 seconds if it cannot report a valid | ||
| 1332 | ESSID this fixes a potential infinite loop problem | ||
| 1333 | - wireless_setup_iface() renamed to wireless_map_essid_vars() this | ||
| 1334 | avoids confusion about what the function actually does | ||
| 1335 | |||
| 1336 | vapier | 1.409 | 06 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1337 | |||
| 1338 | Change the default net.ipv4.conf.default.rp_filter setting to 1 | ||
| 1339 | in sysctl.conf since it shouldn't be harmful in anyway. Redhat | ||
| 1340 | does the same. | ||
| 1341 | |||
| 1342 | agriffis | 1.402 | 05 Oct 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1343 | |||
| 1344 | Get rid of getcols() in sbin/functions.sh. Use COLUMNS when | ||
| 1345 | possible and otherwise clean up the COLS code. Fix the "emerge | ||
| 1346 | depend" detection code to use RC_ENDCOL="no" | ||
| 1347 | |||
| 1348 | vapier | 1.401 | 05 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1349 | |||
| 1350 | Changed behavior of the domainname init.d script. It will now | ||
| 1351 | override any settings obtained via dhcp/whatever. See #48277. | ||
| 1352 | |||
| 1353 | vapier | 1.403 | Updated bootmisc to dump the output of `dmesg` to /var/log/dmesg. |
| 1354 | This way users have an 'after-boot' log of their dmesg saved | ||
| 1355 | somewhere useful #55421. | ||
| 1356 | |||
| 1357 | vapier | 1.404 | Added the 'eend' back to depscan.sh since the script starts with a |
| 1358 | call to 'ebegin' #59694. | ||
| 1359 | |||
| 1360 | vapier | 1.405 | Add selinux update from Chris PeBenito for src/runscript.c #64019. |
| 1361 | |||
| 1362 | vapier | 1.406 | Add more quoting to rc-help.sh to fix some non-critical errors. |
| 1363 | Make rc-help.sh respect the value of RC_NOCOLOR. Allow RC_NOCOLOR | ||
| 1364 | in functions.sh to be set via the environment. | ||
| 1365 | |||
| 1366 | vapier | 1.407 | Flesh out the default sysctl.conf with comments and more examples |
| 1367 | since our previous one was pretty sparse #59993. | ||
| 1368 | |||
| 1369 | vapier | 1.408 | Change calls to `uniq` to `sort -u` in checkroot/halt.sh. This way |
| 1370 | we only require sort in / and not both #36453. | ||
| 1371 | |||
| 1372 | vapier | 1.399 | 04 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1373 | |||
| 1374 | agriffis | 1.402 | More (I mean a LOT more) services. This takes care of #44458, |
| 1375 | vapier | 1.399 | #52881 #55939 #58997 #66166 #66297. Gleaned many from the IANA |
| 1376 | list/Fedora/FreeBSD/Debian. | ||
| 1377 | |||
| 1378 | vapier | 1.400 | Change the test for /proc/cmdline from -e to -r. On grsecurity |
| 1379 | based systems for example, the file may exist, but not be readable | ||
| 1380 | by non-root users (patch by Ned Ludd). | ||
| 1381 | |||
| 1382 | vapier | 1.392 | 03 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1383 | |||
| 1384 | vapier | 1.393 | Add support for NFSv4 from #25106 to the netmount script. Don't |
| 1385 | try to fsck / if the root is a remote filesystem (like NFS) #36624. | ||
| 1386 | vapier | 1.395 | |
| 1387 | vapier | 1.394 | Update the fs_passno values in the default fstab to match the |
| 1388 | vapier | 1.395 | settings suggested by the manpage #37314. Make checkroot respect |
| 1389 | vapier | 1.397 | a fs_passno setting of 0 when dealing with / #39212. Change |
| 1390 | default / filesystem type to ext3 instead of xfs #42670. | ||
| 1391 | vapier | 1.392 | |
| 1392 | vapier | 1.447 | Re-order the arguments to mount to match POSIX requirements #66225. |
| 1393 | vapier | 1.398 | |
| 1394 | vapier | 1.396 | Don't pipe swapon in localmount to /dev/null and ignore return |
| 1395 | codes anymore. A swapon that works shows no output #39834. | ||
| 1396 | |||
| 1397 | vapier | 1.392 | 02 Oct 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1398 | vapier | 1.390 | |
| 1399 | Break up the COL/COLOR code properly this time. Not all serial | ||
| 1400 | consoles can handle adjusting to the end of the line, so let's not | ||
| 1401 | bother running stty at all anymore. This should fix up #32453. | ||
| 1402 | |||
| 1403 | vapier | 1.389 | 30 Sep 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1404 | |||
| 1405 | Disable cryptfs by default in the conf.d file. Also cleanup | ||
| 1406 | the output generated in localmount/checkfs/halt.sh for dm-crypt. | ||
| 1407 | vapier | 1.391 | Add an extra check so that cryptfs is only run when the conf.d |
| 1408 | file exists as well as /bin/cryptsetup. | ||
| 1409 | vapier | 1.389 | |
| 1410 | vapier | 1.388 | 29 Sep 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1411 | |||
| 1412 | Let glibc install nscd since different versions of glibc will | ||
| 1413 | need to be handled differently. See #43076 by Rui Malheiro. | ||
| 1414 | |||
| 1415 | agriffis | 1.387 | 29 Sep 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1416 | |||
| 1417 | Prefer ~/.dir_colors over /etc/DIR_COLORS when it exists #64489 | ||
| 1418 | |||
| 1419 | agriffis | 1.386 | 27 Sep 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1420 | |||
| 1421 | Clear the screen in .bash_logout #32330 | ||
| 1422 | |||
| 1423 | agriffis | 1.385 | * rc-scripts 1.6.1 (27 Sep 2004) |
| 1424 | |||
| 1425 | 27 Sep 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1426 | |||
| 1427 | Update dm-crypt to work with multi-line configuration files. | ||
| 1428 | Also don't set status in a subshell; it was being lost before. | ||
| 1429 | agriffis | 1.383 | |
| 1430 | vapier | 1.384 | 23 Sep 2004; Mike Frysinger <vapier@gentoo.org>: |
| 1431 | |||
| 1432 | Rework the logic behind the $COLS code. It should not depend | ||
| 1433 | on whether color is enabled. Also add a check for negative | ||
| 1434 | values (like when using a serial console). | ||
| 1435 | |||
| 1436 | agriffis | 1.385 | * rc-scripts 1.6.0 (15 Sep 2004) |
| 1437 | |||
| 1438 | agriffis | 1.382 | 15 Sep 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1439 | |||
| 1440 | Fix bug 64034: simplify netmount script's stop function so that | ||
| 1441 | mountpoints containing spaces work correctly | ||
| 1442 | |||
| 1443 | agriffis | 1.383 | Update tarball.sh to use net-scripts |
| 1444 | |||
| 1445 | agriffis | 1.380 | 14 Sep 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1446 | |||
| 1447 | Commit dm-crypt enablement patch from Tigger (Rob Holland) in | ||
| 1448 | agriffis | 1.381 | bug 43146 |
| 1449 | agriffis | 1.380 | |
| 1450 | agriffis | 1.378 | * rc-scripts 1.5.3 (18 Aug 2004) |
| 1451 | |||
| 1452 | agriffis | 1.376 | 18 Aug 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1453 | |||
| 1454 | Fix bug 60719 (request for better error messages from runscript) | ||
| 1455 | by allowing errors to show on the screen when they're encountered | ||
| 1456 | in wrap_rcscript | ||
| 1457 | |||
| 1458 | agriffis | 1.377 | Apply Spock's bootsplash patch from bug 45784. This moves most of |
| 1459 | the splash functionality out of baselayout. | ||
| 1460 | |||
| 1461 | agriffis | 1.375 | 13 Aug 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1462 | |||
| 1463 | Don't export PS1. Continuation of bug 26951, comments 60-62. | ||
| 1464 | |||
| 1465 | agriffis | 1.374 | * rc-scripts 1.5.2 (02 Aug 2004) |
| 1466 | |||
| 1467 | 02 Aug 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1468 | |||
| 1469 | Related to bug 38955, don't set INPUTRC. Instead patch bash so | ||
| 1470 | that it looks for /etc/inputrc automatically if ~/.inputrc is | ||
| 1471 | missing. This is better than using INPUTRC since that will | ||
| 1472 | override even after the user creates ~/.inputrc. | ||
| 1473 | |||
| 1474 | Fix bug 54275: Don't set INFODIR. The correct variable used by | ||
| 1475 | texinfo is INFOPATH, which is already set in 00basic. Setting | ||
| 1476 | INFODIR is useless, and breaks a NetBSD cross compile from Gentoo | ||
| 1477 | |||
| 1478 | agriffis | 1.367 | 01 Aug 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1479 | |||
| 1480 | Fix bug 58805: net.eth0 should use bridge so that bridge | ||
| 1481 | interfaces are configured prior to net.br0 running | ||
| 1482 | |||
| 1483 | agriffis | 1.368 | Fix bug 56856: Get rid of net.rej and integrate missing stuff to |
| 1484 | conf.d/net | ||
| 1485 | |||
| 1486 | agriffis | 1.369 | Apply half of spock's patch in bug 45784: Check for |
| 1487 | conf.d/bootsplash instead of conf.d/bootsplash.conf | ||
| 1488 | |||
| 1489 | agriffis | 1.370 | Fix bug 51351: Quote parsed output of /proc/filesystems to handle |
| 1490 | octal sequences in mountpoint such as encoded spaces (\040) | ||
| 1491 | |||
| 1492 | agriffis | 1.371 | Fix bug 46680: Add cifs support to localmount and netmount. |
| 1493 | Thanks to Ronald Moesbergen for the patches | ||
| 1494 | |||
| 1495 | agriffis | 1.365 | 21 Jul 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1496 | |||
| 1497 | Fix bug 26952: Use /etc/bash/bashrc to setup PS1, testing $- to | ||
| 1498 | determine if shell is interactive. The new system-wide bashrc is | ||
| 1499 | installed by bash-2.05b-r10 | ||
| 1500 | |||
| 1501 | agriffis | 1.364 | 19 Jul 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1502 | |||
| 1503 | Fix bug 38743: strip leading and trailing spaces from variable | ||
| 1504 | values in genenviron.awk. Thanks to Marius Mauch for the patch. | ||
| 1505 | |||
| 1506 | agriffis | 1.363 | 09 Jul 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1507 | |||
| 1508 | Fix bug 55576: swap words "start" and "stop" in runscript.sh error | ||
| 1509 | message | ||
| 1510 | |||
| 1511 | agriffis | 1.362 | * rc-scripts 1.5.1 (28 Jun 2004) |
| 1512 | |||
| 1513 | 28 Jun 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1514 | |||
| 1515 | Fix dhcp in iface_start_ifconfig: It was re-using the variable | ||
| 1516 | ${i} which would result in the following error: | ||
| 1517 | /sbin/runscript.sh: line 441: ((: 16.141.88.153: syntax error | ||
| 1518 | in expression (error token is ".141.88.153") | ||
| 1519 | |||
| 1520 | Use vlan_IFACE instead of iface_IFACE_vlans in net.eth0 for more | ||
| 1521 | consistent vlan configuration. Thanks to robbat2 in bug 55394 | ||
| 1522 | (not fully resolved) | ||
| 1523 | |||
| 1524 | Add example for checking if root filesystem is NFS-mounted via | ||
| 1525 | predown function in conf.d/net for bug 53104. This might be | ||
| 1526 | better integrated at some point into net.eth0 | ||
| 1527 | |||
| 1528 | agriffis | 1.361 | * rc-scripts 1.5.0 (26 Jun 2004) |
| 1529 | |||
| 1530 | agriffis | 1.360 | 26 Jun 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1531 | |||
| 1532 | Fix bug 47659: support iproute2-style configuration. Thanks to | ||
| 1533 | Dean Bailey for some fantastic patches, including documentation | ||
| 1534 | agriffis | 1.361 | for conf.d/net. This is a pretty huge re-write of net.eth0 |
| 1535 | |||
| 1536 | Fix bug 34607: provide examples for in conf.d/net for preup, | ||
| 1537 | postup, predown, postdown functions. Also pay attention to return | ||
| 1538 | value from predown function (previously ignored) | ||
| 1539 | agriffis | 1.360 | |
| 1540 | agriffis | 1.357 | 15 Jun 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1541 | |||
| 1542 | Fix bug 25975: support adsl in net.eth0. Thanks to Patrick McLean | ||
| 1543 | for the initial pass at the code. | ||
| 1544 | |||
| 1545 | agriffis | 1.358 | Fix bug 34140: add --servicelist option to rc-status. Thanks to |
| 1546 | Eldad Zack for the patch. | ||
| 1547 | |||
| 1548 | agriffis | 1.359 | Fix bug 37418: fix order of LVM and RAID in checkfs. Thanks to |
| 1549 | Raimondo Giammanco for the patch. | ||
| 1550 | |||
| 1551 | agriffis | 1.356 | * rc-scripts 1.4.16 (06 Jun 2004) |
| 1552 | |||
| 1553 | 06 Jun 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1554 | |||
| 1555 | Only call generate-modprobe.conf with --assume-kernel if | ||
| 1556 | modules-update was called with --assume-kernel. This means that | ||
| 1557 | only catalyst has the dependency on module-init-tools, not | ||
| 1558 | everybody with the newer baselayout | ||
| 1559 | |||
| 1560 | * rc-scripts 1.4.15 (21 May 2004) | ||
| 1561 | agriffis | 1.355 | |
| 1562 | 21 May 2004; Aron Grifis <agriffis@gentoo.org>: | ||
| 1563 | |||
| 1564 | Fix bug 51570: typo on line 161 of /sbin/livecd-functions.sh | ||
| 1565 | |||
| 1566 | Fix bug 51626: wrong variable declaration at top of | ||
| 1567 | get_bootparam() in /sbin/functions.sh | ||
| 1568 | |||
| 1569 | agriffis | 1.354 | * rc-scripts 1.4.14 (17 May 2004) |
| 1570 | |||
| 1571 | 17 May 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1572 | |||
| 1573 | Bump version to 1.4.14 to push out gmsoft's fix for hppa console | ||
| 1574 | on ttyB0 | ||
| 1575 | |||
| 1576 | agriffis | 1.353 | * rc-scripts 1.4.13 (15 May 2004) |
| 1577 | |||
| 1578 | 15 May 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1579 | |||
| 1580 | Bump version to 1.4.13 to push out Gustavo's livecd serial console | ||
| 1581 | fixes for sparc and hppa. | ||
| 1582 | |||
| 1583 | agriffis | 1.352 | * rc-scripts 1.4.12 (07 May 2004) |
| 1584 | |||
| 1585 | agriffis | 1.350 | 10 May 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1586 | |||
| 1587 | agriffis | 1.352 | Bump version to 1.4.12 to release these critical bug fixes |
| 1588 | |||
| 1589 | agriffis | 1.351 | Fix bug 50434: The new version of start-stop-daemon changes |
| 1590 | directory to / by default unless --chdir is specified. Revert | ||
| 1591 | this behavior to maintain working directory. This fixes openvpn | ||
| 1592 | startup (probably among other things). Thanks to Sven Wegener for | ||
| 1593 | the patch. | ||
| 1594 | |||
| 1595 | agriffis | 1.350 | Fix bug 50448: Four days ago I changed bash loops to use the wrong |
| 1596 | agriffis | 1.351 | conditional syntax in net.eth0. Thanks to Sven Wegener for |
| 1597 | pointing out the problem and providing a patch. | ||
| 1598 | agriffis | 1.350 | |
| 1599 | agriffis | 1.349 | * rc-scripts 1.4.11 (07 May 2004) |
| 1600 | |||
| 1601 | agriffis | 1.348 | 07 May 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1602 | |||
| 1603 | Fix bug 20597: Skip RCS files when updating modules | ||
| 1604 | |||
| 1605 | Fix bug 49926: Add a --assume-kernel flag to modules-update. This | ||
| 1606 | requires a companion patch in module-init-tools-3.0-r2 to handle | ||
| 1607 | the same flag in generate-modprobe.conf; this dependency won't be | ||
| 1608 | handled in the baselayout ebuild since it only affects livecd | ||
| 1609 | building. | ||
| 1610 | |||
| 1611 | agriffis | 1.345 | 06 May 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1612 | |||
| 1613 | agriffis | 1.347 | In net.eth0, fix many instances of loops like "for ((i = 0; i < |
| 1614 | 100; i = i + 1))". The problem here is that the middle comparison | ||
| 1615 | is being interpreted as a bash conditional, which means that it's | ||
| 1616 | doing string comparison by default. It needs to be "i -lt 100" | ||
| 1617 | |||
| 1618 | agriffis | 1.346 | Fix bug 34827: net.eth0 breaks when localized because the ifconfig |
| 1619 | output changes. Wrap ifconfig in a function that overrides | ||
| 1620 | LC_ALL=C | ||
| 1621 | |||
| 1622 | Fix bug 48305: Provide a new network configuration variable | ||
| 1623 | ifconfig_fallback_eth0 which allows one to specify a fallback | ||
| 1624 | configuration in case DHCP fails. | ||
| 1625 | |||
| 1626 | agriffis | 1.345 | Fix bug 50246: Give root an invalid password ("*" in /etc/shadow) |
| 1627 | in the default baselayout. This prevents the first reboot after | ||
| 1628 | installation from having a blank password. | ||
| 1629 | |||
| 1630 | agriffis | 1.341 | 05 May 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1631 | |||
| 1632 | agriffis | 1.344 | Fix bug 48595: Make sure $(id -u) is zero (root user) when running |
| 1633 | init scripts to avoid a lot of error messages. | ||
| 1634 | |||
| 1635 | agriffis | 1.343 | Replace many lines of awk with two lines of grep in |
| 1636 | init.d/localmount | ||
| 1637 | agriffis | 1.342 | |
| 1638 | agriffis | 1.344 | Fix bug 44316: Use 0644 instead of 0640 for resolv.conf in net.ppp0 |
| 1639 | agriffis | 1.341 | |
| 1640 | agriffis | 1.340 | 03 May 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1641 | |||
| 1642 | Update to version 1.10.20 of Debian's start-stop-daemon (contained | ||
| 1643 | in dpkg at http://packages.debian.org/testing/base/dpkg). This | ||
| 1644 | fixes bug 22686 (start-stop-daemon in baselayout doesn't allow | ||
| 1645 | altered nicelevel). | ||
| 1646 | |||
| 1647 | agriffis | 1.339 | * rc-scripts 1.4.10 (25 Apr 2004) |
| 1648 | |||
| 1649 | agriffis | 1.338 | 25 Apr 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1650 | |||
| 1651 | Fix typos in sbin/rc: "try try mount" and "mount ... & >/dev/null" | ||
| 1652 | Also removed the errstr double-checking since the need for that is | ||
| 1653 | alleviated by these typo fixes. | ||
| 1654 | |||
| 1655 | agriffis | 1.335 | 23 Apr 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1656 | |||
| 1657 | agriffis | 1.336 | Fix bug 48629 (/sbin/rc fixups for udev) with patch from GregKH |
| 1658 | |||
| 1659 | agriffis | 1.337 | Fix bug 40987 (gentoo should be able to boot with an empty /dev) |
| 1660 | agriffis | 1.335 | with patch from Spanky. The patch avoids redirection to /dev/null |
| 1661 | when it doesn't exist; this was breaking /sbin/rc. | ||
| 1662 | |||
| 1663 | agriffis | 1.334 | * rc-scripts 1.4.9 (15 Apr 2004) |
| 1664 | |||
| 1665 | 15 Apr 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1666 | |||
| 1667 | Fix bug 47111 (severe depcache problems) with tons of help from | ||
| 1668 | dswhite42 and the rest of the crew in that bug. Thanks guys! | ||
| 1669 | |||
| 1670 | agriffis | 1.333 | * rc-scripts 1.4.8 (14 Apr 2004) |
| 1671 | |||
| 1672 | 14 Apr 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1673 | |||
| 1674 | Fix bug 47623 (error removing inet6 addresses) with patch provided | ||
| 1675 | by Vlad Yasevich. | ||
| 1676 | |||
| 1677 | agriffis | 1.332 | * rc-scripts 1.4.7 (12 Apr 2004) |
| 1678 | |||
| 1679 | 12 Apr 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1680 | |||
| 1681 | Fix bug 47218 (net.eth0 broken for vlans) with patch provided by | ||
| 1682 | Andy Dustman. Fix bug 47250 (depscan.sh fails to create | ||
| 1683 | agriffis | 1.618 | /var/lib/init.d/* directories) with patch from Terje Bergström |
| 1684 | agriffis | 1.332 | |
| 1685 | agriffis | 1.331 | * rc-scripts 1.4.6 (08 Apr 2004) |
| 1686 | |||
| 1687 | 08 Apr 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1688 | |||
| 1689 | Update patch from Gustavoz; -ln /bin/bash should have been -nl /bin/bash | ||
| 1690 | |||
| 1691 | agriffis | 1.330 | * rc-scripts 1.4.5 (08 Apr 2004) |
| 1692 | |||
| 1693 | 08 Apr 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1694 | |||
| 1695 | Patch init.d/checkroot to list / (root) only once in mtab; see bug 38360. | ||
| 1696 | Patch from Gustavoz to livecd-functions.sh to run bash instead of login on | ||
| 1697 | serial consoles, necessary due to scrambled root passwords. | ||
| 1698 | |||
| 1699 | * rc-scripts 1.4.4 (07 Apr 2004) | ||
| 1700 | agriffis | 1.329 | |
| 1701 | 07 Apr 2004; Aron Griffis <agriffis@gentoo.org>: | ||
| 1702 | |||
| 1703 | Patch from Gustavoz for Sparc console: Fetch LIVECD_CONSOLE from dmesg | ||
| 1704 | output. Also support 4800 baud correctly. | ||
| 1705 | |||
| 1706 | agriffis | 1.328 | 16 Mar 2004; Aron Griffis <agriffis@gentoo.org>: |
| 1707 | |||
| 1708 | The changes in this commit pertain primarily to | ||
| 1709 | http://bugs.gentoo.org/show_bug.cgi?id=19695 | ||
| 1710 | http://bugs.gentoo.org/show_bug.cgi?id=35736 | ||
| 1711 | |||
| 1712 | Specify routes as an array per interface, for example: | ||
| 1713 | routes_eth0=( | ||
| 1714 | "-net 10.1.0.0 netmask 255.255.0.0 gw 10.0.0.5" | ||
| 1715 | "-net 10.2.0.0 netmask 255.255.0.0 gw 10.0.0.6" | ||
| 1716 | "-host 10.3.0.1 dev eth0" | ||
| 1717 | ) | ||
| 1718 | |||
| 1719 | You can optionally use the gateway variable or just put the default route | ||
| 1720 | in the routes variable. The following two are REDUNDANT: | ||
| 1721 | |||
| 1722 | routes_eth0=( "default gw 10.0.0.5" ) | ||
| 1723 | gateway="eth0/10.0.0.5" | ||
| 1724 | |||
| 1725 | Old configuration variables in /etc/conf.d/net are fully supported and | ||
| 1726 | used transparently if ifconfig_eth0 is missing. In other words, this new | ||
| 1727 | script is fully backward-compatible. However you can get rid of | ||
| 1728 | iface_eth0, alias_eth0, broadcast_eth0 and netmask_eth0 if you want by | ||
| 1729 | using the new syntax: | ||
| 1730 | |||
| 1731 | ifconfig_eth0=( | ||
| 1732 | "10.0.0.6 broadcast 10.0.255.255 netmask 255.255.0.0" | ||
| 1733 | "192.168.1.1 netmask 255.255.255.0" | ||
| 1734 | "123.456.789.1" | ||
| 1735 | ) | ||
| 1736 | |||
| 1737 | Full backward compatibility so no danger to screwing up users relying on | ||
| 1738 | existing /etc/conf.d/net setup | ||
| 1739 | |||
| 1740 | NET_DEBUG can be set in the environment for copious debugging output | ||
| 1741 | |||
| 1742 | Deprecate [ ] in favor of [[ ]] which has fewer quoting issues and | ||
| 1743 | better functionality (and is even slightly faster) | ||
| 1744 | |||
| 1745 | Properly localize all variables, including variables returned by | ||
| 1746 | setup_vars | ||
| 1747 | |||
| 1748 | Allow full options for every ifconfig command, both base address and | ||
| 1749 | aliases via ifconfig_eth0, replacing the convoluted and less-functional | ||
| 1750 | iface_eth0, alias_eth0, broadcast_eth0, netmask_eth0 | ||
| 1751 | |||
| 1752 | Provide full support for static routes via routes_eth0 | ||
| 1753 | |||
| 1754 | Fix potential quoting problems in setup_vars by using better eval syntax | ||
| 1755 | instead of eval echo | ||
| 1756 | |||
| 1757 | Display IP addresses while configuring, both DHCP-retrieved and | ||
| 1758 | statically set addresses | ||
| 1759 | |||
| 1760 | Collapse redundant caching of $? since eend returns $? again | ||
| 1761 | |||
| 1762 | Report when keeping kernel configuration for an interface along with IP | ||
| 1763 | address gleaned | ||
| 1764 | |||
| 1765 | Don't reset the default gateway if it is already set correctly | ||
| 1766 | |||
| 1767 | Don't bind default gateway to particular interface when /sbin/route is | ||
| 1768 | called so that it can survive if there is more than one interface on the | ||
| 1769 | required subnet. (Old behavior can be obtained by setting | ||
| 1770 | routes_eth0="default gw 1.2.3.4 dev eth0" if you really want it) | ||
| 1771 | |||
| 1772 | Don't bomb if default gateway can't be set since that doesn't | ||
| 1773 | necessarily mean that the interface configuration is invalid. | ||
| 1774 | (Old behavior was completely broken, but commented section | ||
| 1775 | demonstrates how to do it right if necessary) | ||
| 1776 | |||
| 1777 | iface_stop no longer relies on configuration in /etc/conf.d/net AT ALL. | ||
| 1778 | This is very good because it means you can put new configuration in | ||
| 1779 | /etc/conf.d/net, then restart the interface and the old configuration will | ||
| 1780 | be properly shut down. | ||
| 1781 | |||
| 1782 | iface_stop reports when it is releasing the DHCP lease | ||
| 1783 | |||
| 1784 | azarah | 1.327 | * rc-scripts 1.4.3.13p1 (26 Feb 2004) |
| 1785 | |||
| 1786 | azarah | 1.324 | 26 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1787 | |||
| 1788 | Remove /etc/DIR_COLORS, as coreutils provides it now. | ||
| 1789 | |||
| 1790 | azarah | 1.325 | Add RC_DEVICE_TARBALL to /etc/conf.d/rc to control use of device tarball. |
| 1791 | Also modified /sbin/rc and /etc/init.d/halt.sh for this. | ||
| 1792 | |||
| 1793 | Start udevd if present. | ||
| 1794 | |||
| 1795 | azarah | 1.326 | Small fix to sbin/rc-services.sh related to mtime checking and 'net' |
| 1796 | virtual service - it had no mtime generated, so check_mtime() failed | ||
| 1797 | for it ... | ||
| 1798 | |||
| 1799 | azarah | 1.323 | 25 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1800 | |||
| 1801 | Update to enable checking of mtimes on rc-scripts, and auto running | ||
| 1802 | depscan.sh if needed. Also try to run depscan.sh when RC_GOT_DEPTREE_INFO | ||
| 1803 | is not set instead of just erroring. | ||
| 1804 | |||
| 1805 | azarah | 1.321 | 19 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1806 | |||
| 1807 | Fix irda type-o in /sbin/MAKEDEV, thanks to Tobias Sager <moixa@gmx.ch>. | ||
| 1808 | |||
| 1809 | azarah | 1.322 | Fix type-o in /etc/initrc, bug #41666 (Tom Vergote <bugzilla@tomvergote.be>). |
| 1810 | |||
| 1811 | azarah | 1.319 | 15 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1812 | |||
| 1813 | Add RC_TTY_NUMBER to /etc/conf.d/rc to configure how many tty devices | ||
| 1814 | are used in scripts such as consolefonts, numlock, etc. This should | ||
| 1815 | close bug #39863. | ||
| 1816 | |||
| 1817 | azarah | 1.320 | Fix type-o in /etc/init.d/consolefont, bug #40938, thanks to patch from |
| 1818 | Cory Tusar <ctusar@adelphia.net>. | ||
| 1819 | |||
| 1820 | azarah | 1.318 | 09 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1821 | |||
| 1822 | Add SELinux modifications to /sbin/runscript. This allows runscript to | ||
| 1823 | make sure it is running in the right domain. Patch done by | ||
| 1824 | Chris PeBenito <pebenito@gentoo.org>. | ||
| 1825 | |||
| 1826 | azarah | 1.317 | * rc-scripts 1.4.3.13 (08 Feb 2004) |
| 1827 | |||
| 1828 | azarah | 1.314 | 08 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1829 | |||
| 1830 | Fix wrong logic in /etc/init.d/halt.sh which did not umount all mounts | ||
| 1831 | _but_ /mnt/cdrom and /mnt/livecd. | ||
| 1832 | |||
| 1833 | azarah | 1.315 | Update /etc/init.d/consolefont to use newer kbd. Should also close |
| 1834 | bug #39864. | ||
| 1835 | |||
| 1836 | azarah | 1.316 | Fix /sbin/depscan.sh, /sbin/functions.sh and /sbin/rc to use mkdir rather |
| 1837 | than install, as newer versions of install is located in /usr/bin. This | ||
| 1838 | closes bug #39648. | ||
| 1839 | |||
| 1840 | azarah | 1.314 | 06 Feb 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1841 | azarah | 1.312 | |
| 1842 | Tweak livecd support changes and add some more to hopefully sort out | ||
| 1843 | last issues, with help from Brad House <brad_mssw@gentoo.org>. | ||
| 1844 | |||
| 1845 | azarah | 1.313 | Add code to generate /dev/fd, /dev/std* and /dev/core to /sbin/rc, |
| 1846 | bug #37349. | ||
| 1847 | |||
| 1848 | azarah | 1.311 | * rc-scripts 1.4.3.12p3 (21 Jan 2004) |
| 1849 | |||
| 1850 | azarah | 1.310 | 19 Jan 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1851 | |||
| 1852 | Add /sbin/livecd-functions.sh from Brad House <brad_mssw@gentoo.org> | ||
| 1853 | for livecd support. Add bits to /sbin/rc to support it. | ||
| 1854 | |||
| 1855 | azarah | 1.309 | 06 Jan 2004; Martin Schlemmer <azarah@gentoo.org>: |
| 1856 | |||
| 1857 | Fix type-o in /etc/init.d/checkfs, bug #37113. | ||
| 1858 | |||
| 1859 | azarah | 1.308 | 29 Dec 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1860 | |||
| 1861 | Update /sbin/depscan.sh, /sbin/env-update.sh, src/awk/cachedepends.awk, | ||
| 1862 | src/awk/gendepends.awk and src/awk/genenviron.awk to use ENVIRON rather | ||
| 1863 | then gawk -v. Also add some tests to see if we got the environment | ||
| 1864 | variables. | ||
| 1865 | |||
| 1866 | azarah | 1.307 | 28 Dec 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1867 | |||
| 1868 | Fix /sbin/rc to mount /dev/pts with gid=5 and mode=0620, bug #36088. | ||
| 1869 | |||
| 1870 | azarah | 1.306 | * rc-scripts 1.4.3.12p2 (27 Dec 2003) |
| 1871 | |||
| 1872 | azarah | 1.305 | 26 Dec 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1873 | |||
| 1874 | Update code to generate /dev from /sys. Add UDEV_NO_SLEEP=1 for | ||
| 1875 | hack to not make udev sleep - its not needed as these entries | ||
| 1876 | are already present, and not a hotplug event. | ||
| 1877 | |||
| 1878 | Update /etc/init.d/{consolefont,numlock} to work with udev managed | ||
| 1879 | /dev that have devfs layout. | ||
| 1880 | |||
| 1881 | azarah | 1.304 | 14 Dec 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1882 | |||
| 1883 | Fix type-o in /sbin/rc, bug #34837. | ||
| 1884 | |||
| 1885 | azarah | 1.303 | * rc-scripts 1.4.3.12p1 (26 Nov 2003) |
| 1886 | |||
| 1887 | azarah | 1.299 | 26 Nov 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1888 | |||
| 1889 | Fix /etc/init.d/halt.sh to reset pam_console permissions, else | ||
| 1890 | the next bootup might be done with some non-root nodes which cause | ||
| 1891 | some odd issues. | ||
| 1892 | |||
| 1893 | azarah | 1.300 | Add code to generate /dev from sysfs entries - not much it currently |
| 1894 | support but block/tty devices, but it is a start for when we have | ||
| 1895 | full sysfs support in all drivers. | ||
| 1896 | |||
| 1897 | azarah | 1.301 | Revert carrier detection check, as there is currently too many |
| 1898 | issues with it, bug #33272. | ||
| 1899 | |||
| 1900 | azarah | 1.302 | Make sure we mount already mounted mount (done in /sbin/rc) with |
| 1901 | correct permissions, etc, bug #33764. Modified /etc/init.d/checkroot | ||
| 1902 | for this. | ||
| 1903 | |||
| 1904 | azarah | 1.298 | 16 Nov 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1905 | |||
| 1906 | Fix carrier detection - we need to do a 'ifconfig $IFACE up' else | ||
| 1907 | some drivers do not set the IFF_RUNNING bit, bug #33272, thanks to | ||
| 1908 | Jason Rhinelander <jason-gentoo@gossamer-threads.com> for the fix. | ||
| 1909 | |||
| 1910 | azarah | 1.297 | 15 Nov 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1911 | |||
| 1912 | Add a warning to cachedepends.awk if a rc-script's name ends in | ||
| 1913 | '.sh', bug #33134. Add better error checking to /sbin/depscan.sh. | ||
| 1914 | |||
| 1915 | Fix /etc/init.d/halt.sh to not try and remount virtual devices, | ||
| 1916 | also do a few cleanups. Closes bug #33271. | ||
| 1917 | |||
| 1918 | azarah | 1.296 | * rc-scripts 1.4.3.12 (11 Nov 2003) |
| 1919 | |||
| 1920 | azarah | 1.295 | 11 Nov 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1921 | |||
| 1922 | Add carrier detection to /etc/init.d/net.eth0 closing bug #25480; | ||
| 1923 | patch by Jordan Ritter <jpr5+gentoo@darkridge.com>. | ||
| 1924 | azarah | 1.296 | |
| 1925 | Add extra checks for critical directories to /sbin/rc. | ||
| 1926 | azarah | 1.295 | |
| 1927 | azarah | 1.294 | 04 Nov 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1928 | |||
| 1929 | Update /bin/rc-status giving a working '-u' parameter, bug #32417. | ||
| 1930 | Fix by Michael Frysinger <vapier@gentoo.org>. | ||
| 1931 | |||
| 1932 | azarah | 1.293 | 31 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1933 | |||
| 1934 | Add support for --tty switch added to setfont and remove consolechars | ||
| 1935 | support; modified /etc/init.d/consolefont for this. Also remove | ||
| 1936 | consoletools support from /etc/init.d/keymaps. | ||
| 1937 | |||
| 1938 | azarah | 1.290 | 29 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1939 | |||
| 1940 | We should still use /sbin/udev as hotplug agent if /sbin/hotplug do | ||
| 1941 | not exist. Updated /sbin/rc for this. | ||
| 1942 | |||
| 1943 | azarah | 1.291 | Add a fix to /etc/init.d/keymaps for bug #32111 (we should not have |
| 1944 | '-u' in the call to loadkeys when using unicode). | ||
| 1945 | |||
| 1946 | azarah | 1.292 | We should not use '-' in variable names for bash, bug #31184, thanks |
| 1947 | to Andreas Simon <yuipx@gmx.net>. Updated /sbin/MAKEDEV. | ||
| 1948 | |||
| 1949 | azarah | 1.289 | 27 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1950 | |||
| 1951 | Fix return code checking of fsck in /etc/init.d/checkfs, bug #31349. | ||
| 1952 | |||
| 1953 | azarah | 1.282 | 26 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1954 | |||
| 1955 | The unmount stuff in /etc/init.d/halt.sh was flawed, in the fact that | ||
| 1956 | it called 'umount -t no<insert_fs_here>', which resulted in /proc, etc | ||
| 1957 | unmounted anyhow. Change it to remount the last filesystems readonly | ||
| 1958 | without trying to unmount any. This fixes a few cases where reboot | ||
| 1959 | would halt due to unmounted /proc, etc. | ||
| 1960 | |||
| 1961 | azarah | 1.283 | This change set fixes two things: |
| 1962 | 1) In exporting all functions/variables in functions.sh, rc-services.sh | ||
| 1963 | and rc-daemon.sh, we created an overly large environment, and also | ||
| 1964 | broke stuff like glftpd. Do not do this, and hope whatever caused | ||
| 1965 | the issues previously is fixed in the meantime. This should close | ||
| 1966 | bugs #25754 and #31794. | ||
| 1967 | 2) gendepend.awk used to generate deptree with functions called | ||
| 1968 | depinfo_<scriptname> which set appropriate variables when called. | ||
| 1969 | This broke if the scriptname contained characters that is not valid | ||
| 1970 | for bash variable names. Changed things to use an array fixing this. | ||
| 1971 | This closes bug #24092. | ||
| 1972 | |||
| 1973 | azarah | 1.284 | Change /sbin/rc again to not set the hotplug agent to /sbin/udev, as |
| 1974 | /sbin/hotplug will call udev as well. | ||
| 1975 | |||
| 1976 | azarah | 1.285 | Fix a logic error in /lib/rcscripts/sh/rc-services.sh that cause the |
| 1977 | get_dep_info() function to skip the last entry in the RC_DEPEND_TREE | ||
| 1978 | azarah | 1.288 | array (in my case 'net'). |
| 1979 | azarah | 1.285 | |
| 1980 | azarah | 1.286 | We did not handle the 'net' dependency properly in valid_iuse() and |
| 1981 | valid_iafter(). Fix this in /lib/rcscripts/sh/rc-services.sh, closing | ||
| 1982 | bugs #30327 and #31950. | ||
| 1983 | |||
| 1984 | azarah | 1.287 | Change an occurance of /etc/modutils in modules-update.8 to |
| 1985 | /etc/modules.d/ closing bug #31171. | ||
| 1986 | |||
| 1987 | azarah | 1.280 | 19 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1988 | |||
| 1989 | More bootsplash fixes, bug #21019 (comment #21). | ||
| 1990 | |||
| 1991 | azarah | 1.281 | Remove the killall5 stuff from /etc/init.d/halt.sh, as it messes with |
| 1992 | bootsplash. Add support to kill processes still using non-critical | ||
| 1993 | mounts with fuser though. | ||
| 1994 | |||
| 1995 | azarah | 1.278 | 17 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 1996 | |||
| 1997 | Bootsplash fixes from Michael Aichler <micha@aichler.net>, (comment #15 | ||
| 1998 | and #16 from bug #21019). | ||
| 1999 | |||
| 2000 | Bootsplash coded did not play nice with boot profiles, so I fixed that | ||
| 2001 | as well. Some other style tweaks. | ||
| 2002 | |||
| 2003 | azarah | 1.279 | Fix /sbin/MAKEDEV to use 'user:group' form, and not depriciated '.'. |
| 2004 | Also changed the permissions on tty's, ibcs and scanner devices | ||
| 2005 | to 0660. | ||
| 2006 | |||
| 2007 | azarah | 1.277 | * rc-scripts 1.4.3.11p2 (14 Sep 2003) |
| 2008 | azarah | 1.276 | |
| 2009 | azarah | 1.277 | 14 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2010 | |||
| 2011 | Revert previous changes, and substitute it for the bootsplash patches | ||
| 2012 | from Michael Aichler <micha@aichler.net>, bug #21019. His www pages | ||
| 2013 | can be reached at: | ||
| 2014 | |||
| 2015 | http://www.aichler.net/gentoo/bootsplash/ | ||
| 2016 | |||
| 2017 | I should note that the bootsplash stuff is not 100% tested. | ||
| 2018 | |||
| 2019 | |||
| 2020 | * rc-scripts 1.4.3.11p1 (14 Sep 2003) | ||
| 2021 | |||
| 2022 | 14 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2023 | azarah | 1.275 | |
| 2024 | Initial bootsplash patch as from LiveCD's. | ||
| 2025 | |||
| 2026 | Add more tty's to /etc/init.d/numlock, bug #28252. | ||
| 2027 | |||
| 2028 | azarah | 1.274 | * rc-scripts 1.4.3.11 (14 Sep 2003) |
| 2029 | |||
| 2030 | 14 Oct 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2031 | azarah | 1.268 | |
| 2032 | Add initial udev support. Modified /sbin/rc and /etc/init.d/halt.sh. | ||
| 2033 | azarah | 1.274 | Resolves bug #27527. |
| 2034 | azarah | 1.268 | |
| 2035 | Add squid to /etc/services, bug #30995. Other cleanups from rac. | ||
| 2036 | |||
| 2037 | Add patch from Kumba <kumba@gentoo.org> to MAKEDEV to not allow | ||
| 2038 | running while pwd is root (/). | ||
| 2039 | |||
| 2040 | azarah | 1.269 | Add 'after hotplug' to /etc/init.d/consolefont, bug #30856. |
| 2041 | |||
| 2042 | azarah | 1.270 | Add entry for floppy in /etc/fstab, bug #30574. |
| 2043 | |||
| 2044 | azarah | 1.271 | Remove changing group of /tmp/.{X,ICE}-unix, as it it not needed, |
| 2045 | bug #28861. | ||
| 2046 | |||
| 2047 | azarah | 1.272 | Apply a patch from Mike Frysinger <vapier@gentoo.org> for rc-status. |
| 2048 | It now will work with runlevels named with any characters (other than | ||
| 2049 | ones found in default bash IFS). It also adds a few sanity/error | ||
| 2050 | checks, bug #26432. | ||
| 2051 | |||
| 2052 | azarah | 1.273 | Change /etc/inputrc to have PageUp/PageDown search through bash |
| 2053 | history again, bug #26036. | ||
| 2054 | |||
| 2055 | azarah | 1.267 | 14 Sep 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2056 | |||
| 2057 | Change update-modules to modules-update in manpage, bug #28101. | ||
| 2058 | |||
| 2059 | azarah | 1.266 | * rc-scripts 1.4.3.10p1 (08 Sep 2003) |
| 2060 | |||
| 2061 | 08 Sep 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2062 | |||
| 2063 | Change the '-k' switch to dhcpcd to '-z' in /etc/init.d/net.eth0. | ||
| 2064 | azarah | 1.265 | |
| 2065 | azarah | 1.264 | 12 Aug 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2066 | |||
| 2067 | Add missing 'local x' to filter_environ() (bug #26429), thanks to | ||
| 2068 | Mark Wagner <mark@lanfear.net>. Modified rc-services.sh for this. | ||
| 2069 | |||
| 2070 | azarah | 1.262 | 11 Aug 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2071 | |||
| 2072 | Modify /etc/init.d/modules not to print the autoloading stuff if | ||
| 2073 | no modules should be loaded (resolving bug #26288), per request from | ||
| 2074 | Michael Frysinger <vapier@gentoo.org>. | ||
| 2075 | azarah | 1.263 | |
| 2076 | Fix get_bootparam() in /sbin/functions.sh to check for existance of | ||
| 2077 | the /proc/cmdline proc entry. | ||
| 2078 | azarah | 1.262 | |
| 2079 | azarah | 1.259 | 10 Aug 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2080 | |||
| 2081 | Modify /etc/init.d/halt.sh to first kill, and then deactivate swap on | ||
| 2082 | request of Luke-Jr <luke-jr@gentoo.org>. It should be ok now, as the | ||
| 2083 | whole way of devfs handling changed long ago already. | ||
| 2084 | |||
| 2085 | azarah | 1.260 | Fix /etc/init.d/halt.sh to unmount the mount point and not the device. |
| 2086 | Also change it to 'mount -d' to detach the loop device. Patch by | ||
| 2087 | Kalin KOZHUHAROV <kalin@ThinRope.net>, bug #26256. | ||
| 2088 | |||
| 2089 | azarah | 1.261 | Fix /etc/init.d/consolefont to not error out if CONSOLEFONT in rc.conf |
| 2090 | is not set, bug #26278 (noted by Michael Frysinger <vapier@gentoo.org>). | ||
| 2091 | |||
| 2092 | azarah | 1.257 | * rc-scripts 1.4.3.10 (04 Aug 2003) |
| 2093 | |||
| 2094 | azarah | 1.253 | 04 Aug 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2095 | |||
| 2096 | Add /bin/rc-status and 'show' support to /sbin/rc-update (long overdue), | ||
| 2097 | bug #4222, thanks to Sean E Russell <ser@germane-software.com>, | ||
| 2098 | Michael Frysinger <vapier@gentoo.org> (/bin/rc-status) and for the 'show' | ||
| 2099 | stuff to /sbin/rc-update, Max Kalika <max@gentoo.org>. | ||
| 2100 | |||
| 2101 | Fixed modules-update to only do the /etc/modprobe.conf generation if we | ||
| 2102 | are actually running a 2.5+ kernel. | ||
| 2103 | |||
| 2104 | azarah | 1.254 | Add pop3 entries to /etc/services, bug #25501. |
| 2105 | |||
| 2106 | azarah | 1.255 | Add a switch for devfsd startup to /etc/conf.d/rc, fix /sbin/rc to check |
| 2107 | RC_DEVFSD_STARTUP. Closes bug #24361, thanks to patches from | ||
| 2108 | Kurt V. Hindenburg <khindenburg@cherrynebula.net>. | ||
| 2109 | |||
| 2110 | azarah | 1.256 | Add LVM2 support thanks to Max Kalika <max@gentoo.org> (bug #21908). |
| 2111 | azarah | 1.257 | |
| 2112 | Add IPV6 versions of localhost and co in /etc/hosts, bug #25859. | ||
| 2113 | azarah | 1.256 | |
| 2114 | azarah | 1.258 | Fix type-o in /sbin/rc-update, bug #25854. |
| 2115 | |||
| 2116 | azarah | 1.252 | 29 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2117 | |||
| 2118 | Tweak /etc/init.d/check{root,fs} to set retval after each fsck call, | ||
| 2119 | and not the whole block. Tweak check checkroot to reboot if need be | ||
| 2120 | (This is with sufficient warning and message). Tweak checkfs to not | ||
| 2121 | drop to a sulogin if return code 2 or 3 is given - as we did not | ||
| 2122 | azarah | 1.258 | mount the filesystems yet, we should not need to reboot ... bug #25398. |
| 2123 | azarah | 1.252 | |
| 2124 | Add '-T' option to fsck (/etc/init.d/check{root,fs} - requested by | ||
| 2125 | Michael Frysinger <vapier@gentoo.org>. | ||
| 2126 | |||
| 2127 | azarah | 1.249 | 28 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2128 | |||
| 2129 | Rework changes for the Adelie project to support boot config profiles | ||
| 2130 | better. Added support for /etc/runlevels/LEVEL/.fake to specify which | ||
| 2131 | runlevels should be marked started or stopped without executing the | ||
| 2132 | script. Renamed the /etc/runlevels/LEVEL/critical to ".critical" for | ||
| 2133 | more uniformity. Modified /sbin/rc, /sbin/functions.sh, /sbin/runscript.sh | ||
| 2134 | for this. | ||
| 2135 | |||
| 2136 | Add better support for services that provide the "logger" virtual. We | ||
| 2137 | should really start the logger earlier, and stop it as late as possible. | ||
| 2138 | Modified /sbin/rc, /lib/rcscripts/sh/rc-services.sh and gendepends.awk | ||
| 2139 | for this. | ||
| 2140 | |||
| 2141 | azarah | 1.252 | Fix .../boot/... paths hardcoded in /lib/rcscripts/sh/rc-services.sh, |
| 2142 | thanks to Jean-Francois Richard <jean-francois@richard.name>. | ||
| 2143 | azarah | 1.250 | |
| 2144 | azarah | 1.252 | Replace the Suse /etc/inputrc with a non copyrighted one, bug #24918. |
| 2145 | azarah | 1.251 | |
| 2146 | azarah | 1.248 | 23 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2147 | |||
| 2148 | From Jean-Francois Richard <jean-francois@richard.name> and | ||
| 2149 | Olivier Crete <tester@gentoo.org> from the Adelie project: | ||
| 2150 | |||
| 2151 | The last four patches are the "adaptation" of our previous patches to | ||
| 2152 | the new "no-tmpfs" init system in Gentoo. Since we were using quite | ||
| 2153 | different scripts for the boot runlevel (no "checkroot" for example) and | ||
| 2154 | that the new system hardcodes some of the boot services, we had to find | ||
| 2155 | a simple yet elegant solution. | ||
| 2156 | |||
| 2157 | We chose to make init scripts read "/etc/runlevels/LEVEL/critical" to | ||
| 2158 | know what are the boot runlevel services. If this file is not present, | ||
| 2159 | it uses the Gentoo hardcoded defaults. | ||
| 2160 | |||
| 2161 | This touches /sbin/rc, /sbin/functions.sh, /sbin/runscript.sh and | ||
| 2162 | /etc/init.d/halt.sh. | ||
| 2163 | |||
| 2164 | azarah | 1.249 | I just changed the behaviour of 'softlevel' kernel command line argument |
| 2165 | to not only add a suffix and some other cleanups. | ||
| 2166 | azarah | 1.248 | |
| 2167 | azarah | 1.249 | Add support for irqbalance. |
| 2168 | azarah | 1.248 | |
| 2169 | azarah | 1.246 | 22 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2170 | |||
| 2171 | Fix the /dev/root entry in /etc/mtab, bug #24916. | ||
| 2172 | |||
| 2173 | azarah | 1.247 | Add EVMS2 support, thanks to Mike Javorski <mike_javorski@bigfoot.com>, |
| 2174 | bug #24064. | ||
| 2175 | |||
| 2176 | azarah | 1.244 | * rc-scripts 1.4.3.9 (17 Jul 2003) |
| 2177 | |||
| 2178 | azarah | 1.239 | 17 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2179 | |||
| 2180 | Add vlan support to /etc/init.d/net.eth0, bug #15588, thanks to | ||
| 2181 | azarah | 1.249 | Andy Dustman <andy-gentoo.54e552@dustman.net>. |
| 2182 | azarah | 1.239 | |
| 2183 | azarah | 1.240 | Add 'TERM=Eterm' to /etc/DIR_COLORS, bug #23423. |
| 2184 | |||
| 2185 | azarah | 1.241 | Add mdadm support to /etc/init.d/checkfs, bug #23437, many thanks |
| 2186 | azarah | 1.249 | to Wes Kurdziolek <wkurdzio@vtluug.org>. |
| 2187 | azarah | 1.241 | |
| 2188 | azarah | 1.242 | Rather use 'uname -r' to get kernel version, as else we need sysctl. |
| 2189 | This closes bug #23923, modified /etc/init.d/modules. | ||
| 2190 | |||
| 2191 | azarah | 1.249 | Fix a type-o in /etc/fstab, bug #23308. |
| 2192 | azarah | 1.244 | |
| 2193 | Add support for the new 'O' agetty option to display the DNS domainname | ||
| 2194 | azarah | 1.249 | in the issue file thanks to Marius Mauch <genone@genone.de>, bug #22275. |
| 2195 | Updated /etc/issue and /etc/issue.logo for this. | ||
| 2196 | azarah | 1.243 | |
| 2197 | azarah | 1.235 | 16 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2198 | |||
| 2199 | Add aliases for add/del to /sbin/rc-update closing bug #24317, thanks | ||
| 2200 | to Antonio Dolcetta <zagarna@yahoo.com>. | ||
| 2201 | |||
| 2202 | Fix /etc/init.d/net.eth0 to not set rp_filter if already set via | ||
| 2203 | /etc/sysctl.conf, bug #24235 - thanks jochen <jochen.eisinger@gmx.de>. | ||
| 2204 | |||
| 2205 | azarah | 1.236 | Fix /sbin/runscript.sh and /lib/rcscripts/awk/cachedepend.awk to work |
| 2206 | azarah | 1.249 | with symlinks in /etc/init.d/, closing bug #24228. |
| 2207 | azarah | 1.236 | |
| 2208 | azarah | 1.249 | Fix /etc/init.d/clock to work with UML, closing bug #24225 thanks to |
| 2209 | John Mylchreest <johnm@gentoo.org>. | ||
| 2210 | azarah | 1.236 | |
| 2211 | azarah | 1.237 | Fix hardcoded color escape sequence in /sbin/rc, closing bug #24109, |
| 2212 | azarah | 1.249 | thanks to splite <splite-gentoo@sigint.cs.purdue.edu>. |
| 2213 | azarah | 1.237 | |
| 2214 | Fix /sbin/functions.sh to disable color printing if NOCOLOR is set to | ||
| 2215 | azarah | 1.249 | "true" in /etc/make.conf, closing bug #24107. |
| 2216 | azarah | 1.237 | |
| 2217 | azarah | 1.249 | Fix /etc/init.d/keymaps to be more non-x86 friendly, and also allow |
| 2218 | more keymaps to be specified in /etc/rc.conf, bug #24084. | ||
| 2219 | azarah | 1.238 | |
| 2220 | azarah | 1.234 | 15 Jul 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2221 | |||
| 2222 | Add /bin/csh to /etc/shells. | ||
| 2223 | |||
| 2224 | Add new protocols to /etc/services, thanks Rajiv Aaron Manglani | ||
| 2225 | <rajiv@gentoo.org>. | ||
| 2226 | |||
| 2227 | azarah | 1.233 | 23 Jun 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2228 | |||
| 2229 | Cleanups for bug #21438 from bug #22637, thanks to | ||
| 2230 | Christian Strauf <christian.strauf@gmx.de> and Ian Abbott <ian@abbott.org>. | ||
| 2231 | |||
| 2232 | azarah | 1.232 | 22 Jun 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2233 | |||
| 2234 | Really commit fix for bug #21438 to CVS. | ||
| 2235 | |||
| 2236 | azarah | 1.229 | 21 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2237 | |||
| 2238 | Call /proc mount with explicit options to fix issues where user | ||
| 2239 | have 'bind' mounts for /proc in fstab as well, bug #21068. | ||
| 2240 | |||
| 2241 | azarah | 1.231 | Fix /etc/init.d/bootmisc to check for /sbin/env-update.sh, bug #21384, |
| 2242 | reported by Gunnlaugur Thor Briem <gthb@hi.is>. | ||
| 2243 | |||
| 2244 | Add 'before bootmisc' to /etc/init.d/domainname, as we need to start | ||
| 2245 | it before 'env-update.sh' gets run by /etc/init.d/bootmisc. | ||
| 2246 | azarah | 1.230 | |
| 2247 | azarah | 1.228 | * rc-scripts 1.4.3.8p1 (21 May 2003) |
| 2248 | |||
| 2249 | 21 May 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2250 | |||
| 2251 | Last fix I did not use the modified 'myservice', but used $1 again, | ||
| 2252 | causing the network dependencies to bork. I did not notice this | ||
| 2253 | as I have net.eth0 in default runlevel. | ||
| 2254 | |||
| 2255 | azarah | 1.227 | * rc-scripts 1.4.3.8 (20 May 2003) |
| 2256 | |||
| 2257 | 20 May 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2258 | |||
| 2259 | A '-' in a bash variable is not valid as well. Fix gendepend.awk and | ||
| 2260 | rc-service.sh to handle this, thanks to YAMAKURA Makoto | ||
| 2261 | <makoto@dsb.club.ne.jp>. | ||
| 2262 | |||
| 2263 | Move /etc/issue to /etc/issue.logo, and have /etc/issue only print info | ||
| 2264 | about the host it is running on. | ||
| 2265 | |||
| 2266 | azarah | 1.226 | 18 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2267 | |||
| 2268 | Do not let devfsd handle /dev/log's permission management, as it breaks | ||
| 2269 | azarah | 1.227 | selinux. Modified /etc/devfsd.conf, changes submited by Chris PeBenito |
| 2270 | <pebenito@gentoo.org>. | ||
| 2271 | azarah | 1.226 | |
| 2272 | azarah | 1.227 | Fix type-o in /etc/init.d/net.ppp0, and add local ip-up/ip-down support. |
| 2273 | azarah | 1.226 | |
| 2274 | azarah | 1.225 | 14 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2275 | |||
| 2276 | We should not export the RC_GOT_* variables, as it breaks on some systems, | ||
| 2277 | azarah | 1.227 | thanks to J?rg Gollnick <gentoo-bugs@wurzelbenutzer.de>, bug #20851. |
| 2278 | azarah | 1.225 | |
| 2279 | azarah | 1.227 | From C. Brewer <killian@gentoo.org>: |
| 2280 | - Add hide-password to the connect cmd-line of /etc/init.d/net.ppp0, which is | ||
| 2281 | suppose to be default, but why take chances? | ||
| 2282 | - Also, echoing chmod 640 in the resolv.conf two-step at the end to solve the | ||
| 2283 | kppp complaint. | ||
| 2284 | azarah | 1.225 | |
| 2285 | 13 May 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2286 | |||
| 2287 | For the network functions, the dependency code tried to create a funcion | ||
| 2288 | azarah | 1.227 | with a '.' in the name, causing the network rc-scripts to not have any |
| 2289 | dependencies. This should fix bug #20849 's order issue, thanks to | ||
| 2290 | YAMAKURA Makoto <makoto@dsb.club.ne.jp> for noticing. | ||
| 2291 | azarah | 1.225 | |
| 2292 | azarah | 1.227 | Fix query_{before,after} to also check 'net' if 'service2' is a network |
| 2293 | service. | ||
| 2294 | azarah | 1.225 | |
| 2295 | azarah | 1.224 | 12 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2296 | |||
| 2297 | More cleanups: | ||
| 2298 | azarah | 1.227 | - Move the broken stuff from symlinks to a DB entry in ${svcdir}/deptree. |
| 2299 | Updated /sbin/runscript.sh, /sbin/rc-services.sh and gendepend.awk for | ||
| 2300 | this. | ||
| 2301 | - Add functions for more common tasks in /sbin/runscript.sh to | ||
| 2302 | /sbin/rc-services.sh. | ||
| 2303 | - Move 'consoletype' to /sbin. | ||
| 2304 | - Rename /sbin/rc-envupdate.sh to /sbin/env-update.sh; updated | ||
| 2305 | /etc/init.d/bootmisc for this. | ||
| 2306 | - Move rc-services.sh, rc-daemon.sh and rc-help.sh to /lib/rcscripts/sh. | ||
| 2307 | - Improve detection of circular depends ... modified gendepend.awk for this. | ||
| 2308 | azarah | 1.224 | |
| 2309 | azarah | 1.223 | * rc-scripts 1.4.3.7 (11 May 2003) |
| 2310 | |||
| 2311 | 11 May 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2312 | |||
| 2313 | Too many things to remember, so here is changes of note: | ||
| 2314 | - More changes to gendepend.awk. This basically modifies it to not use | ||
| 2315 | symlinks in $svcdir/{need,use,before,after,provide} anymore, but rather | ||
| 2316 | create a file that can be sourced. Seems to speedup things nicely. | ||
| 2317 | - Add /sbin/rc-services.sh. This is basically a module to get dependency | ||
| 2318 | info from the new $svcdir/deptree, and some other new service functions. | ||
| 2319 | - Modify the whole works to *only* source all needed files once. This | ||
| 2320 | includes /sbin/{functions.sh,rc-services.sh,rc-daemon.sh}. Also | ||
| 2321 | rc-services.sh will only source $svcdir/deptree once. /sbin/runscript.sh | ||
| 2322 | is sourced more than once (actually each time a service is started or | ||
| 2323 | stopped, but is is cut down much). Also seems to speed things up again. | ||
| 2324 | - Fix a long outstanding bug in gendepend.awk that caused the 'net' | ||
| 2325 | dependency to not be actually used in shutdown, causing the services | ||
| 2326 | needing it to be stoped before net.* services. | ||
| 2327 | - Add the RC_PARALLEL_STARTUP variable, with schedule_service_startup() to | ||
| 2328 | /sbin/rc-services.sh and /etc/conf.d/rc. This is experimental parallel | ||
| 2329 | startup of services, and seems to work nicely. Only issues to date is | ||
| 2330 | that printing of messages is not synced, and a race very intermittantly | ||
| 2331 | that causes a service to be started when it was already scheduled. | ||
| 2332 | - Add a new dependency type 'parallel' that can be used to control if a | ||
| 2333 | service can be started in paralled or not. Possible arguments is "yes" | ||
| 2334 | or "no"; if it is not present, it is considered as "yes": | ||
| 2335 | |||
| 2336 | depend() { | ||
| 2337 | parallel yes|no | ||
| 2338 | } | ||
| 2339 | |||
| 2340 | Modified cachedepend.awk, gendepend.awk and /sbin/rc-services.sh. | ||
| 2341 | - Fix the 'single' runlevel to actually work properly, and without a | ||
| 2342 | /etc/runlevels/single directory. | ||
| 2343 | - Remove the BOOT variable, and update /sbin/rc to set SOFTLEVEL properly. | ||
| 2344 | Fix /etc/init.d/{checkroot,bootmisc} to use SOFTLEVEL instead of BOOT. | ||
| 2345 | azarah | 1.222 | |
| 2346 | azarah | 1.221 | 08 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2347 | |||
| 2348 | Major rework of /lib/rcscript/awk/gendepend.awk, cleaning it up nicely, | ||
| 2349 | azarah | 1.223 | and adding more sanity checks. |
| 2350 | azarah | 1.221 | |
| 2351 | azarah | 1.220 | 04 May 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2352 | |||
| 2353 | Revert /etc/init.d/hostname the way it was, as it should be the user's | ||
| 2354 | choice if he want to have a FQDN in there or not, bug #14946. | ||
| 2355 | |||
| 2356 | Add /etc/init.d/domainname for those that want to use it. | ||
| 2357 | |||
| 2358 | azarah | 1.218 | 29 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2359 | |||
| 2360 | azarah | 1.219 | Change the root check back the way it was, else it breaks with non bash |
| 2361 | azarah | 1.223 | shells; modified /etc/profile. |
| 2362 | azarah | 1.219 | |
| 2363 | 29 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2364 | |||
| 2365 | azarah | 1.218 | Change test in /etc/profile for root to '[ "$EUID" -eq 0 ]', bug #20140. |
| 2366 | |||
| 2367 | azarah | 1.217 | 27 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2368 | |||
| 2369 | azarah | 1.218 | Add various patches from Rachel Holmes <rach@gmx.net>: |
| 2370 | azarah | 1.217 | |
| 2371 | Dropped use of 'cat' in bash scripts, '$(<$file)' is there for that | ||
| 2372 | azarah | 1.218 | purpose. Modified: |
| 2373 | azarah | 1.217 | |
| 2374 | /etc/init.d/net.ppp0 | ||
| 2375 | /etc/init.d/nscd | ||
| 2376 | /sbin/functions.sh | ||
| 2377 | /sbin/rc | ||
| 2378 | /sbin/rc-daemon.sh | ||
| 2379 | /sbin/rc-envupdate.sh.bash | ||
| 2380 | /sbin/runscript.sh | ||
| 2381 | |||
| 2382 | Exchanged some gratuitous use of awk for grep. Awk is a little resource | ||
| 2383 | hungry just for a simple test. (I [azarah] did not apply the changes to | ||
| 2384 | azarah | 1.218 | tests for 'devfs', as having 'usbdevfs' in the equation will break |
| 2385 | things). Modified /sbin/rc for this. | ||
| 2386 | azarah | 1.217 | |
| 2387 | Gentoo enforces having /proc, so uname -r is a little redundant when the | ||
| 2388 | information is available without an external command. Modified: | ||
| 2389 | |||
| 2390 | /etc/init.d/modules | ||
| 2391 | /etc/init.d/serial | ||
| 2392 | /sbin/functions.sh | ||
| 2393 | /sbin/modules-update | ||
| 2394 | |||
| 2395 | Changed 'id -u' commands to use $EUID in bash executed scripts, same | ||
| 2396 | azarah | 1.218 | result no extra command. Modified: |
| 2397 | azarah | 1.217 | |
| 2398 | /sbin/rc-envupdate.sh | ||
| 2399 | /sbin/rc-envupdate.sh.bash | ||
| 2400 | /sbin/rc-update | ||
| 2401 | |||
| 2402 | Removed all the cat sections, and the separate echo sections. The output | ||
| 2403 | azarah | 1.218 | is _exactly_ the same, minus some spare spaces that have been removed. |
| 2404 | Fourfold speed increase in the (granted flimsy) tests I have done. | ||
| 2405 | Modified /sbin/rc-help.sh for this. | ||
| 2406 | azarah | 1.217 | |
| 2407 | Final remaining 'cat' commands removed, in favour of using bash's internal | ||
| 2408 | '$(< )' or 'echo'. Use of echo leads the way to future support for bash's | ||
| 2409 | i18n anyway. Modified: | ||
| 2410 | |||
| 2411 | /sbin/rc | ||
| 2412 | /sbin/rc-envupdate.sh | ||
| 2413 | /sbin/rc-envupdate.sh.bash | ||
| 2414 | |||
| 2415 | |||
| 2416 | |||
| 2417 | azarah | 1.216 | * rc-scripts 1.4.3.6 (27 Apr 2003) |
| 2418 | |||
| 2419 | azarah | 1.215 | 27 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2420 | |||
| 2421 | Add a 'save' function /etc/init.d/clock, bug #19685. | ||
| 2422 | |||
| 2423 | azarah | 1.216 | Add a slocate group to /etc/group, bug #19604. |
| 2424 | |||
| 2425 | Do not stop a network service if we do not reboot on runlevel change, | ||
| 2426 | as it could have been started by the user or hotplug. This should | ||
| 2427 | address bug #12763; modified /sbin/rc for this. | ||
| 2428 | |||
| 2429 | Fix /etc/init.d/hostname to set only the hostname, and not the NIS | ||
| 2430 | domainname. | ||
| 2431 | |||
| 2432 | Fix /etc/init.d/keymaps to be able to set the extended keymap in rc.conf. | ||
| 2433 | This should close bug #16884. | ||
| 2434 | |||
| 2435 | Fix /etc/profile to be /bin/sh compadible, bug #18918. | ||
| 2436 | |||
| 2437 | Change the swap comments in /sbin/rc to "Activating (possible) swap" to | ||
| 2438 | be more 'generic' ? Only try to disable swap if any devices/files was | ||
| 2439 | activated. This should close bug #19089. | ||
| 2440 | |||
| 2441 | azarah | 1.218 | Fix /etc/init.d/checkroot to only remount / rw if not set explicitly to |
| 2442 | rw in /etc/fstab, bug #19158. | ||
| 2443 | azarah | 1.216 | |
| 2444 | azarah | 1.215 | 24 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2445 | |||
| 2446 | Fix /etc/init.d/net.ppp0 to do the right thing if stopped was called, | ||
| 2447 | but the ppp link was already down, bug #15333. | ||
| 2448 | |||
| 2449 | azarah | 1.214 | 12 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2450 | |||
| 2451 | Fix type-o in /etc/init.d/consolefont (line 38 should be 'retval=$?'). | ||
| 2452 | Thanks to Matt Taylor <liverbugg@juno.com> (comment #6, bug #18344). | ||
| 2453 | |||
| 2454 | From linux-2.5.68, we need to mount devpts on /dev/pts again ... | ||
| 2455 | updated /sbin/rc for this. | ||
| 2456 | |||
| 2457 | 11 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2458 | |||
| 2459 | Fix errors on sourcing /etc/profile if EDITOR is not set, bug #18995. | ||
| 2460 | |||
| 2461 | azarah | 1.213 | 10 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2462 | |||
| 2463 | Make checking in unmount more strict, fixing bug #19007. | ||
| 2464 | |||
| 2465 | azarah | 1.212 | 09 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2466 | |||
| 2467 | Add one more check to genenviron.awk, to spot cases where there is a | ||
| 2468 | space between the variable and the '='. | ||
| 2469 | |||
| 2470 | azarah | 1.211 | 08 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2471 | |||
| 2472 | Fix interactive shell not to have coloured prompt when used as a | ||
| 2473 | dumb client, bug #18886. Fix was inspired by patch from | ||
| 2474 | Matthew Kennedy <mkennedy@gentoo.org>. | ||
| 2475 | |||
| 2476 | azarah | 1.210 | * rc-scripts 1.4.3.5 (06 Apr 2003) |
| 2477 | |||
| 2478 | 06 Apr 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2479 | azarah | 1.209 | |
| 2480 | Hopefully get the serial support sane again. Added /bin/consoletype | ||
| 2481 | azarah | 1.211 | from Redhat to check for serial console. This should resolve bug |
| 2482 | #18329 partly. | ||
| 2483 | azarah | 1.209 | |
| 2484 | azarah | 1.211 | Add the --nocolor option to suppress the use of colors. |
| 2485 | azarah | 1.209 | |
| 2486 | azarah | 1.211 | Change the 'status' option to return true if the service is running, |
| 2487 | and false if stopped. This is only if the '--quiet' flag was also | ||
| 2488 | given. | ||
| 2489 | azarah | 1.209 | |
| 2490 | azarah | 1.211 | Change the start and stop options not to output or return false if |
| 2491 | the '--quiet' flag was given. | ||
| 2492 | azarah | 1.209 | |
| 2493 | azarah | 1.211 | Redirect stderr for consolechars in /etc/init.d/consolefont to /dev/null |
| 2494 | as well, fixing bug #18344. | ||
| 2495 | azarah | 1.209 | |
| 2496 | azarah | 1.211 | Optimize $EDITOR extraction in /etc/profile closing bug #18614, thanks to |
| 2497 | Aron Griffis <agriffis@gentoo.org>. | ||
| 2498 | azarah | 1.209 | |
| 2499 | azarah | 1.211 | Set HALT to 'shutdown' or 'reboot' depending on if we are shutting down |
| 2500 | or rebooting. | ||
| 2501 | azarah | 1.210 | |
| 2502 | 30 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2503 | azarah | 1.208 | |
| 2504 | Fix bug #18329 ... $COLS was not setup properly for serial console. | ||
| 2505 | |||
| 2506 | azarah | 1.210 | 24 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2507 | azarah | 1.206 | |
| 2508 | Optimize USB fs stuff in /etc/init.d/localmount to use less cats etc. | ||
| 2509 | Fix a problem where it might not have mounted the USB fs when usbcore | ||
| 2510 | was compiled as module, and the kernel did not mount it by the time | ||
| 2511 | the script was started. Get it to rather check what filesystems is | ||
| 2512 | supported when deciding if it should use 'usbdevfs' or 'usbfs', as | ||
| 2513 | later 2.4 kernels now also support the newer 'usbfs'. | ||
| 2514 | |||
| 2515 | azarah | 1.207 | Optimize RAID stuff in /etc/init.d/checkfs a bit. |
| 2516 | |||
| 2517 | azarah | 1.210 | 16 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2518 | azarah | 1.205 | |
| 2519 | Update sbin/rc-envupdate.sh.bash for bug #17549. | ||
| 2520 | |||
| 2521 | azarah | 1.210 | * rc-scripts 1.4.3.4 (16 Mar 2003) |
| 2522 | azarah | 1.204 | |
| 2523 | azarah | 1.210 | 16 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2524 | azarah | 1.204 | |
| 2525 | Add /etc/issue done by a Polish ascii-artists, v|rus with some slight | ||
| 2526 | modifications (purple and display hostname, etc). Closes bug #16806. | ||
| 2527 | |||
| 2528 | Add 'use hotplug' to /etc/init.d/net.eth0, to get cardbus hardware to | ||
| 2529 | work properly. Closes bug #17348. | ||
| 2530 | |||
| 2531 | Add update from Wout Mertens <wmertens@gentoo.org> to speedup shutdown | ||
| 2532 | of dhcp interfaces, closing bug #17378. This modified /etc/init.d/net.eth0. | ||
| 2533 | |||
| 2534 | azarah | 1.210 | 11 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2535 | azarah | 1.203 | |
| 2536 | Fix usage of /usr/bin/cut in /sbin/functions.sh, thanks Brandon Low | ||
| 2537 | <lostlogic@gentoo.org>! | ||
| 2538 | |||
| 2539 | azarah | 1.210 | 10 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2540 | azarah | 1.201 | |
| 2541 | Add sysfs support for 2.5 kernels (mounted to /sys). Updated /sbin/rc | ||
| 2542 | and /etc/init.d/halt.sh for this. | ||
| 2543 | |||
| 2544 | Update /etc/fstab to correctly mount /proc with: | ||
| 2545 | |||
| 2546 | mount -t proc none /proc | ||
| 2547 | |||
| 2548 | Do the same for /dev/shm: | ||
| 2549 | |||
| 2550 | mount -t tmpfs none /dev/shm | ||
| 2551 | |||
| 2552 | Fix a typeo in /etc/init.d/checkroot that caused 'umount -a' to output | ||
| 2553 | noise if we exited a recovery console. | ||
| 2554 | |||
| 2555 | azarah | 1.202 | Fix /etc/init.d/hostname using /usr/bin/cut, closing bug #17175, thanks |
| 2556 | to Bobby Bingham <uhmmmm@columbus.rr.com> for noticing this. | ||
| 2557 | |||
| 2558 | Bring down default gateway before adding new one .. this fixes issues | ||
| 2559 | where eth0/whatever was brought up by kernel. Changed /etc/init.d/net.eth0 | ||
| 2560 | for this, closing bug #17164. Thanks to nth <y.lesaint@free.fr> for the | ||
| 2561 | fix. | ||
| 2562 | |||
| 2563 | Fix /etc/init.d/modules to call modprobe with -q .. this fix issues where | ||
| 2564 | it fails for module-init-tools if the module is already loaded. This | ||
| 2565 | closes bug #17163, thanks to nth <y.lesaint@free.fr>. | ||
| 2566 | |||
| 2567 | azarah | 1.210 | * rc-scripts 1.4.3.3 (09 Mar 2003) |
| 2568 | azarah | 1.200 | |
| 2569 | azarah | 1.210 | 09 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2570 | azarah | 1.199 | |
| 2571 | Fix /etc/init.d/netmount not to unmount / on nfs/whatever, bug #16274. | ||
| 2572 | |||
| 2573 | Fix net.eth0 not to try and start an interface if already up. | ||
| 2574 | |||
| 2575 | Update MAKEDEV from Debian to support more archs. This adds support | ||
| 2576 | for 'arm', 'hppa' among others. URL: | ||
| 2577 | |||
| 2578 | http://packages.debian.org/stable/base/makedev.html | ||
| 2579 | |||
| 2580 | Add support to /etc/init.d/modules to use /etc/modules.autoload/kernel-2.4 | ||
| 2581 | if we are using a 2.4 kernel, and /etc/modules.autoload/kernel-2.5 if we | ||
| 2582 | are using a 2.5 kernel ... bug #17109. | ||
| 2583 | |||
| 2584 | azarah | 1.210 | 02 Mar 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2585 | azarah | 1.198 | |
| 2586 | Update /etc/init.d/hostname to only set the hostname to whatever is before | ||
| 2587 | the first '.', and then set the domainname to the rest, closing bug #14946. | ||
| 2588 | |||
| 2589 | azarah | 1.197 | 28 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2590 | |||
| 2591 | Merge some of the optimizations from Graham Forest <vladimir@gentoo.org>. | ||
| 2592 | |||
| 2593 | Fix spelling of dependency and some other spelling/grammer issues. | ||
| 2594 | Thanks goes to Kerin Millar <kerin@recruit2recruit.net> and | ||
| 2595 | Mike Frysinger <vapier@gentoo.org>, bug #15498. | ||
| 2596 | |||
| 2597 | Change $svcdir to '/var/lib/init.d' to be more FHS compliant, bug #15192. | ||
| 2598 | |||
| 2599 | Add 'Eterm' to /etc/skel/.bashrc, closing bug #14662. | ||
| 2600 | |||
| 2601 | Adjust comments about PROTOCOLS in /etc/rc.conf to try and prevent | ||
| 2602 | bug #14556. | ||
| 2603 | |||
| 2604 | azarah | 1.196 | 27 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2605 | |||
| 2606 | Finally fix /etc/init.d/halt.sh to unmount non critical mounts properly. | ||
| 2607 | |||
| 2608 | azarah | 1.195 | 20 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2609 | |||
| 2610 | Kill /dev/ttyp0 error at boot by changing test in /etc/init.d/modules | ||
| 2611 | to 'test -c /dev/ttyp0 &> /dev/null'. | ||
| 2612 | |||
| 2613 | azarah | 1.194 | 18 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2614 | |||
| 2615 | Update /sbin/modules-update to generate /etc/modprobe.devfs from | ||
| 2616 | /etc/modules.devfs. This along with the devfs-hack.patch in the latest | ||
| 2617 | module-init-tools-0.9.9 should get rid of many of the warnings/errors | ||
| 2618 | with devfs, and makes it work a bit better. | ||
| 2619 | |||
| 2620 | azarah | 1.193 | 17 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2621 | |||
| 2622 | Fix /etc/inputrc for dvorak keyboard layout, bug #2599 again. | ||
| 2623 | |||
| 2624 | 16 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2625 | |||
| 2626 | Fix the 'source /etc/profile.env' to be '. /etc/profile' to have ksh | ||
| 2627 | support. This resolves bug #14994. | ||
| 2628 | |||
| 2629 | Move EDITOR to /etc/rc.conf. Also update /etc/profile to set EDITOR | ||
| 2630 | according to /etc/rc.conf. | ||
| 2631 | |||
| 2632 | Update /etc/init.d/checkfs to fix bug #14282. It did not exclude comments, | ||
| 2633 | and used 'basename' which is located in /usr/bin. | ||
| 2634 | |||
| 2635 | azarah | 1.192 | 13 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2636 | |||
| 2637 | Merge changes from Nick Jones <carpaski@gentoo.org> to not run stty if | ||
| 2638 | used in portage. Fix the NOCOLOR stuff. Updated /sbin/functions.sh for | ||
| 2639 | this. | ||
| 2640 | |||
| 2641 | azarah | 1.191 | 06 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2642 | |||
| 2643 | Update src/awk/genenviron.awk to properly set the environment for each | ||
| 2644 | rc-script's depend() function by sourcing required config files. | ||
| 2645 | |||
| 2646 | azarah | 1.190 | 05 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2647 | |||
| 2648 | Fix /sbin/rc-envupdate.sh to use $svcdir to set SVCDIR. This is thanks | ||
| 2649 | to Max Kalika <alkern23@yahoo.com>, bug #15050. | ||
| 2650 | |||
| 2651 | azarah | 1.188 | 03 Feb 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2652 | |||
| 2653 | Fix /sbin/modules-update to work with module-init-tools-0.9.9. | ||
| 2654 | |||
| 2655 | azarah | 1.186 | 30 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2656 | |||
| 2657 | Add 'use isapnp' to /etc/init.d/modules, closing bug #14677, thanks to | ||
| 2658 | Hubert Hanghofer <hubert.hanghofer@netbeer.co.at>. | ||
| 2659 | |||
| 2660 | woodchip | 1.185 | 27 Jan 2003; Donny Davies <woodchip@gentoo.org>: |
| 2661 | |||
| 2662 | Fix halt.sh by moving the nut UPS kill power stuff back into a function! | ||
| 2663 | Add fix from the wonderful analysis of Toby Dickenson | ||
| 2664 | <tdickenson@geminidataloggers.com> in #12947. | ||
| 2665 | |||
| 2666 | azarah | 1.183 | 26 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2667 | |||
| 2668 | Fix start-stop-daemon to check the call to nice() correctly for failure, | ||
| 2669 | closing bug #14359, thanks to YAMAKURA Makoto <makoto@dsb.club.ne.jp>. | ||
| 2670 | |||
| 2671 | azarah | 1.184 | Fix globbing $? when checking return value of fsck in /etc/init.d/checkroot |
| 2672 | and /etc/init.d/checkfs. This closes bug #13320, thanks to good work from | ||
| 2673 | Malcolm Scott <m@lcolm.org.uk>. | ||
| 2674 | |||
| 2675 | vapier | 1.182 | 21 Jan 2003; Mike Frysinger <vapier@gentoo.org>: |
| 2676 | |||
| 2677 | vapier | 1.189 | Updated /etc/rc.conf to add elogin/entrance support #13790. |
| 2678 | vapier | 1.182 | |
| 2679 | azarah | 1.181 | 21 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2680 | |||
| 2681 | Update /etc/init.d/keymaps to enable unicode if required. This closes | ||
| 2682 | bug #14306 thanks to Danny Milosavljevic <danny_milo@yahoo.com>. | ||
| 2683 | |||
| 2684 | azarah | 1.180 | 19 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2685 | |||
| 2686 | Fix deadlock durning shutdown if tmpfs filesystems larger than free | ||
| 2687 | memory, and swap gets deactivated, bug #13599. Updated /etc/init.d/halt.sh | ||
| 2688 | for this. | ||
| 2689 | |||
| 2690 | Merge in some fixes from Vapier <vapier@gentoo.org> to /sbin/functions.sh. | ||
| 2691 | This closes bug #13868. | ||
| 2692 | |||
| 2693 | Always add "/bin:/sbin:/usr/bin:/usr/sbin" to PATH, as it fixes both | ||
| 2694 | 'su -c foo' not finding start-stop-daemon (etc), and bug #14127. | ||
| 2695 | |||
| 2696 | Add route for lo interface to /etc/init.d/net.lo, closing bug #14055. | ||
| 2697 | |||
| 2698 | azarah | 1.179 | 15 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2699 | |||
| 2700 | Clear $svcdir in /sbin/rc before we run depscan to make sure we do | ||
| 2701 | not have stale entries left from hard reboot, thanks to pac1085 on | ||
| 2702 | irc. | ||
| 2703 | |||
| 2704 | azarah | 1.178 | * rc-scripts 1.4.3.2 (15 Jan 2003) |
| 2705 | |||
| 2706 | azarah | 1.176 | 15 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2707 | |||
| 2708 | Truely fix bootup on seperate /var. | ||
| 2709 | |||
| 2710 | azarah | 1.177 | Add some fixes and optimizations to /sbin/rc-update, thanks to |
| 2711 | Daniel Robbins <drobbins@gentoo.org>. | ||
| 2712 | |||
| 2713 | azarah | 1.175 | * rc-scripts 1.4.3.1 (15 Jan 2003) |
| 2714 | |||
| 2715 | 15 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2716 | |||
| 2717 | Fix bootup on seperate /var. | ||
| 2718 | |||
| 2719 | azarah | 1.174 | 14 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2720 | |||
| 2721 | Fix /etc/init.d/hostname and /etc/init.d/serial to close bug #13636. | ||
| 2722 | |||
| 2723 | azarah | 1.173 | 07 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2724 | |||
| 2725 | Fix /etc/init.d/keymaps to force linux keycodes for PPC, thanks | ||
| 2726 | to Olaf Hering <gentoo@aepfle.de>, bug #13193. | ||
| 2727 | |||
| 2728 | Turn on -C option to fsck on for all calls to fsck. Updated scripts | ||
| 2729 | /etc/init.d/checkroot and /etc/init.d/checkfs, closing bug #13321. | ||
| 2730 | |||
| 2731 | azarah | 1.172 | * rc-scripts 1.4.3.0 (07 Jan 2003) |
| 2732 | |||
| 2733 | 07 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2734 | |||
| 2735 | Too much to mention, but here are a few: | ||
| 2736 | - Major rewrite of software RAID startup, based on Mandrake's, as | ||
| 2737 | ours was pretty broken :( | ||
| 2738 | - Redone /sbin/rc to work without the tmpfs/ramfs stat directory. | ||
| 2739 | Much of /sbin/functions.sh and other scripts have been changed | ||
| 2740 | to support this. | ||
| 2741 | - Reworked /etc/inittab to support this. Also moved critical | ||
| 2742 | mounting of local filesystems to 'sysinit' function of /sbin/rc. | ||
| 2743 | - Move state directory to /var/state/init.d/ ($svcdir). | ||
| 2744 | - Move Adelie node init to /sbin/functions.sh to try and simplify | ||
| 2745 | /sbin/rc a bit. | ||
| 2746 | - Updated Copyright dates to 2003. | ||
| 2747 | azarah | 1.51 | |
| 2748 | azarah | 1.171 | * rc-scripts 1.4.2.8 (06 Jan 2003) |
| 2749 | |||
| 2750 | azarah | 1.170 | 02 Jan 2003; Martin Schlemmer <azarah@gentoo.org>: |
| 2751 | |||
| 2752 | Fix src/awk/genenviron.awk to work with multiple 'need', 'use', etc | ||
| 2753 | lines, as it seems users do not note the need to have them all on | ||
| 2754 | one line .... | ||
| 2755 | |||
| 2756 | Fix /sbin/runscript.sh to detect 'net.adsl', or any other net.* | ||
| 2757 | script not ending on a digit. This closes bug #12887. | ||
| 2758 | |||
| 2759 | Fix get_KV to also check micro version of kernel; add KV_to_int() | ||
| 2760 | helper function for get_KV. Update /etc/init.d/localmount to work | ||
| 2761 | with new get_KV ... | ||
| 2762 | |||
| 2763 | azarah | 1.168 | 28 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2764 | |||
| 2765 | Add support for generate-modprobe.conf or generating /etc/modprobe.conf | ||
| 2766 | in the new sys-apps/module-init-tools. Note that you need version | ||
| 2767 | 0.9.7 or later of sys-apps/module-init-tools. Updated | ||
| 2768 | /sbin/modules-update for this. | ||
| 2769 | |||
| 2770 | azarah | 1.169 | Change /etc/init.d/localmount to use 'usbfs' and not 'usbdevfs' if |
| 2771 | we are running kernel 2.5 or later ... | ||
| 2772 | |||
| 2773 | azarah | 1.167 | 26 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2774 | |||
| 2775 | Add /etc/init.d/crypto-loop and /etc/conf.d/crypto-loop, a cool | ||
| 2776 | rc-script to setup encrypted loopback devices. This was kindly | ||
| 2777 | donated by Matthew Kennedy <mkennedy@gentoo.org> (bug #11471). | ||
| 2778 | |||
| 2779 | azarah | 1.166 | 25 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2780 | |||
| 2781 | Fix src/awk/genenviron.awk stripping *all* '=', closing | ||
| 2782 | bug #8901. | ||
| 2783 | |||
| 2784 | Fix src/awk/genenviron.awk not seperating CONFIG_PROTECT with | ||
| 2785 | spaces ... | ||
| 2786 | |||
| 2787 | azarah | 1.165 | * rc-scripts 1.4.2.7 (24 Dec 2002) |
| 2788 | |||
| 2789 | azarah | 1.164 | 24 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2790 | |||
| 2791 | Add a fix to /sbin/functions.sh for bug #12601. | ||
| 2792 | |||
| 2793 | azarah | 1.163 | 22 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2794 | |||
| 2795 | Add INFOPATH to /etc/env.d/00basic. | ||
| 2796 | |||
| 2797 | Fix src/awk/genenviron.awk to get the order of the env.d files | ||
| 2798 | correct. Also fix it to handle *all* the SPECIALS correctly. | ||
| 2799 | This closes bug #12411. | ||
| 2800 | |||
| 2801 | azarah | 1.162 | * rc-scripts 1.4.2.6 (18 Dec 2002) |
| 2802 | |||
| 2803 | 18 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2804 | |||
| 2805 | Add mips changes to sbin/MAKEDEV. This should close bug #12329, | ||
| 2806 | thanks to Nicholas Wourms <nwourms@netscape.net>. | ||
| 2807 | |||
| 2808 | Quote some tests in /sbin/rc-update to fix/avoid the problem | ||
| 2809 | in bug # | ||
| 2810 | |||
| 2811 | Fix awk regex in /etc/init.d/halt.sh to fix bug #11795. | ||
| 2812 | |||
| 2813 | Update shell for postgres user, closing bug #12258. | ||
| 2814 | |||
| 2815 | azarah | 1.161 | 11 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2816 | |||
| 2817 | Fix src/awk/genenviron.awk not to add duplicate entries, closing | ||
| 2818 | bug #8999. | ||
| 2819 | |||
| 2820 | azarah | 1.160 | * rc-scripts 1.4.2.5 (09 Dec 2002) |
| 2821 | |||
| 2822 | azarah | 1.159 | 08 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2823 | |||
| 2824 | Add another sync to /etc/init.d/halt.sh, closing bug 8173. | ||
| 2825 | |||
| 2826 | Add smmsp uid and gid. Closes bug #8952. | ||
| 2827 | |||
| 2828 | azarah | 1.157 | 04 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2829 | |||
| 2830 | azarah | 1.158 | Setup colums, etc up properly for serial consoles in /sbin/functions.sh. |
| 2831 | Closes bug #11557, thanks to Erik Scrafford <erik@scrafford.org>. | ||
| 2832 | |||
| 2833 | azarah | 1.157 | Add headers similar to that of portage-2.0.45 and up to the |
| 2834 | generated profile files (/etc/{profile,csh}.env). Updated | ||
| 2835 | src/awk/genenviron.awk for this. | ||
| 2836 | |||
| 2837 | azarah | 1.154 | 01 Dec 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2838 | |||
| 2839 | Fix typeo in /etc/devfsd.conf, closing bug #11424, thanks to the | ||
| 2840 | sharp eye of Techie2000 <Linux@mochamail.com>. | ||
| 2841 | |||
| 2842 | azarah | 1.155 | Rename /sbin/update-modules to /sbin/modules-update, closing |
| 2843 | bug #11445. | ||
| 2844 | |||
| 2845 | Nano moved from /usr/bin/nano to /bin/nano. Fix this in | ||
| 2846 | /etc/env.d/00basic, bug #10916. | ||
| 2847 | |||
| 2848 | azarah | 1.152 | 27 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2849 | |||
| 2850 | Add more improvements to clustering code. This is from | ||
| 2851 | Olivier Crete <crete@cerca.umontreal.ca>, bug #4151. | ||
| 2852 | |||
| 2853 | azarah | 1.151 | 26 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2854 | |||
| 2855 | Change default 'net' dependency behaviour to be more suited | ||
| 2856 | for notebook users. Basically if at least one net.* service | ||
| 2857 | beside net.lo start successfully, the 'net' dependency is | ||
| 2858 | azarah | 1.153 | considered up. Server admin can set RC_NET_STRICT_CHECKING="yes" |
| 2859 | azarah | 1.151 | in /etc/conf.d/rc to change this back to the old default. |
| 2860 | azarah | 1.156 | This is the start to address bug #2706. |
| 2861 | azarah | 1.151 | |
| 2862 | azarah | 1.150 | * rc-scripts 1.4.2.4 (26 Nov 2002) |
| 2863 | |||
| 2864 | 26 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2865 | |||
| 2866 | Initial merge of bits for Adelie Linux for SSI clusters. More | ||
| 2867 | info at: | ||
| 2868 | |||
| 2869 | http://www.cerca.umontreal.ca/hpc/en/projects/adelie/index.html | ||
| 2870 | |||
| 2871 | 25 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2872 | |||
| 2873 | One liner fix to src/awk/cachedepends.awk to once again fix | ||
| 2874 | bug #7803. | ||
| 2875 | |||
| 2876 | azarah | 1.149 | 18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2877 | |||
| 2878 | Add 'alias char-major-89 i2c-dev' to /etc/modules.d/aliases. | ||
| 2879 | This should close bug #10891. | ||
| 2880 | |||
| 2881 | azarah | 1.148 | * rc-scripts 1.4.2.3 (18 Nov 2002) |
| 2882 | |||
| 2883 | azarah | 1.147 | 18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2884 | |||
| 2885 | Add some more checks to src/awk/*. Fix error printing for | ||
| 2886 | /sbin/depscan.sh. | ||
| 2887 | azarah | 1.148 | |
| 2888 | Link awk module with gcc and not with ld. This should fix | ||
| 2889 | problems on sparc and alpha. Many thanks for this fix to | ||
| 2890 | Stephan Jones <cretin@gentoo.org>. | ||
| 2891 | |||
| 2892 | Remove the copyright info from config files, thanks to | ||
| 2893 | Matthew Kennedy <mkennedy@gentoo.org>. | ||
| 2894 | azarah | 1.147 | |
| 2895 | azarah | 1.144 | * rc-scripts 1.4.2.2 (18 Nov 2002) |
| 2896 | |||
| 2897 | 18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2898 | |||
| 2899 | Add src/awk/genenviron.awk which is rc-envupdate.sh ported | ||
| 2900 | to awk. This is also much faster than its bash version. | ||
| 2901 | |||
| 2902 | azarah | 1.145 | Remove the 'Spider cat fix' from depscan.sh.bash, as it makes |
| 2903 | things even slower on older boxes. Bug #10548. | ||
| 2904 | |||
| 2905 | azarah | 1.146 | After a bored Vapier decided that he needed to update the |
| 2906 | licenses of things in /etc :P, I did the rest. Hopefully | ||
| 2907 | not too many people will nuke thier fstab :/ | ||
| 2908 | |||
| 2909 | azarah | 1.143 | * rc-scripts 1.4.2.1 (18 Nov 2002) |
| 2910 | |||
| 2911 | 18 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2912 | |||
| 2913 | Update src/awk/cachedepends.awk to find its own rc-scripts, | ||
| 2914 | fixing the need for find which broke systems with /usr on | ||
| 2915 | a different partition. | ||
| 2916 | |||
| 2917 | azarah | 1.141 | 17 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2918 | |||
| 2919 | Add some extra checks to src/awk/cachedepends.awk and | ||
| 2920 | src/awk/gendepends.awk. | ||
| 2921 | |||
| 2922 | azarah | 1.142 | Move some of the more generic functions in src/awk/gendepends.awk |
| 2923 | to src/awk/functions.awk. | ||
| 2924 | |||
| 2925 | azarah | 1.140 | * rc-scripts 1.4.2 (17 Nov 2002) |
| 2926 | |||
| 2927 | 17 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: | ||
| 2928 | |||
| 2929 | Add initial version of new depscan.sh. This uses awk scripts | ||
| 2930 | to do the main work, giving about 10 times speed improvement on | ||
| 2931 | slower machines. Updated /sbin/depscan.sh, src/filefuncts.c, | ||
| 2932 | src/Makefile, src/awk/cachedepends.awk and src/awk/gendepends.awk | ||
| 2933 | for this. This should close bug #10548. | ||
| 2934 | |||
| 2935 | azarah | 1.138 | * rc-scripts 1.4.1.2 (5 Nov 2002) |
| 2936 | |||
| 2937 | azarah | 1.139 | 5 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2938 | |||
| 2939 | Add UID/GID of 250 for Portage Fakeroot account. | ||
| 2940 | |||
| 2941 | azarah | 1.137 | 4 Nov 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2942 | |||
| 2943 | Change /etc/init.d/clock to depend on localmount again, fixing | ||
| 2944 | bug #10048. | ||
| 2945 | |||
| 2946 | Get deps on logger sane again. I wanted to get the logger started | ||
| 2947 | as early as possible, but clock for one breaks if /usr is mounted | ||
| 2948 | on seperate partition. | ||
| 2949 | |||
| 2950 | azarah | 1.136 | 29 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2951 | |||
| 2952 | Fix return in /etc/init.d/modules to return 0 if /proc/modules | ||
| 2953 | do not exists. Closes bug #7738, comment #5. | ||
| 2954 | |||
| 2955 | azarah | 1.135 | * rc-scripts 1.4.1.1 (28 Oct 2002) |
| 2956 | |||
| 2957 | azarah | 1.134 | 28 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2958 | |||
| 2959 | Fix /sbin/update-modules not to include backup files. Closes | ||
| 2960 | bug #9707. | ||
| 2961 | |||
| 2962 | azarah | 1.133 | 26 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2963 | |||
| 2964 | Fix update-modules borking if there are directories present | ||
| 2965 | in /etc/modules.d/. Closes bug #9632. | ||
| 2966 | |||
| 2967 | azarah | 1.132 | 17 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2968 | |||
| 2969 | Change deps on /etc/init.d/{clock,hostname,modules} not to | ||
| 2970 | depend on localmount, but rather on checkroot, as all of them | ||
| 2971 | just need / to be mounted. This should fix race conditions | ||
| 2972 | because of checkfs dependency on modules. This should close | ||
| 2973 | bug #9266. | ||
| 2974 | |||
| 2975 | azarah | 1.131 | * rc-scripts 1.4.1 (13 Oct 2002) |
| 2976 | |||
| 2977 | azarah | 1.130 | 13 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2978 | |||
| 2979 | Create and fix permissions on /tmp/.{ICE,X11}-unix/. This | ||
| 2980 | is additional measures for bug #8281. | ||
| 2981 | |||
| 2982 | azarah | 1.129 | 12 Oct 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2983 | |||
| 2984 | Update /etc/init.d/net.eth0 to fix bug #8626. | ||
| 2985 | |||
| 2986 | Fix /sbin/rc-update to check return code of "ln". This should | ||
| 2987 | close bug #8867. | ||
| 2988 | |||
| 2989 | azarah | 1.127 | 29 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 2990 | |||
| 2991 | Fix indentation in /etc/inputrc. This should close | ||
| 2992 | bug #8368. | ||
| 2993 | |||
| 2994 | Add extended status functionality. Should close bug #2462. | ||
| 2995 | |||
| 2996 | azarah | 1.128 | Add support for /sbin/rc-update to check if the rc-script |
| 2997 | is executable or not. Thanks to widersacher@gmx.net, closing | ||
| 2998 | bug #8326. | ||
| 2999 | |||
| 3000 | azarah | 1.126 | 25 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3001 | |||
| 3002 | Fix /etc/init.d/bootmisc not to kill pidfiles of running | ||
| 3003 | daemons. Improve NGPT support in /sbin/rc a bit. | ||
| 3004 | |||
| 3005 | azarah | 1.125 | 23 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3006 | |||
| 3007 | Fix my last screwup with /etc/init.d/net.ppp0. Basically | ||
| 3008 | forgot to change a few DEVICE's to IFACE ... | ||
| 3009 | |||
| 3010 | azarah | 1.124 | 22 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3011 | |||
| 3012 | NGPT support. | ||
| 3013 | |||
| 3014 | azarah | 1.123 | 17 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3015 | |||
| 3016 | Did a small fix to /etc/init.d/net.eth0, thanks to | ||
| 3017 | naanyaar2000@yahoo.com, bug #7407. | ||
| 3018 | |||
| 3019 | azarah | 1.122 | 16 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3020 | |||
| 3021 | Add the permission stuff for generic scsi when compiled as | ||
| 3022 | module, thanks to Bauno <bauno@inwind.it>. | ||
| 3023 | |||
| 3024 | Add support for /etc/devfs.d/ for additional devfs config | ||
| 3025 | stuff .. idea from Denys Duchier <Denys.Duchier@ps.uni-sb.de>. | ||
| 3026 | |||
| 3027 | azarah | 1.121 | 11 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3028 | |||
| 3029 | Fix small type-o from last changes to /etc/init.d/netmount. | ||
| 3030 | Should resolve bug #7803. | ||
| 3031 | |||
| 3032 | azarah | 1.119 | * rc-scripts 1.4.0 (7 Sep 2002) |
| 3033 | |||
| 3034 | azarah | 1.118 | 7 Sep 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3035 | |||
| 3036 | Update /etc/init.d/net.eth0 to handle individual broadcast | ||
| 3037 | and netmask for aliases. Should close bug #7407. | ||
| 3038 | azarah | 1.119 | |
| 3039 | Give /var/run/utmp and /var/log/wtmp the proper permissions | ||
| 3040 | and ownership. First steps in fixing bug #7630. | ||
| 3041 | azarah | 1.118 | |
| 3042 | azarah | 1.120 | Change Raid stuff again in /etc/init.d/checkfs. |
| 3043 | |||
| 3044 | woodchip | 1.115 | 26 Aug 2002; Donny Davies <woodchip@gentoo.org>: |
| 3045 | |||
| 3046 | Give root a 'root' GECOS in /etc/passwd, was NULL before. | ||
| 3047 | |||
| 3048 | azarah | 1.114 | * rc-scripts 1.3.9 (25 Aug 2002) |
| 3049 | |||
| 3050 | 25 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: | ||
| 3051 | |||
| 3052 | Update /sbin/rc to fix some spelling/slang mistakes. Closes | ||
| 3053 | bug #6887. | ||
| 3054 | |||
| 3055 | Move /etc/init.d/net.ppp0 's config to /etc/conf.d/net.ppp0. | ||
| 3056 | This closes bug #6378. | ||
| 3057 | |||
| 3058 | Add IPv6 support to /etc/init.d/net.eth0. Closes bug #6175, | ||
| 3059 | with many thanks to Asbjorn Sannes <ace@sannes.org>. | ||
| 3060 | |||
| 3061 | azarah | 1.113 | 20 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3062 | |||
| 3063 | Update /etc/init.d/bootmisc to reset pam_console permissions. | ||
| 3064 | |||
| 3065 | Update /etc/devfsd.conf to have the "pam_console_apply_devfsd.so" | ||
| 3066 | line for getting devfs to work with pam_console. | ||
| 3067 | |||
| 3068 | azarah | 1.112 | 12 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3069 | |||
| 3070 | Update /etc/init.d/keymaps to first load the windowkeys.inc then | ||
| 3071 | the user selected one, fixing bug #6295. | ||
| 3072 | |||
| 3073 | azarah | 1.111 | 11 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3074 | azarah | 1.110 | |
| 3075 | azarah | 1.111 | Change the 'cat' in check_rcscript() to a single 'awk' in |
| 3076 | /sbin/depscan.sh. This should fix broken pipe issues if the | ||
| 3077 | loop exists too early. Resolves bug #5961. | ||
| 3078 | |||
| 3079 | Fix software RAID startup/shutdown, bug #5310. Modified | ||
| 3080 | /etc/init.d/checkfs and /etc/init.d/halt.sh for this. | ||
| 3081 | azarah | 1.110 | |
| 3082 | azarah | 1.109 | * rc-scripts 1.3.8 (08 Aug 2002) |
| 3083 | |||
| 3084 | azarah | 1.108 | 7 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3085 | |||
| 3086 | azarah | 1.111 | Move the color ls stuff to .bashrc. Fix bug #5250. |
| 3087 | azarah | 1.108 | |
| 3088 | danarmak | 1.107 | 6 Aug 2002; Dan Armak <danarmak@gentoo.org>: |
| 3089 | |||
| 3090 | Correct the comments in rc.conf about the XSESSION variable: it should | ||
| 3091 | be set to "kde-<version>" not "KDE". Closes bug #5948. | ||
| 3092 | |||
| 3093 | azarah | 1.106 | 5 Aug 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3094 | |||
| 3095 | azarah | 1.111 | Fix the 'Usage' line in the help to return the correct options for |
| 3096 | the script (/sbin/runscript.sh). Resolve bug #6029. | ||
| 3097 | azarah | 1.106 | |
| 3098 | woodchip | 1.105 | 3 Aug 2002; Donny Davies <woodchip@gentoo.org>: |
| 3099 | |||
| 3100 | Added UPS shutdown support for nut to halt.sh. | ||
| 3101 | Added nut user/group as uid/gid 84. | ||
| 3102 | |||
| 3103 | azarah | 1.103 | 27 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3104 | |||
| 3105 | Updated /sbin/rc's way of checking for devfs support (now rather uses | ||
| 3106 | awk, as it is more accurate). Closes bug #5458. | ||
| 3107 | |||
| 3108 | Add the Redhat/Mandrake /forcefsck and /fastboot options to our checkroot | ||
| 3109 | and checkfs. Updated /etc/init.d/{checkroot,checkfs,halt.sh} for this. | ||
| 3110 | Thanks goes to Chris PeBenito (bug #5570). | ||
| 3111 | |||
| 3112 | azarah | 1.104 | Changed most daemons to use /bin/false as shell. Should close bug #5388. |
| 3113 | |||
| 3114 | carpaski | 1.102 | 27 Jul 2002; Nicholas Jones <carpaski@gentoo.org>: |
| 3115 | |||
| 3116 | Added vpopmail user and group as 89:89 | ||
| 3117 | |||
| 3118 | azarah | 1.99 | 22 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3119 | |||
| 3120 | Add the cyrus user to /etc/passwd. Resolves bug #4100. | ||
| 3121 | azarah | 1.97 | |
| 3122 | azarah | 1.100 | Some bugfixes and speed improvements to /sbin/depscan.sh after |
| 3123 | last changes. | ||
| 3124 | |||
| 3125 | azarah | 1.101 | Replace some cat/grep's in /sbin/rc-envupdate.sh with awk's to |
| 3126 | get some speed improvements. | ||
| 3127 | |||
| 3128 | azarah | 1.97 | 21 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3129 | |||
| 3130 | Fix LVM support in /etc/init.d/checkfs again, thanks to help from | ||
| 3131 | Kyle Manna <nitro@gentoo.org>. | ||
| 3132 | |||
| 3133 | Add software RAID support to /etc/init.d/checkfs, thanks to | ||
| 3134 | Daniel Ahlberg <aliz@gentoo.org>. | ||
| 3135 | |||
| 3136 | azarah | 1.99 | Update the cache_depend() funtion in /sbin/depscan.sh not to |
| 3137 | azarah | 1.98 | quit on any "}", but only on the one matching the first "{". This |
| 3138 | requires wc in /bin, so baselayout should depend on | ||
| 3139 | >=sys-apps/textutils-2.0.19-r2 | ||
| 3140 | |||
| 3141 | Update /etc/init.d/netmount to try and detect nfs mounts that should be | ||
| 3142 | mounted automatically on boot. This requires awk in /bin, so baselayout | ||
| 3143 | should depend on >=sys-apps/gawk-3.1.0-r3. | ||
| 3144 | |||
| 3145 | azarah | 1.109 | * rc-scripts 1.3.7 (17 Jul 2002) |
| 3146 | azarah | 1.95 | |
| 3147 | azarah | 1.94 | 17 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3148 | azarah | 1.95 | |
| 3149 | Add logging functionality to the rc-scripts, thanks to Alexander Holler, | ||
| 3150 | bug #4037 for the basic idea. Updated /sbin/functions.sh for this. | ||
| 3151 | |||
| 3152 | 16 Jul 2002; Martin Schlemmer <azarah@gentoo.org>: | ||
| 3153 | azarah | 1.94 | |
| 3154 | Add additional entries to /etc/services to support cyrus-imapd, thanks | ||
| 3155 | azarah | 1.96 | to Nick Hadaway <raker@gentoo.org>. |
| 3156 | azarah | 1.94 | |
| 3157 | Update /etc/init.d/consolefont to resolve bug #4968. This fixes a | ||
| 3158 | problem with non 7bit ascii symbols. | ||
| 3159 | |||
| 3160 | Updated /etc/init.d/checkfs to detect if lvm is already active. | ||
| 3161 | This should resolve bug #3613. | ||
| 3162 | |||
| 3163 | azarah | 1.92 | 5 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3164 | |||
| 3165 | Add "usb" group, gid 85. Move "sshd" user and group to 22. Move | ||
| 3166 | "games" user and group to 35 | ||
| 3167 | |||
| 3168 | azarah | 1.91 | 3 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3169 | |||
| 3170 | azarah | 1.93 | Update Copyright displayed at boot, thanks to Sascha Schwabbauer |
| 3171 | (aka cybersystem). Updated /sbin/rc for this. | ||
| 3172 | azarah | 1.91 | |
| 3173 | azarah | 1.90 | 30 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3174 | |||
| 3175 | Update /etc/skel/.bashrc to update the window title of X terminals | ||
| 3176 | that supports it. Closes bug #4232. | ||
| 3177 | |||
| 3178 | azarah | 1.88 | 26 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3179 | |||
| 3180 | Add sshd user and group. Updated /etc/passwd and /etc/group for this. | ||
| 3181 | |||
| 3182 | azarah | 1.89 | Update /etc/inputrc to resolve bug #2599. |
| 3183 | |||
| 3184 | azarah | 1.87 | 20 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3185 | |||
| 3186 | Add /opt/bin to $PATH and $ROOTPATH, closing bug #3603. Modified | ||
| 3187 | /etc/env.d/00basic for this. | ||
| 3188 | |||
| 3189 | Add some new daemon stop and pid detection stuff to /sbin/functions.sh. | ||
| 3190 | vapier | 1.366 | Nothing official, but I spent enough time on it not to want to loose it :) |
| 3191 | azarah | 1.87 | |
| 3192 | Fixed a bug in /sbin/functions.sh that caused rc-scripts run as cron jobs | ||
| 3193 | to give output to stderr. This was caused by a call to "stty", which when | ||
| 3194 | run without a attatched terminal, have this effect. Basically just pipe | ||
| 3195 | stderr to /dev/null. | ||
| 3196 | |||
| 3197 | azarah | 1.86 | 5 Jun 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3198 | |||
| 3199 | Add /usr/local/share/man to $MANPATH (/etc/env.d/00basic), resolving | ||
| 3200 | bug #3363 | ||
| 3201 | |||
| 3202 | azarah | 1.84 | 26 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3203 | |||
| 3204 | Update /etc/init.d/netmount not to try and mount NFS filesystems | ||
| 3205 | if portmap was not started. This is to stop "hang" problems for | ||
| 3206 | new users who do not add portmap to the default runlevel. See | ||
| 3207 | bug #2555. | ||
| 3208 | |||
| 3209 | azarah | 1.85 | Add the video4linux stuff to /etc/devfsd.conf. Resolves bug #2015. |
| 3210 | |||
| 3211 | azarah | 1.83 | 19 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3212 | |||
| 3213 | Move $EDITOR from /etc/profile to /etc/env.d/00basic. | ||
| 3214 | |||
| 3215 | azarah | 1.82 | 13 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3216 | |||
| 3217 | Change the homes of user "at" and "cron" in /etc/passwd, as | ||
| 3218 | they moved to /var/spool/cron... | ||
| 3219 | |||
| 3220 | azarah | 1.81 | * rc-scripts 1.3.5 (12 May 2002) |
| 3221 | |||
| 3222 | azarah | 1.79 | 12 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3223 | |||
| 3224 | Make slight modifications to /sbin/depscan.sh to improve speed (about | ||
| 3225 | azarah | 1.80 | 1 second on a celeron 633). |
| 3226 | azarah | 1.79 | |
| 3227 | azarah | 1.80 | Finally fix /sbin/runscript.sh to properly handle interdependencies |
| 3228 | between types need/use and before/after on runlevel change. I can | ||
| 3229 | actually kick myself for previous implementations, as this fix simplifies | ||
| 3230 | things a lot, and is almost 30 lines of code less! | ||
| 3231 | |||
| 3232 | Change /etc/init.d/netmount not to fail if all mounts are not mounted. | ||
| 3233 | It rather just exit with a warning, as I think most people have like | ||
| 3234 | me mounts that are to boxes that are not always up. | ||
| 3235 | |||
| 3236 | Resolve bug #2439 (should not use try with the dd command for ramdisk | ||
| 3237 | stuff). Also increase the number of inodes used for the ramdisk to | ||
| 3238 | fix "out of space" errors. Updated /sbin/rc for this. | ||
| 3239 | azarah | 1.79 | |
| 3240 | azarah | 1.77 | 10 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3241 | |||
| 3242 | azarah | 1.78 | Resolve bug #2505 ... /sbin/rc-envupdate.sh should not use |
| 3243 | backup files to generate /etc/profile.env. | ||
| 3244 | |||
| 3245 | azarah | 1.80 | Resolve bug #2489 and #2175. Modified /etc/init.d/net.eth0 |
| 3246 | for this. | ||
| 3247 | azarah | 1.77 | |
| 3248 | azarah | 1.75 | 6 May 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3249 | |||
| 3250 | Fixed /sbin/rc-envupdate.sh to only use the $KDEDIR of the highest | ||
| 3251 | azarah | 1.80 | /etc/env.d/ file. Same for $QTDIR. |
| 3252 | azarah | 1.75 | |
| 3253 | 5 May 2002; Martin Schlemmer <azarah@gentoo.org>: | ||
| 3254 | |||
| 3255 | Add /etc/DIR_COLORS as it is no longer shipped with fileutils, | ||
| 3256 | and is needed for some fixes. | ||
| 3257 | |||
| 3258 | azarah | 1.210 | 28 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3259 | azarah | 1.74 | |
| 3260 | Update /etc/rc.conf to be more clear and state that you should | ||
| 3261 | azarah | 1.80 | remove consolefont from startup if you do not use it. Should |
| 3262 | resolve bug #2174. | ||
| 3263 | azarah | 1.74 | |
| 3264 | azarah | 1.210 | 26 Apr 2002; Donny Davies <woodchip@gentoo.org> passwd, group : |
| 3265 | woodchip | 1.73 | |
| 3266 | Added user/group apache with uid/gid 81. | ||
| 3267 | |||
| 3268 | azarah | 1.210 | 25 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3269 | azarah | 1.72 | |
| 3270 | Remove the "-net" from the line setting the default gateway | ||
| 3271 | azarah | 1.80 | in /etc/init.d/net.eth0. Thanks to Peter W. Michaleas for |
| 3272 | noting this. | ||
| 3273 | azarah | 1.72 | |
| 3274 | azarah | 1.210 | 24 Apr 2002; Donny Davies <woodchip@gentoo.org> rc.conf : |
| 3275 | woodchip | 1.71 | |
| 3276 | Remove NFSSERVER from rc.conf since it's now covered in /etc/conf.d/nfs | ||
| 3277 | which is installed with the nfs-utils package. Also tidied up some | ||
| 3278 | really old, leftover junk like the non-supported stuff from rc5. | ||
| 3279 | Closes #1754. | ||
| 3280 | |||
| 3281 | azarah | 1.210 | 23 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3282 | azarah | 1.70 | |
| 3283 | Remove creation of /var/run/utmpx from bootmisc again. Seems | ||
| 3284 | other people have wierd problems. | ||
| 3285 | |||
| 3286 | azarah | 1.210 | * rc-scripts 1.3.4 (21 Apr 2002) |
| 3287 | azarah | 1.68 | |
| 3288 | azarah | 1.210 | 21 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3289 | azarah | 1.68 | |
| 3290 | Add /sbin/rc-envupdate.sh to speedup updating of /etc/profile.env, | ||
| 3291 | azarah | 1.80 | and /etc/csh.env. Update /etc/init.d/bootmisc to use this. |
| 3292 | azarah | 1.68 | |
| 3293 | azarah | 1.80 | Implement the status commandline argument. Updated /sbin/runscript.sh |
| 3294 | and /sbin/rc-help.sh for this. | ||
| 3295 | azarah | 1.69 | |
| 3296 | azarah | 1.80 | Fix /sbin/depscan.sh to honour NEED and USE overriding BEFORE |
| 3297 | and AFTER. | ||
| 3298 | azarah | 1.69 | |
| 3299 | azarah | 1.210 | 12 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3300 | azarah | 1.67 | |
| 3301 | Update /etc/init.d/bootmisc to create /var/run/utmpx. This | ||
| 3302 | is needed, else /usr/bin/newgrp segfault. | ||
| 3303 | |||
| 3304 | azarah | 1.210 | 11 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3305 | azarah | 1.66 | |
| 3306 | Update /etc/skel/.bash_profile to make it tcsh compadible. | ||
| 3307 | agriffis | 1.618 | Thanks to Väinö Järvelä for this fix. |
| 3308 | azarah | 1.66 | |
| 3309 | azarah | 1.67 | Update /etc/profile to also set the PS? variables if $SHELL |
| 3310 | is set to /bin/sh. This should make prompt colours in | ||
| 3311 | bootstrap work again. | ||
| 3312 | azarah | 1.66 | |
| 3313 | azarah | 1.67 | Move LVM stuff to checkfs to ensure that they get fscked. |
| 3314 | This resolves bug #1552. | ||
| 3315 | azarah | 1.66 | |
| 3316 | azarah | 1.210 | * rc-scripts 1.3.3 (5 Apr 2002) |
| 3317 | azarah | 1.65 | |
| 3318 | azarah | 1.210 | 5 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3319 | azarah | 1.65 | |
| 3320 | Move /etc/init.d/{depscan.sh,runscript.sh,functions.sh} to /sbin. | ||
| 3321 | This is done to try and ensure system integrity. | ||
| 3322 | |||
| 3323 | azarah | 1.210 | 1 Apr 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3324 | azarah | 1.64 | |
| 3325 | Add quotes to the "export INPUTRC=/etc/inputrc" line to resolve bug #1391. | ||
| 3326 | |||
| 3327 | Add a error message to /etc/init.d/consolefont, resolving bug #1415. | ||
| 3328 | |||
| 3329 | Add a bash check to the code that sets the prompt, fixing bug #1078. | ||
| 3330 | |||
| 3331 | azarah | 1.63 | * rc-scripts 1.3.2 (24 Mar 2002) |
| 3332 | |||
| 3333 | azarah | 1.210 | 24 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3334 | azarah | 1.61 | |
| 3335 | Resolve bug #1274. Updated /etc/init.d/hostname and /etc/init.d/bootmisc | ||
| 3336 | for this. | ||
| 3337 | |||
| 3338 | With the "before" and "after" stuff, recursion levels was getting too high, | ||
| 3339 | and with some cases, things just plain did not work as it should. Reworked | ||
| 3340 | things to to lower the levels of recursion and get the order right. Updated | ||
| 3341 | /etc/init.d/runscript.sh for this. | ||
| 3342 | |||
| 3343 | Fixed a problem in /sbin/rc and /etc/init.d/runscript.sh where | ||
| 3344 | ${svcdir}/softlevel did not always exist, but runscript.sh tried to open it. | ||
| 3345 | |||
| 3346 | Enhance --quiet support. Updated /etc/init.d/functions.sh for this. | ||
| 3347 | |||
| 3348 | Remove /etc/pwdb.conf, as pwdb already install a copy of this. | ||
| 3349 | |||
| 3350 | Remove /etc/pam.d/{rexec,rlogin,rsh} as pam already install this. | ||
| 3351 | |||
| 3352 | azarah | 1.62 | Added $INPUTRC to /etc/profile, since too many people keep on bugging me, |
| 3353 | and it seems it has fallen now to my discression. | ||
| 3354 | |||
| 3355 | drobbins | 1.59 | * rc-scripts 1.3.1 (23 Mar 2002) |
| 3356 | |||
| 3357 | azarah | 1.210 | 23 Mar 2002; Daniel Robbins <drobbins@gentoo.org>: init.d/net.eth0: fix for |
| 3358 | drobbins | 1.60 | DHCP lease release from Jim Nutt. |
| 3359 | |||
| 3360 | azarah | 1.210 | 23 Mar 2002; Daniel Robbins <drobbins@gentoo.org>: rolling a new release |
| 3361 | drobbins | 1.60 | since there are a lot of important bug fixes in here that are needed. |
| 3362 | drobbins | 1.59 | |
| 3363 | azarah | 1.210 | 23 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3364 | azarah | 1.58 | |
| 3365 | Resolve bug #1292. | ||
| 3366 | |||
| 3367 | Remove the extra 'depmod -a' in /etc/init.d/modules, thanks to | ||
| 3368 | Spidler. | ||
| 3369 | |||
| 3370 | azarah | 1.210 | 21 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3371 | azarah | 1.57 | |
| 3372 | Update /sbin/rc to fix a 'cat mounts' instead of the correct | ||
| 3373 | version, 'cat /proc/mounts'. | ||
| 3374 | |||
| 3375 | azarah | 1.210 | 19 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3376 | azarah | 1.56 | |
| 3377 | Add initial support for the --quiet flag that suppress output. | ||
| 3378 | |||
| 3379 | azarah | 1.210 | 18 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3380 | azarah | 1.55 | |
| 3381 | Remove the 'try' from 'try /etc/init.d/depscan.sh' in /sbin/rc | ||
| 3382 | as not all errors by depscan.sh is critical. It should be | ||
| 3383 | reworked to do better error handeling. | ||
| 3384 | |||
| 3385 | azarah | 1.210 | 14 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3386 | azarah | 1.54 | |
| 3387 | Fix the GID and UID of nobody and nogroup in /etc/passwd and | ||
| 3388 | /etc/group to match those of Debian, FBSD and others. Thanks | ||
| 3389 | to those who reported it, and Woodchip for looking up the | ||
| 3390 | proper values. | ||
| 3391 | |||
| 3392 | Update /etc/init.d/net.eth0 to properly down DHCP interfaces. | ||
| 3393 | This resolves bug #1150, thanks to Paul Fleischer. | ||
| 3394 | |||
| 3395 | azarah | 1.210 | 11 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3396 | azarah | 1.53 | |
| 3397 | Updated /etc/init.d/functions.sh not to use /usr/bin/basename, | ||
| 3398 | as some users have /usr on seperate partition which is not | ||
| 3399 | mounted when depscan.sh is run the first time. | ||
| 3400 | |||
| 3401 | Updated the checking for more than one service providing the | ||
| 3402 | same virtual function in /etc/init.d/depscan.sh. It should | ||
| 3403 | be working now, and this also fix a problem that when there is no | ||
| 3404 | service providing a virtual, counter was used uninitialized. | ||
| 3405 | |||
| 3406 | azarah | 1.210 | * rc-scripts 1.3.0 (10 Mar 2002) |
| 3407 | azarah | 1.52 | |
| 3408 | azarah | 1.210 | 10 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3409 | azarah | 1.80 | |
| 3410 | Resolved bug #1021; updated /etc/init.d/consolefont for this. | ||
| 3411 | azarah | 1.52 | |
| 3412 | Resolved bug #1029; updated /etc/init.d/net.eth0 for this. | ||
| 3413 | |||
| 3414 | Resolved bug #990; updated /etc/init.d/net.eth0, /etc/init.d/netmount | ||
| 3415 | and /etc/init.d/localmount for this. | ||
| 3416 | |||
| 3417 | Lots of form/syntax cleanups, most things should be more | ||
| 3418 | consistant now. Fixed fail detection/return values of lots of | ||
| 3419 | scripts. | ||
| 3420 | |||
| 3421 | Lots of cleanup/fixes in the three main scripts behind our | ||
| 3422 | rc-system, /sbin/rc, /etc/init.d/depscan.sh, /etc/init.d/runscript.sh | ||
| 3423 | |||
| 3424 | Fix a bug regarding a invalid $PATH for portage if /etc/init.d/functions.sh | ||
| 3425 | is sourced in a ebuild. | ||
| 3426 | |||
| 3427 | Fix a bug that our rc-script wrapper introduced: Global variables | ||
| 3428 | in scripts no longer worked. Updated /etc/init.d/runscript.sh for | ||
| 3429 | this. | ||
| 3430 | |||
| 3431 | Implemented more error checking for the main startup code in /sbin/rc. | ||
| 3432 | Also fixed try() for mounting /proc (maybe all mount commands). | ||
| 3433 | The function worked fine in a simulated test, but in real life failed | ||
| 3434 | to detect a error when mounting /proc (remember to thank Grant for | ||
| 3435 | his UserMode ebuilds, and Guide). | ||
| 3436 | |||
| 3437 | azarah | 1.210 | * rc-scripts 1.2.9 (6 Mar 2002) |
| 3438 | azarah | 1.51 | |
| 3439 | azarah | 1.210 | 6 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3440 | azarah | 1.80 | |
| 3441 | General form updates and some piping fixes. | ||
| 3442 | azarah | 1.51 | |
| 3443 | Updated /etc/inittab, /etc/init.d/xdm and /etc/X11/startDM.sh | ||
| 3444 | to fix a problem where startDM.sh would be respawned repeatedly | ||
| 3445 | if xdm was not in the default runlevel. | ||
| 3446 | drobbins | 1.6 | |
| 3447 | azarah | 1.210 | * rc-scripts 1.2.8 (4 Mar 2002) |
| 3448 | azarah | 1.49 | |
| 3449 | azarah | 1.210 | 4 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3450 | azarah | 1.80 | |
| 3451 | Add /etc/init.d/xdm, /etc/X11/startDM.sh and updated /etc/inittab | ||
| 3452 | to fix the "dead key" problem we had with xdm/gdm/kdm. We should | ||
| 3453 | move them to the xfree ebuild later on when things settles down. | ||
| 3454 | azarah | 1.49 | |
| 3455 | Added some sanity checks to /sbin/rc, /etc/init.d/runscripts.sh. | ||
| 3456 | |||
| 3457 | Added a basic $PATH to /etc/init.d/functions.sh to fix a problem | ||
| 3458 | where we had a invalid $PATH on boot in some cases. | ||
| 3459 | |||
| 3460 | azarah | 1.50 | Updated /etc/init.d/keymap and /etc/init.d/consolefont to work with |
| 3461 | the new sys-apps/kbd package. | ||
| 3462 | |||
| 3463 | azarah | 1.210 | * rc-scripts 1.2.7 (3 Mar 2002) |
| 3464 | azarah | 1.48 | |
| 3465 | azarah | 1.210 | 3 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3466 | azarah | 1.80 | |
| 3467 | Fixed the problem of rc-scripts trying to start/stop a service multiple | ||
| 3468 | times if it fails to do so. Updated /etc/init.d/runscript.sh and /sbin/rc | ||
| 3469 | for this. | ||
| 3470 | azarah | 1.47 | |
| 3471 | Fixing some variable declarations in /etc/init.d/runscript.sh caused | ||
| 3472 | /etc/init.d/net.lo to fail on stop ($IFACE was set invalid). Fixed | ||
| 3473 | this. | ||
| 3474 | |||
| 3475 | Added caching of the "depend() { need foo; } " lines, and updated | ||
| 3476 | /etc/init.d/depscan.sh to touch the actual files less. This should | ||
| 3477 | azarah | 1.197 | speedup dependency caching a lot, especially on slow machines. |
| 3478 | azarah | 1.48 | |
| 3479 | Updated /etc/passwd to have users with no shell defined, use /bin/false | ||
| 3480 | for security. | ||
| 3481 | |||
| 3482 | Update /etc/fstab to mention /dev/shm since we dont mount it anymore. | ||
| 3483 | azarah | 1.47 | |
| 3484 | azarah | 1.210 | 1 Mar 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3485 | azarah | 1.80 | |
| 3486 | Added a wrapper for sourcing the rc-scripts to eliminate syntax errors. | ||
| 3487 | Thanks to Karl Trygve Kalleberg (aka karltk) for the idea. Updated | ||
| 3488 | azarah | 1.46 | /etc/init.d/depscan.sh, /etc/init.d/functions.sh and |
| 3489 | /etc/init.d/runscript.sh for this (added wrap_rcscript() function). | ||
| 3490 | |||
| 3491 | azarah | 1.197 | Removed stopping of dependent services that have current service as |
| 3492 | a 'use'dependency ... should be less confusing now. | ||
| 3493 | azarah | 1.46 | Updated /etc/init.d/runscript.sh for this. |
| 3494 | |||
| 3495 | azarah | 1.80 | 28 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3496 | |||
| 3497 | Add /etc/conf.d/local.start and /etc/conf.d/local.stop for adding any misc | ||
| 3498 | programs to startup. This should pretty much have /etc/init.d/ static, | ||
| 3499 | except for baselayout updates, etc. | ||
| 3500 | |||
| 3501 | 27 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: | ||
| 3502 | |||
| 3503 | In some wierd cases, a redundent /dev/.devfsd on a unmounted /dev can cause | ||
| 3504 | problems. Fixed this in /sbin/rc. | ||
| 3505 | azarah | 1.44 | |
| 3506 | Added the patches from Grant Goodyear (aka g2boojum) to enable us to | ||
| 3507 | use a ramdisk to store the contents of ${svcdir}. Updated /sbin/rc, | ||
| 3508 | /etc/init.d/functions.sh and /etc/init.d/checkroot for this. | ||
| 3509 | azarah | 1.43 | |
| 3510 | azarah | 1.80 | 26 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3511 | |||
| 3512 | Fix my brain dead update of the 25th. It really should keep | ||
| 3513 | "gentoo=nodevfs" in mind. Also added 'get_bootparam()' to help in | ||
| 3514 | retrieving kernel options. Updated /etc/init.d/functions.sh, | ||
| 3515 | /etc/init.d/checkroot and /sbin/rc for this. | ||
| 3516 | azarah | 1.41 | |
| 3517 | Updated /etc/init.d/consolefont to work without devfs as well. | ||
| 3518 | |||
| 3519 | azarah | 1.42 | When rebooting or shutting down, a service should not fail to stop |
| 3520 | if a service it depends on, fails. Updated /etc/init.d/runscript.sh | ||
| 3521 | for this. | ||
| 3522 | |||
| 3523 | azarah | 1.80 | 25 Feb 2002; Martin Schlemmer <azarah@gentoo.org>: |
| 3524 | |||
| 3525 | Added a check if /dev is mounted when creating entries for /etc/mtab. | ||
| 3526 | This should solve a invalid entry or /dev being mounted even with | ||
| 3527 | 'gentoo=nodevfs' option. Updated /etc/init.d/checkroot for this. | ||
| 3528 | azarah | 1.40 | |
| 3529 | drobbins | 1.39 | 17 Feb 2002: Daniel Robbins <drobbins@gentoo.org>: Made "xfs" the default |
| 3530 | filesystem in /etc/fstab (from ReiserFS) and removed "notail" option (it's | ||
| 3531 | just in a comment now) | ||
| 3532 | |||
| 3533 | azarah | 1.80 | 17 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
| 3534 | |||
| 3535 | Mmore fixes to 'after' and 'before', updated /etc/init.d/runscript.sh for | ||
| 3536 | this. This should fix services not getting started in the correct order | ||
| 3537 | in a tight loop, services getting stopped out of order, and some other | ||
| 3538 | sanity checks. Updated rc-script.sh for updated help. | ||
| 3539 | |||
| 3540 | 15 Feb 2002: Martin Schlemmer (azarah@gentoo.org): | ||
| 3541 | |||
| 3542 | Update /etc/profile to resolve bug #588. Reimplemented things a bit, | ||
| 3543 | and added the 'after' type. 'before' and 'after' will only work currently | ||
| 3544 | for a change of runlevel. Updated /etc/init.d/depscan.sh, | ||
| 3545 | /etc/init.d/runscript.sh and /sbin/rc for this. | ||
| 3546 | azarah | 1.36 | |
| 3547 | azarah | 1.80 | 13 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
| 3548 | |||
| 3549 | Add some more entries to /etc/devfsd.conf to make alsa users life | ||
| 3550 | easier ... thanks Tod. | ||
| 3551 | drobbins | 1.39 | |
| 3552 | azarah | 1.80 | 12 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
| 3553 | |||
| 3554 | Some more cleanups to /etc/init.d/depscan.sh and /etc/init.d/runscript.sh. | ||
| 3555 | azarah | 1.36 | |
| 3556 | Fixed some services not starting again when restarting a service. | ||
| 3557 | Seems simple is still the best way. | ||
| 3558 | |||
| 3559 | Fixed some other problems created with feature additions and cleanups. | ||
| 3560 | |||
| 3561 | azarah | 1.80 | 11 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
| 3562 | |||
| 3563 | General cleanups to /etc/init.d/depscan.sh and /etc/init.d/runscript.sh. | ||
| 3564 | azarah | 1.36 | |
| 3565 | Added 'before *' to /etc/init.d/checkroot to make sure it gets | ||
| 3566 | started first. | ||
| 3567 | |||
| 3568 | Added 'use *' to /etc/init.d/local to make sure it gets started | ||
| 3569 | last. | ||
| 3570 | |||
| 3571 | azarah | 1.80 | 10 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
| 3572 | |||
| 3573 | Fixed /sbin/rc to stop a service on change of runlevel if it is | ||
| 3574 | in 'use' by another service. | ||
| 3575 | azarah | 1.36 | |
| 3576 | Added the 'provide' depend type for creating virtual services. | ||
| 3577 | Updated /etc/init.d/depscan.sh for this. | ||
| 3578 | |||
| 3579 | Added the 'before' depend type. This is more for changing the | ||
| 3580 | order services start in. Updated /etc/init.d/depscan.sh and | ||
| 3581 | /etc/init.d/functions.sh for this. | ||
| 3582 | |||
| 3583 | Updated /etc/init.d/depscan.sh to work with '*' as argument for | ||
| 3584 | azarah | 1.197 | dependency types. This can be used with 'use' and 'before' to |
| 3585 | azarah | 1.36 | start a script last or first respectively. |
| 3586 | |||
| 3587 | Added save_options() and get_options() to /etc/init.d/functions.sh | ||
| 3588 | for saving misc settings between startup/shutdown. Updated | ||
| 3589 | /etc/init.d/net.eth0 to use these and properly down virtual | ||
| 3590 | interfaces. | ||
| 3591 | |||
| 3592 | azarah | 1.80 | 6 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
| 3593 | |||
| 3594 | Updated both /etc/init.d/bootmisc and /etc/init.d/keymaps to be quiet | ||
| 3595 | on no errors. | ||
| 3596 | azarah | 1.36 | |
| 3597 | * rc-scripts 1.2.6 (6 Feb 2002) | ||
| 3598 | |||
| 3599 | azarah | 1.80 | 2 Feb 2002: Martin Schlemmer (azarah@gentoo.org): |
| 3600 | |||
| 3601 | Updated /etc/net.eth0 to specify the gateway device via the $gateway | ||
| 3602 | variable (something like gateway="eth0/192.168.0.1"). | ||
| 3603 | |||
| 3604 | 2 Feb 2002: Martin Schlemmer (azarah@gentoo.org): | ||
| 3605 | |||
| 3606 | Added rc-script /etc/init.d/numlock, for enabling numlock at boot. | ||
| 3607 | |||
| 3608 | 29 Jan 2002: Martin Schlemmer (azarah@gentoo.org): | ||
| 3609 | |||
| 3610 | Hopefully the last fix to /etc/init.d/netmount to umount cleanly. This fix | ||
| 3611 | implements a retry if not successful the first time, and will kill | ||
| 3612 | processess using the mount. Also small type-o fix to /etc/init.d/halt.sh. | ||
| 3613 | azarah | 1.33 | |
| 3614 | woodchip | 1.32 | 27 Jan 2002: Donny Davies (woodchip@gentoo.org): security fix to |
| 3615 | /etc/pam.d/sshd,login,chsh: added pam_shells.so to the stack. | ||
| 3616 | Fixed /etc/passwd,group for user/group mysql. | ||
| 3617 | |||
| 3618 | azarah | 1.31 | 27 Jan 2002: Martin Schlemmer (azarah@gentoo.org): added charset |
| 3619 | map file support to /etc/init.d/consolefont and the setting to | ||
| 3620 | /etc/rc.conf. | ||
| 3621 | |||
| 3622 | azarah | 1.30 | 25 Jan 2002: Martin Schlemmer (azarah@gentoo.org): fixed dircolors |
| 3623 | in skel files to support both versions of dircolors. | ||
| 3624 | |||
| 3625 | azarah | 1.28 | 23 Jan 2002: Martin Schlemmer (azarah@gentoo.org): fixed bug |
| 3626 | azarah | 1.31 | in the restart stuff of /etc/init.d/runscript.sh that caused |
| 3627 | a restart of a 'net' service not to restart services again | ||
| 3628 | that depended on it. | ||
| 3629 | azarah | 1.28 | |
| 3630 | azarah | 1.27 | * rc-scripts 1.2.5 (20 Jan 2002) |
| 3631 | |||
| 3632 | azarah | 1.26 | 20 Jan 2002: Martin Schlemmer (azarah@gentoo.org): updated |
| 3633 | /etc/init.d/net.eth0 to 'use' pcmcia. | ||
| 3634 | |||
| 3635 | azarah | 1.25 | 8 Jan 2002: Martin Schlemmer (azarah@gentoo.org): added '--sh' to |
| 3636 | the dircolors command in /etc/skel/.bash_profile to handle cases | ||
| 3637 | where bash do not export $SHELL. | ||
| 3638 | |||
| 3639 | 6 Jan 2002: Martin Schlemmer (azarah@gentoo.org): updated | ||
| 3640 | /etc/init.d/runscripts.sh, /etc/init.d/net.eth0, /etc/conf.d/net and | ||
| 3641 | removed /etc/init.d/net.eth0-dhcp to reflect a new 'bsd-ish' config | ||
| 3642 | scheme for the net.eth* scripts. | ||
| 3643 | |||
| 3644 | woodchip | 1.24 | 6 Jan 2002: Donny Davies (woodchip@gentoo.org): Removed email address |
| 3645 | from manpages; no need for that.. | ||
| 3646 | azarah | 1.25 | |
| 3647 | 5 Jan 2002: Martin Schlemmer (azarah@gentoo.org): fix type-o in | ||
| 3648 | /etc/devfsd.conf; had 'dvd' in the cdrw stuff. | ||
| 3649 | woodchip | 1.24 | |
| 3650 | drobbins | 1.23 | * rc-scripts 1.2.4 (30 Dec 2001) |
| 3651 | |||
| 3652 | 30 Dec 2001: Daniel Robbins (drobbins@gentoo.org): Changed default umask | ||
| 3653 | back to 022 as it should be. | ||
| 3654 | |||
| 3655 | azarah | 1.22 | 30 Dec 2001; Martin Schlemmer (azarah@gentoo.org): Updated |
| 3656 | /etc/init.d/checkfs to return 0 if the fs was successfully repaired. | ||
| 3657 | |||
| 3658 | woodchip | 1.21 | 29 Dec 2001; Donny Davies (woodchip@gentoo.org): |
| 3659 | sort -t: -k3,3 -n /etc/passwd,group. Ahhhh :)) | ||
| 3660 | |||
| 3661 | azarah | 1.80 | 28 Dec 2001; Martin Schlemmer (azarah@gentoo.org); |
| 3662 | |||
| 3663 | azarah | 1.197 | Updated /etc/init.d/depscan.sh to store info about missing dependencies |
| 3664 | azarah | 1.80 | of type 'need' in ${svcdir}/broken. Also updated /etc/init.d/runscript.sh |
| 3665 | azarah | 1.197 | to use this when starting a script ('need' dependencies is critical for |
| 3666 | azarah | 1.20 | startup). Added the broken() function to /etc/init.d/runscript.sh |
| 3667 | azarah | 1.197 | to list the missing dependencies. |
| 3668 | azarah | 1.20 | |
| 3669 | Updated /etc/init.d/runscript.sh for svc_start() to have better error | ||
| 3670 | checking. | ||
| 3671 | |||
| 3672 | Updated /etc/init.d/functions.sh with ewend(), which is the same as | ||
| 3673 | eend(), but print a warning on error, not a error. Updated | ||
| 3674 | /etc/init.d/checkroot and /etc/init.d/checkfs to use this function. | ||
| 3675 | |||
| 3676 | azarah | 1.80 | 27 Dec 2001; Martin Schlemmer (azarah@gentoo.org); |
| 3677 | |||
| 3678 | Update /sbin/runscript.c to run /etc/init.d/rc-help.sh if no arguments | ||
| 3679 | is passed to a rc-script. | ||
| 3680 | azarah | 1.20 | |
| 3681 | Added /etc/init.d/rc-help.sh, simple script that prints out help for | ||
| 3682 | the rc-scripts. | ||
| 3683 | |||
| 3684 | azarah | 1.80 | 25 Dec 2001; Martin Schlemmer (azarah@gentoo.org); |
| 3685 | |||
| 3686 | Update /etc/init.d/shutdown.sh and /etc/init.d/reboot.sh not to force the | ||
| 3687 | halt and reboot. This fixes a problem where / was not unmounted properly | ||
| 3688 | in some cases. | ||
| 3689 | |||
| 3690 | 24 Dec 2001; Martin Schlemmer (azarah@gentoo.org): | ||
| 3691 | |||
| 3692 | Move $svcdir to to /etc/init.d/functions.sh, and update | ||
| 3693 | /etc/init.d/runscript.sh and /etc/init.d/depscan.sh for this | ||
| 3694 | azarah | 1.19 | |
| 3695 | Modified /etc/init.d/runscript.sh to also restart the services that | ||
| 3696 | depend on a service if that service is restarted. Enhanced the | ||
| 3697 | restart function to be able to have custom restart() functions in | ||
| 3698 | rc-scripts. The custom restart() have to use svc_stop() and | ||
| 3699 | svc_start() to restart the service. | ||
| 3700 | |||
| 3701 | Add a pause function to /etc/init.d/runscript.sh. It will basically | ||
| 3702 | stop a service without stopping the services that depends on that | ||
| 3703 | service. | ||
| 3704 | drobbins | 1.23 | |
| 3705 | azarah | 1.80 | Add a pause function to /etc/init.d/runscript.sh. It will basically stop a |
| 3706 | service without stopping the services that depends on that service. | ||
| 3707 | azarah | 1.19 | |
| 3708 | * rc-scripts 1.2.3 (18 Dec 2001) | ||
| 3709 | |||
| 3710 | azarah | 1.80 | 16 Dec 2001; Martin Schlemmer (azarah@gentoo.org): |
| 3711 | |||
| 3712 | Moved the stuff from /sbin/init (old) to /sbin/rc (basically drop the | ||
| 3713 | init wrapper we used). | ||
| 3714 | azarah | 1.19 | |
| 3715 | Some cleanups: take out the shm resize comment; | ||
| 3716 | |||
| 3717 | remove the $wrongmount; | ||
| 3718 | |||
| 3719 | remove the mountshm() function and insert it directly | ||
| 3720 | where needed; | ||
| 3721 | |||
| 3722 | remove the setting of $PATH as /sbin/init already do | ||
| 3723 | this for us. | ||
| 3724 | |||
| 3725 | Added the if statement to detect if it is the first time the 'boot' | ||
| 3726 | runlevel is executed (if [ "$RUNLEVEL" = "S" ] && [ "$argv1" = "boot" ]). | ||
| 3727 | $RUNLEVEL is a env var set by /sbin/init. | ||
| 3728 | |||
| 3729 | Also added functionality to detect if the kernel have DEVFS support | ||
| 3730 | compiled in; seems new users thinks devfs is unstable and as they do | ||
| 3731 | not always read the docs, it does not get compiled in ;/ Should | ||
| 3732 | make live for us a bit easier. | ||
| 3733 | |||
| 3734 | azarah | 1.80 | 14 Dec 2001; Martin Schlemmer (azarah@gentoo.org): |
| 3735 | |||
| 3736 | Fixed /sbin/rc to kill a cosmetic bug in the part that stops all | ||
| 3737 | the unneeded services. | ||
| 3738 | azarah | 1.19 | |
| 3739 | woodchip | 1.16 | * rc-scripts 1.2.2 (8 Dec 2001) |
| 3740 | |||
| 3741 | azarah | 1.18 | 10 Dec 2001; Added a localhost entry in /etc/hosts. |
| 3742 | |||
| 3743 | woodchip | 1.16 | 8 Dec 2001; Donny Davies (woodchip@gentoo.org): Added start-stop-daemon.c |
| 3744 | to rc-scripts/sbin source. Moved rc-scripts/init.d/runscript.c to | ||
| 3745 | rc-scripts/sbin/runscript.c. Added manpage for start-stop-daemon. | ||
| 3746 | Start-stop-daemon is moved here from sysvinit by the way. There is stuff | ||
| 3747 | in this ChangeLog that needs to be removed! Like the changes to hosts, | ||
| 3748 | profile. /etc/{passwd,group} have minor UID and GID type fixes for | ||
| 3749 | woodchip | 1.17 | users ftp, postgres, xfs. Tweaked tarball.sh to not include CVS |
| 3750 | directories. | ||
| 3751 | woodchip | 1.16 | |
| 3752 | woodchip | 1.13 | 29 Nov 2001; Donny Davies (woodchip@gentoo.org): Added a man directory |
| 3753 | to rc-scripts. Checked in two manpages there, one for modules.autoload.5 | ||
| 3754 | woodchip | 1.14 | and one for update-modules.8. These were adapted from Debian. Updated |
| 3755 | tarball.sh to include the new man directory. Updated baselayout to install | ||
| 3756 | these manpages. Slightly tweak the /etc/modules.autoload comments. | ||
| 3757 | woodchip | 1.13 | |
| 3758 | azarah | 1.80 | 28 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
| 3759 | |||
| 3760 | Updated /sbin/init to work correctly with the 'gentoo=nodevfs' option, | ||
| 3761 | and cleaned out old code. | ||
| 3762 | drobbins | 1.15 | |
| 3763 | Updated /etc/init.d/bootmisc with additional lock files to clean. | ||
| 3764 | |||
| 3765 | azarah | 1.80 | 27 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
| 3766 | |||
| 3767 | Updated /etc/init.d/depscan.sh for a virtual 'use' depend, called 'logger' | ||
| 3768 | that can be used for services that needs to have a logger started before | ||
| 3769 | they are started. Updated /etc/conf.d/basic with $SYSLOGGER that is used | ||
| 3770 | to define what loggers the 'logger' depend represent. | ||
| 3771 | drobbins | 1.15 | |
| 3772 | azarah | 1.80 | 26 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
| 3773 | |||
| 3774 | Updated /etc/passwd and /etc/group with minor fixes to pass pwck | ||
| 3775 | and grpck. | ||
| 3776 | drobbins | 1.15 | |
| 3777 | azarah | 1.80 | 25 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
| 3778 | |||
| 3779 | Changed umask in /etc/profile for the user to 077 for security. | ||
| 3780 | drobbins | 1.15 | |
| 3781 | Added a stop() function to /etc/init.d/clock. Also removed uneeded | ||
| 3782 | 'source /etc/rc.conf' line. | ||
| 3783 | |||
| 3784 | Updated /etc/init.d/hostname to set the hostname to 'localhost' if | ||
| 3785 | /etc/hostname is invalid. | ||
| 3786 | |||
| 3787 | Updated /sbin/init to move the entries in /lib/dev-state to /dev before | ||
| 3788 | running devfsd, as it did still not save settings properly. Also removed | ||
| 3789 | old /dev-state/compat stuff. | ||
| 3790 | |||
| 3791 | drobbins | 1.12 | 25 Nov 2001; ncsd, the name service cache daemon script, has been removed |
| 3792 | from the default "default" runlevel. It still exists in the archive so that | ||
| 3793 | drobbins | 1.15 | users who want/need it can add it easily. |
| 3794 | drobbins | 1.12 | |
| 3795 | drobbins | 1.11 | 25 Nov 2001; Updated the /etc/fstab; removed usbdevfs (explicitly mounted), |
| 3796 | drobbins | 1.15 | removed notail from the ext2 boot partition, other cleanups. |
| 3797 | drobbins | 1.11 | |
| 3798 | drobbins | 1.10 | 25 Nov 2001; Fixed init.d/clock script to work in UTC mode. |
| 3799 | drobbins | 1.15 | |
| 3800 | azarah | 1.80 | 24 Nov 2001; Martin Schlemmer (azarah@gentoo.org): |
| 3801 | |||
| 3802 | Added /etc/devfsd.conf and updated /sbin/init to use a new scheme for saving | ||
| 3803 | /dev permissions. Also moved /dev-state to /lib/dev-state which is a more | ||
| 3804 | standard location. | ||
| 3805 | drobbins | 1.15 | |
| 3806 | Fixed a ugly bug in /etc/init.d/depscan.sh. If a service depended on | ||
| 3807 | itself, calling depscan.sh or changing runlevels cause a tempory effect | ||
| 3808 | similar to a 'mini fork bomb'. Afterwards the depends was broken, and | ||
| 3809 | changing runlevels did not want to work. | ||
| 3810 | |||
| 3811 | Updated /etc/init.d/halt.sh to terminate and display message for devfsd. | ||
| 3812 | More cosmetic than anything else, but cant hurt with the new dev-state | ||
| 3813 | scheme. | ||
| 3814 | |||
| 3815 | Updated /sbin/init to set the console log level to 1, so that bootup | ||
| 3816 | can be much cleaner. Also updated /etc/init.d/modules not to have | ||
| 3817 | a logger in it 'use' depends, as it should not be needed anymore. | ||
| 3818 | |||
| 3819 | Updated /sbin/rc to check if devfsd is still running between runlevel | ||
| 3820 | changes. | ||
| 3821 | |||
| 3822 | Updated /etc/init.d/modules to run update-modules. We want to be sure | ||
| 3823 | /etc/modules.conf is updated when running depmod -a. | ||
| 3824 | |||
| 3825 | Change ftp's uid to 21 in /etc/passwd (was the same as bind). Also | ||
| 3826 | added a entry for xfs (X Font Server) in /etc/passwd and /etc/group. | ||
| 3827 | |||
| 3828 | Added /etc/init.d/net.ppp0, /etc/conf.d/net.ppp0 and | ||
| 3829 | /usr/lib/ppp/chat-default as part of my new pppd scripts. Also | ||
| 3830 | updated tarball.sh to handle ppp/chat-default. | ||
| 3 |