/[smeserver]/rpms/initscripts/sme9/initscripts.spec
ViewVC logotype

Contents of /rpms/initscripts/sme9/initscripts.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.14 - (show annotations) (download)
Wed Apr 5 22:43:40 2017 UTC (7 years, 2 months ago) by unnilennium
Branch: MAIN
Changes since 1.13: +33 -10 lines
new source

1 %define with_upstart 1%{nil}
2
3 Summary: The inittab file and the /etc/init.d scripts
4 Name: initscripts
5 Version: 9.03.58
6 # ppp-watch is GPLv2+, everything else is GPLv2
7 License: GPLv2 and GPLv2+
8 Group: System Environment/Base
9 Release: 1%{?dist}
10 URL: http://fedorahosted.org/releases/i/n/initscripts/
11 Source: http://fedorahosted.org/releases/i/n/initscripts/initscripts-%{version}.tar.bz2
12 Patch1000: centos-initscripts.patch
13 Patch2000: initscripts-9.03.31-runlevel7.patch
14 Patch2001: initscripts-9.03.40-dmesg.patch
15 Patch2002: initscripts-9.03.40-slapd_alias_ldap.patch
16 Patch2003: initscripts-9.03.46-dont_run_plymouth_if_disabled.patch
17
18 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
19 Requires: mingetty, /bin/awk, /bin/sed, mktemp
20 Requires: /sbin/sysctl
21 Requires: /sbin/fuser, /bin/grep
22 Requires: /sbin/pidof, /sbin/blkid
23 Requires: module-init-tools >= 3.9-25
24 Requires: util-linux-ng >= 2.16
25 Requires: bash >= 3.0
26 Requires: sysvinit-tools >= 2.87-6
27 %if with_upstart
28 Requires: upstart >= 0.6.5-11
29 %else
30 Requires: SysVinit >= 2.85-38
31 %endif
32 Requires: /sbin/ip, /sbin/arping, net-tools, /bin/find
33 Requires: /etc/system-release
34 Requires: ethtool >= 1.8-2, /sbin/runuser
35 Requires: udev >= 125-1
36 Requires: cpio
37 Requires: plymouth
38 Conflicts: mkinitrd < 4.0, kernel < 2.6.18, mdadm < 3.1.2-9
39 Conflicts: ypbind < 1.6-12, psacct < 6.3.2-12, kbd < 1.06-19, lokkit < 0.50-14
40 Conflicts: dhclient < 12:4.1.0-6
41 Conflicts: tcsh < 6.13-5
42 Conflicts: xorg-x11, glib2 < 2.11.1-2
43 Conflicts: alsa-utils < 1.0.18
44 Conflicts: plymouth < 0.8.3-9
45 Conflicts: s390utils < 2:1.8.2-11
46 Conflicts: dmraid < 1.0.0.rc16-7, lvm2 < 2.02.100-5
47 Conflicts: e2fsprogs < 1.15
48 # http://bugzilla.redhat.com/show_bug.cgi?id=252973
49 Conflicts: nut < 2.2.0
50 Conflicts: NetworkManager < 1:0.8.0-12.git20100504
51 Obsoletes: hotplug <= 3:2004_09_23-10.1
52 Requires(pre): /usr/sbin/groupadd
53 Requires(post): /sbin/chkconfig, coreutils
54 Requires(preun): /sbin/chkconfig
55 BuildRequires: glib2-devel popt-devel gettext pkgconfig
56
57 %description
58 The initscripts package contains the basic system scripts used to boot
59 your Red Hat or Fedora system, change runlevels, and shut the system down
60 cleanly. Initscripts also contains the scripts that activate and
61 deactivate most network interfaces.
62
63 %package -n debugmode
64 Summary: Scripts for running in debugging mode
65 Requires: initscripts
66 Group: System Environment/Base
67
68 %description -n debugmode
69 The debugmode package contains some basic scripts that are used to run
70 the system in a debugging mode.
71
72 Currently, this consists of various memory checking code.
73
74 %prep
75 %setup -q
76
77 %patch1000 -p1
78 %patch2000 -p1
79 %patch2001 -p1
80 %patch2002 -p1
81 %patch2003 -p1
82
83 %build
84 make
85
86 %install
87 rm -rf $RPM_BUILD_ROOT
88 make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install
89
90 %find_lang %{name}
91
92 %if with_upstart
93 mv -f $RPM_BUILD_ROOT/etc/inittab.upstart $RPM_BUILD_ROOT/etc/inittab
94 %else
95 mv -f $RPM_BUILD_ROOT/etc/inittab.sysv $RPM_BUILD_ROOT/etc/inittab
96 rm -rf $RPM_BUILD_ROOT/etc/init
97 %endif
98 rm -f $RPM_BUILD_ROOT/etc/inittab.*
99
100 %ifnarch s390 s390x
101 rm -f \
102 $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-ctc \
103 %else
104 rm -f \
105 $RPM_BUILD_ROOT/etc/rc.d/rc.sysinit.s390init \
106 $RPM_BUILD_ROOT/etc/sysconfig/init.s390
107 %endif
108
109 %pre
110 /usr/sbin/groupadd -g 22 -r -f utmp
111
112 %post
113 touch /var/log/wtmp /var/run/utmp /var/log/btmp
114 chown root:utmp /var/log/wtmp /var/run/utmp /var/log/btmp
115 chmod 664 /var/log/wtmp /var/run/utmp
116 chmod 600 /var/log/btmp
117
118 /sbin/chkconfig --add netfs
119 /sbin/chkconfig --add network
120 /sbin/chkconfig --add netconsole
121
122 if [ ! -f /var/lib/random-seed -a -e /dev/urandom ] ; then
123 dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=4096 2>/dev/null
124 chmod 600 /var/lib/random-seed
125 fi
126
127 %preun
128 if [ $1 = 0 ]; then
129 /sbin/chkconfig --del netfs
130 /sbin/chkconfig --del network
131 /sbin/chkconfig --del netconsole
132 fi
133
134 %triggerun -- initscripts < 7.62
135 /sbin/chkconfig --del random
136 /sbin/chkconfig --del rawdevices
137 exit 0
138
139 %clean
140 rm -rf $RPM_BUILD_ROOT
141
142 %files -f %{name}.lang
143 %defattr(-,root,root)
144 %dir /etc/sysconfig/network-scripts
145 %config(noreplace) %verify(not md5 mtime size) /etc/adjtime
146 %config(noreplace) /etc/sysconfig/init
147 %config(noreplace) /etc/sysconfig/netconsole
148 %config(noreplace) /etc/sysconfig/readonly-root
149 /etc/sysconfig/network-scripts/ifdown
150 /sbin/ifdown
151 /etc/sysconfig/network-scripts/ifdown-post
152 /etc/sysconfig/network-scripts/ifup
153 /sbin/ifup
154 %dir /etc/sysconfig/console
155 %dir /etc/sysconfig/modules
156 %dir /etc/sysconfig/networking
157 %dir /etc/sysconfig/networking/devices
158 %dir /etc/sysconfig/networking/profiles
159 %dir /etc/sysconfig/networking/profiles/default
160 /etc/sysconfig/network-scripts/network-functions
161 /etc/sysconfig/network-scripts/network-functions-ipv6
162 /etc/sysconfig/network-scripts/init.ipv6-global
163 %config(noreplace) /etc/sysconfig/network-scripts/ifcfg-lo
164 /etc/sysconfig/network-scripts/ifup-post
165 /etc/sysconfig/network-scripts/ifdown-ppp
166 /etc/sysconfig/network-scripts/ifup-ppp
167 /etc/sysconfig/network-scripts/ifup-routes
168 /etc/sysconfig/network-scripts/ifdown-routes
169 /etc/sysconfig/network-scripts/ifup-plip
170 /etc/sysconfig/network-scripts/ifup-plusb
171 /etc/sysconfig/network-scripts/ifup-bnep
172 /etc/sysconfig/network-scripts/ifdown-bnep
173 /etc/sysconfig/network-scripts/ifup-eth
174 /etc/sysconfig/network-scripts/ifdown-eth
175 /etc/sysconfig/network-scripts/ifup-ipv6
176 /etc/sysconfig/network-scripts/ifdown-ipv6
177 /etc/sysconfig/network-scripts/ifup-sit
178 /etc/sysconfig/network-scripts/ifdown-sit
179 /etc/sysconfig/network-scripts/ifup-tunnel
180 /etc/sysconfig/network-scripts/ifdown-tunnel
181 /etc/sysconfig/network-scripts/ifup-aliases
182 /etc/sysconfig/network-scripts/ifup-ippp
183 /etc/sysconfig/network-scripts/ifdown-ippp
184 /etc/sysconfig/network-scripts/ifup-wireless
185 /etc/sysconfig/network-scripts/ifup-isdn
186 /etc/sysconfig/network-scripts/ifdown-isdn
187 /etc/sysconfig/network-scripts/net.hotplug
188 %ifarch s390 s390x
189 /etc/sysconfig/network-scripts/ifup-ctc
190 %endif
191 %config(noreplace) /etc/networks
192 /etc/rwtab
193 %dir /etc/rwtab.d
194 /etc/statetab
195 %dir /etc/statetab.d
196 %if with_upstart
197 /etc/init/*
198 %endif
199 %config /etc/X11/prefdm
200 %config(noreplace) /etc/inittab
201 %dir /etc/rc.d
202 %dir /etc/rc.d/rc[0-9].d
203 %config(missingok) /etc/rc.d/rc[0-9].d/*
204 /etc/rc[0-9].d
205 /etc/rc
206 %dir /etc/rc.d/init.d
207 /etc/rc.local
208 /etc/rc.sysinit
209 /etc/rc.d/init.d/*
210 /etc/rc.d/rc
211 %config(noreplace) /etc/rc.d/rc.local
212 /etc/rc.d/rc.sysinit
213 %config(noreplace) /etc/sysctl.conf
214 %dir /etc/sysctl.d
215 %exclude /etc/profile.d/debug*
216 /etc/profile.d/*
217 /usr/sbin/sys-unconfig
218 /sbin/setsysfont
219 /bin/ipcalc
220 /bin/usleep
221 %attr(4755,root,root) /usr/sbin/usernetctl
222 /sbin/consoletype
223 /sbin/fstab-decode
224 /sbin/genhostid
225 /sbin/getkey
226 /sbin/securetty
227 /sbin/sushell
228 %attr(2755,root,root) /sbin/netreport
229 /lib/udev/rules.d/*
230 /lib/udev/rename_device
231 /lib/udev/console_init
232 /lib/udev/console_check
233 /lib/udev/udev-kvm-check
234 /sbin/service
235 /sbin/ppp-watch
236 %{_mandir}/man*/*
237 %dir %attr(775,root,root) /var/run/netreport
238 %dir /etc/ppp
239 %dir /etc/ppp/peers
240 /etc/ppp/ip-up
241 /etc/ppp/ip-down
242 /etc/ppp/ip-up.ipv6to4
243 /etc/ppp/ip-down.ipv6to4
244 /etc/ppp/ipv6-up
245 /etc/ppp/ipv6-down
246 %dir /etc/NetworkManager
247 %dir /etc/NetworkManager/dispatcher.d
248 /etc/NetworkManager/dispatcher.d/00-netreport
249 /etc/NetworkManager/dispatcher.d/05-netfs
250 %doc sysconfig.txt sysvinitfiles static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6 COPYING README-init
251 /var/lib/stateless
252 %ghost %attr(0600,root,utmp) /var/log/btmp
253 %ghost %attr(0664,root,utmp) /var/log/wtmp
254 %ghost %attr(0664,root,utmp) /var/run/utmp
255 %ghost %attr(0644,root,root) /etc/sysconfig/kvm
256
257 %files -n debugmode
258 %defattr(-,root,root)
259 %config(noreplace) /etc/sysconfig/debug
260 /etc/profile.d/debug*
261
262 %changelog
263 * Tue Mar 21 2017 Johnny Hughes <johnny@centos.org> - 9.03.58-1
264 - Roll in CentOS Branding
265
266 * Wed Jan 18 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.03.58-1
267 - regression in commit bab72274889 fixed [missing $() for DAD detection]
268
269 * Tue Jan 10 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.03.57-1
270 - regression in commit ca3cea691b6 fixed [quotes for $DHCLIENTARGS removed]
271
272 * Mon Nov 21 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.03.56-1
273 - regression in commit ca3cea691b6 fixed [${LEASEFILE} not specified]
274
275 * Wed Nov 16 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.03.55-1
276 - ipcalc: detect invalid mask
277 - ifup-aliases: send gratuitous ARPs when adding addresses
278 - network: treat other tunnel interfaces (fixes ifdown stage)
279 - kexec-disable.conf: release kexec memory properly
280 - network-functions: do not send hostname via dhclient everytime
281 - sysconfig/network: NO_DHCP_HOSTNAME option introduced
282 - ipv6_add_addr_on_device: replace the existing address on NIC
283
284 * Mon Nov 7 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.03.54-1
285 - specfile: require newer lvm
286 - ifdown-eth: add timeout for when flushing global scope
287 - functions: support boolean values in is_true() & is_false()
288 - ifup-aliases: do not return with error when arping fails
289 - netconsole: resolve domain name via 'getent' instead of 'hosts'
290
291 * Tue Apr 12 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.53-1
292 - functions: parse -d first
293
294 * Mon Apr 11 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.52-1
295 - functions: fix ignored delay in killproc
296
297 * Tue Feb 23 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.51-1
298 - netfs: only unmount loopback device mounted on top of netdev or with back-file on netdev
299
300 * Tue Jan 19 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.50-1
301 - functions: improve killing loops
302 - netfs: tweak nfs umount
303 - sysctl.conf: mention sysctl -a
304 - sysconfig.txt: document PPPOE_EXTRA and PPPD_EXTRA
305 - spec: require plymouth
306 - fix mangled sysconfig/init.s390
307 - rc.sysinit: don't perform fsck twice with /.autorelabel
308 - ifdown-eth: fix comparison
309 - ifup-eth: if arping fails, output responding MAC
310 - network-functions: fix change_resolv_conf after grep update
311 - spec: add sysctl.d dir
312 - rc.sysinit: fix typo in fs
313 - rename_devices: comments need to have a blank before them
314 - rename_device: remove comments and trailing whitespaces
315 - bonding: warn if the ifup for slave device failed
316 - clarify daemon() usage message
317 - ifdown: clean ipv4 localhost addresses
318 - ifup-post: check resolve.conf also with DNS2
319 - ifup: add missing quotes
320 - ifup-eth: some bridge options are applied later
321 - init.d/halt: give init some time to reexecute
322 - network-scripts: DEVICE and HWADRR could be quoted by apostrophe
323 - ifup-wireless: fix calling of phy_wireless_device
324 - rc.sysinit: apply quotas after system is relabeled
325
326 * Thu Apr 09 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.49-1
327 - network-functions: fix change_resolv_conf after grep update
328
329 * Mon Mar 02 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.48-1
330 - use new -m option to pidof
331
332 * Fri Feb 27 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.47-1
333 - rc.sysinit: be more verbose
334 - init.d/functions: rc.debug option to debug initscripts
335 - ifup-aliases: inherit ARPCHECK from parent device
336 - netfs: don't race NFS umount to network shutdown
337 - network: report that we can't shut down network for root on netfs
338 - Fix tcsh + grep-2.7. (#636552)
339 - sysctl.conf: move bridge setting to module-init-tools
340 - rc.sysinit: set affinity also for current shell
341 - ifdown-eth: use scope host for lo
342 - improve_check_for_bond_master_in_install_bonding_driver
343 - network-functions: fix check in install_bonding_driver
344 - ifdown-post: remove resolv.conf only in specific cases
345 - netconsole: lets run earlier
346 - ipcalc: support RFC3021 (#997271)
347 - halt: add delay after upsdrvctl shutdown
348 - ifup: also set multicast_snooping after the bridge is up
349
350 * Tue Jul 22 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.46-1
351 - ifup,vlan: fix typo
352
353 * Tue Jul 08 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.45-1
354 - ifup,vlan: fix typo
355
356 * Wed Jun 18 2014 Lukáš Nykrýn - 9.03.44-1
357 - init.d/functions: fix typo in pid_dir
358
359 * Tue Jun 10 2014 Lukáš Nykrýn - 9.03.43-1
360 - ifup-aliases: arpcheck - check for parent operstate and carrier
361 - ifdown: don't wait for aliases
362 - hotplug: don't call ifup when new vlan appears
363 - ifup-wireless: add support for wowlan (second part)
364 - readonly-root: remount rpc_pipefs if readonly-root is used
365
366 * Fri Jun 06 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.42-1
367 - ipcalc: -c allow netmask
368 - ipcalc: parse prefix more safely
369 - vi.po: fix parentheses
370 - network-functions: handle BONDING_OPTS better
371 - custom naming for VLAN devices
372 - bonding: match whole name of interface
373 - network-functions: ETHTOOL_DELAY introduction patch
374 - ifup-wireless: add support for wowlan
375 - Remove NETWORKING_IPV6 from sysconfig.txt (#918622)
376 - bridging: add possibility to set prio and ageing
377
378 * Wed Apr 30 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.41-1
379 - netfs: implicitly handle glusterfs as a network filesystemd
380 - init.d/functions: check parent dir of pid file for accessibility
381 - ifup-eth: some options for bridge can be applied after the bridge is up
382 - rc.sysinit: apply sysctl settings before starting udev
383 - ifup: add possibility to specify value for -w parameter of arping
384 - ifup-tunnel: call ifup-ipv6 in the end
385 - pids_var_run: handle '(deleted)'
386 - require correct version of upstart
387 - rc.sysinit: use 'vgchange --ignoreskippedcluster'
388 - during install do not create /var/lib/random-seed if /dev/urandom does not exist
389 - rc.sysinit: increase the saved random-seed to 4K (#1023471)
390 - umount-loop: make sure that we don't kill our own process
391 - umount-loop: don't use xargs
392 - ifup-eth: remove ipx relic (#1028135)
393 - init.d/functions: add -b optin to status and killproc (#1047948)
394 - remove duplicit then
395
396 * Thu Oct 10 2013 Lukas Nykryn <lnykryn@redhat.com> - 9.03.40-1
397 - sync disks before halt (#1006294)
398 - provide KVM guest count and limit info message (#1014731)
399 - add ability to disable LVM activation on boot (#1015065)
400
401 * Fri Aug 09 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.39-1
402 - remount /proc to set attributes from fstab #984003
403 - print something when arping is detecting colliding ip addresses
404 - try dhcpv6 after v4 failed
405 - Allow dhclient configuration files for DHCPv6 as well. (#815676)
406 - ifdown: don't call nmcli on interface that is alread down
407 - call flush addresses with scope global
408 - init: inform users about .override files in .conf files
409 - netfs: do not force NFS exports to be mounted before _netdev mounts
410 - set net.ipv6.conf..autoconf in ifup-ipv6
411 - mention rule6 files
412 - securetty: check if the device is in the file before attempting to write to it
413 - Process rule6-* for sit devices (#840009)
414 - Killproc -d should parse same values as sleep
415 - Make killproc more granular when delay is passed. (#428029, <xjakub@fi.muni.cz>)
416 - bonding: set master up before slaves
417 - Fix greps to correctly handle comments and quotation (#915659)
418
419 * Wed Jan 09 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.38-1
420 - call ip link up on master after slaves are up (#893395)
421
422 * Thu Dec 13 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.37-1
423 - don't apply BONDING_OPTS on device with active slaves (#885235)
424
425 * Wed Nov 28 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.36-1
426 - improve duplicate ip address check in ifup-aliases (#880684)
427
428 * Fri Nov 23 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.35-1
429 - fix typo in ifup-aliases duplicate check (#879243)
430
431 * Thu Nov 15 2012 Václav Pavlín <vpavlin@redhat.com> - 9.03.34-1
432 - there should be crypttab instead of crypptab in man page (#870025)
433 - sysconfig.txt advised saslauthd -a instad of -v (#869075)
434
435 * Thu Nov 08 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.33-1
436 - apply BONDING_OPT on ifup of master (#874030)
437
438 * Mon Oct 08 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.32-1
439 - check an IP address for existence in ifup-alias
440 - remount /dev/shm in sysinit to apply attributes from fstab
441 - sets BONDING_OPTS before interface is brougth up and checks if it is not already added
442 - Add support for setting random bridge options via BRIDGING_OPTS
443 - use vgchange -aay in rc.sysinit and netfs init script
444 - script should not kill itself during shutdown
445 - fix the NIS domain setting
446 - be less strict about VLAN name
447 - clarification of work with white spaces in crypttab manpage
448 - re-read sysctl values for VLANs on ifup
449 - pass useful arguments to halt.local
450 - start serial console when we return from runlevel1
451 - move VLAN= docs to the interface configuration section, rather than /etc/sysconfig/network.
452 - don't accidentally match other bonding devices
453 - add usage stanzas for tty.conf and serial.conf
454 - rename_device: skip VLAN=yes configuration files
455 - allow duplicate address dectection to be disabled
456
457 * Fri Apr 27 2012 Lukas Nykryn <lnykryn@redhat.com> 9.03.31-1
458 - set NIS domain (#704919)
459
460 * Tue Mar 20 2012 Lukas Nykryn <lnykryn@redhat.com> 9.03.30-1
461 - fix IFS usage mangling device names (#802119)
462
463 * Wed Mar 14 2012 Lukas Nykryn <lnykryn@redhat.com> 9.03.29-1
464 - save entropy during system install (#786404)
465
466 * Tue Feb 14 2012 Lukas Nykryn <lnykryn@redhat.com> 9.03.28-1
467 - sysconfig support for IPv6 policy based routing (#781493)
468 - fix typo in translation (#757637)
469 - fix logic error with removing arp_ip_target (#787107, #746045)
470 - don't set primary before we enslave devices. (#749610, <agospoda@redhat.com>)
471 - do not check mounted filesystems (#745224)
472 - eviscerate ifconfig uses from ip-aliases (#721010, #588993)
473 - improve comment in init/serial.conf (#746808)
474 - turn off UPS in powerfail situation (#754984, <robert@fedoraproject.org>)
475 - netconsole exit arping on first response (#765835)
476 - add cifs to check for network filesystem (#760018)
477 - fix comments in sysctl.conf (#755175)
478 - rc.sysinit - use rcS-emergency job instead of sulogin (#582002)
479
480 * Fri Oct 07 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.27-1
481 - use restorecon -F for /dev and /dev/pts (#743222)
482
483 * Tue Sep 20 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.26-1
484 - add 'emergency' mode (#681357)
485 - kexec - free reservation memory only for crashkernel=auto (#734987)
486
487 * Tue Aug 16 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.25-1
488 - use /bin/plymouth (#702814)
489
490 * Mon Aug 15 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.24-1
491 - add support for sysctl.d (#680527)
492 - log network messages via syslog (#653630, #672202)
493 - document NM_CONTROLLED (#692123)
494 - don't explictly disallow IPv6 aliases (#692240)
495 - make sure the bond exists when we bring up the slaves. (#694501)
496 - properly add and remove arp_ip_target's (#675079)
497 - load static arp entries from ethers file (#696788)
498 - fix logic error in rc.sysinit (#698520, <jlau@redhat.com>)
499 - handle IPADDRx correctly for static addresses (#700184)
500 - don't match filesystem types in hostnames (#703210, <jmueller@data-tronics.com>)
501 - check for VLAN interfaces is being slave first (#703475)
502 - override NETMASK from PREFIX where specified (#705367, <mpoole@redhat.com>)
503 - allow multiple ETHTOOL_OPTS option types (#692410, #693583)
504 - don't mount gfs2 in netfs (#689593)
505 - fix pid file usage for IPv6. (#729292, <daveg@dgit.ndo.co.uk>)
506
507 * Tue Apr 19 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.23-1
508 - netfs: don't print errors if mdadm isn't installed. (#696110)
509
510 * Mon Mar 21 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.22-1
511 - init.d/functions: fix mishandled argument to fstab-decode (#682879)
512 - network-functions: fix check for unmanaged devices (#670154)
513
514 * Thu Mar 10 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.21-1
515 - remove network device naming requirement from VLAN devices (#676708, <Matt_Domsch@dell.com>)
516
517 * Thu Mar 10 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.20-1
518 - Don't do force/lazy umount for the first nfs umount. (#676851, <jlayton@redhat.com>)
519
520 * Fri Feb 04 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.19-1
521 - sys-unconfig(8) manpage fix (#674397)
522 - set default shmmax and shmall for certain architectures (#660036)
523
524 * Fri Jan 14 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.18-1
525 - don't use the ipv6_exec_ip wrapper
526 - don't accidentally cause sit module to be loaded on shutdown. (#654098, <ejsheldrake@gmail.com>)
527 - simplify various string match constructs. (#558575, <ville.skytta@iki.fi>)
528 - explicitly pass both device and dir when remounting read-only (#620461, <phr@doc.ic.ac.uk>)
529 - add infiniband mapping (#648524, <monis@voltaire.com>)
530 - fix ifdown calling nmcli for NM-managed devices (#612934, <jklimes@redhat.com>)
531 - allow 0 as a vlan tag. (#635360)
532 - support multiple IP addreses via IPADDRn, PREFIXn (or NETMASKn) (#633984)
533 - stop tty and serial also on runlevel 's' (#629257)
534 - system z optimized sysctl settings per default (#633323)
535 - don't run kexec-disable for runlevels [S016] (#658138)
536 - add # as a valid character in network device names (<Matt_Domsch@dell.com>)
537 - use SYSCTLDEVICE without . (#667211, <notting@redhat.com>)
538 - handle 'MASTER' being quoted. (#651450, <gfidente@redhat.com>)
539 - test if there is /dev/rtc before syncing hardware clock (#598850)
540
541 * Wed Sep 01 2010 Harald Hoyer <harald@redhat.com> 9.03.17-1
542 - enable syncookies again (#629259)
543
544 * Tue Aug 24 2010 Bill Nottingham <notting@redhat.com> - 9.03.16-1
545 - actually, don't touch loglevel at all (#621257, #626572)
546
547 * Mon Aug 9 2010 Bill Nottingham <notting@redhat.com> - 9.03.15-1
548 - set default loglevel to match RHEL 5 behavior (#621257)
549
550 * Tue Aug 3 2010 Bill Nottingham <notting@redhat.com> - 9.03.14-1
551 - free kexec-reserved memory when necessary (#613578)
552
553 * Mon Jul 26 2010 Bill Nottingham <notting@redhat.com> - 9.03.13-1
554 - rename_device - handle quoted 'DEVICE' (#614943, <harald@redhat.com>)
555 - rename_device - fix handling of s390 subchannels (#614739, <harald@redhat.com>)
556
557 * Thu Jul 1 2010 Bill Nottingham <notting@redhat.com> - 9.03.12-1
558 - fix interactive hotkey to work with plymouth (#605016)
559
560 * Tue Jun 29 2010 Bill Nottingham <notting@redhat.com> - 9.03.11-1
561 - init/rcS-sulogin.conf: don't directly execute bash, re: selinux (#540216, #585053)
562
563 * Thu Jun 24 2010 Bill Nottingham <notting@redhat.com> - 9.03.10-1
564 - ifup-eth: check for dhclient configuration in /etc/dhcp as well (#607766)
565 - network-functions: handle quoted SUBCHANNELS (#607481)
566 - netfs: allow for encrypted network block devices (#605600)
567
568 * Wed Jun 9 2010 Bill Nottingham <notting@redhat.com> - 9.03.9-1
569 - check NM_CONTROLLED before deciding to use NM for a connection. (#600454)
570 - always reboot on autorelabel. (#599879)
571 - correct the fix for not clearing environment with runuser. (#564105)
572 - properly handle permission denied on pid file (#595597)
573
574 * Wed May 19 2010 Bill Nottingham <notting@redhat.com> - 9.03.8-1
575 - clean up plymouth shtudown splash (#590103, <rstrode@redhat.com>)
576 - rc.sysinit: use lvm2 --sysinit option (#588777)
577 - network-functions: behave sanely in the absence of $DEVICE (#592108)
578 - sysconfig/debug: export debug variables (#592102)
579 - netfs: check for NM to be connected, not just running (#592095)
580 - rcS*.conf: check if /etc/inittab exists (#590706, <plautrba@redhat.com>)
581 - port vlan code to /sbin/ip (#566485, <plautrba@redhat.com>)
582
583 * Wed May 5 2010 Bill Nottingham <notting@redhat.com> - 9.03.7-1
584 - updates for new NetworkManager commandline syntax
585
586 * Tue May 4 2010 Bill Nottingham <notting@redhat.com> - 9.03.6-1
587 - fix plymouth startup/shutdown (#586040)
588 - fstab-decode.8: tweak manpage so it formats correctly (#586476)
589 - init.d/functions: handle being unable to read a specified pid file. (#584575)
590 - ifup-eth: run dhclient -6 similar to dhclient -4. (#585047)
591
592 * Fri Apr 9 2010 Bill Nottingham <notting@redhat.com> - 9.03.5-1
593 - network-scripts: integrate with NetworkManager (#550154)
594 - clean up obsolete package requirements
595 - RAID fixes (<dledford@redhat.com>)
596 - network: only blacklist the original loopback interface. (#579829, <evgsyr@gmail.com>)
597 - rc.sysinit: check dmraid's return code, to catch 'no raid sets' error. (#568869)
598 - po/*: fix mistranslated checks for user input. (#566791)
599
600 * Mon Feb 15 2010 Bill Nottingham <notting@redhat.com> - 9.03.4-1
601 - move ccw_init, ccw udev rules to s390utils (#539491)
602 - network-functions: clean up device checks (#564505)
603
604 * Thu Feb 11 2010 Bill Nottingham <notting@redhat.com> - 9.03.3-1
605 - pass -m to runuser to not clear environment (#564105)
606 - don't use deprecated udev syntax in clock rules (#560801)
607 - don't quote regex argument to bash's =~ (#558575, <ville.skytta@iki.fi>)
608 - if HWADDR is set and DEVICE is not, use HWADDR to determine DEVICE. (#557941)
609 - don't HUP init when messagebus starts (#557821)
610 - setsysfont: use UNIMAP rather than SYSFONTACM when calling /bin/unicode_start. (#557173)
611
612 * Fri Jan 15 2010 Bill Nottingham <notting@redhat.com> - 9.03.2-1
613 - ifup-eth: use dhclient's -H option instead of munging dhclient config files
614 - rc.sysinit: move mdadm after dmraid (#554423)
615 - ifup-eth: use dhclient -6, not the no-longer-included dhcp6c (#553019, <dcantrell@redhat.com>)
616 - add more man pages (#529328, <plautrba@redhat.com>)
617 - remove useless echo (#552785)
618 - move is_wireless after MACADDR/MTU setting (#552641)
619 - serial.conf: respawn correctly. (#552611, <zing@fastmail.fm>)
620 - network-functions: use sysfs for wireless check (#552381, <adel.gadllah@gmail.com>)
621 - reload init on started messagebus (<plautrba@redhat.com>)
622 - honor HOTPLUG in ifdown (#547737)
623
624 * Tue Dec 15 2009 Bill Nottingham <notting@redhat.com> - 9.03.1-1
625 - re-enable network service (#545255)
626 - ifdown: honor HOTPLUG (#547737)
627 - silence any erros from bonding adds (#516569)
628 - remove assorted configurations we don't support the tools for
629 (ipsec-tools ipsec, cipe, IPX)
630
631 * Wed Dec 9 2009 Bill Nottingham <notting@redhat.com> - 9.03-1
632 - migrate to upstart 0.6.x (<notting@redhat.com>, <plautrba@redhat.com>)
633 -- jobs move to /etc/init
634 -- collapse rcX and ttyX jobs into single job definitions
635 -- jobs are no longer %%config
636 - remove obsolete doexec command
637 - rc.sysinit: handle yet another random return string from dmraid
638 - remove never-used 'sulogin' upstart event
639 - fix time-setting udev rules for old-style RTC devices (#537595)
640 - init.d/network: keep error codes limited to '1'. (#537841)
641 - add initial ifup/ifdown man pages. (#529328, <plautrba@redhat.com>)
642
643 * Tue Oct 27 2009 Bill Nottingham <notting@redhat.com> - 9.02-1
644 - remove long-since deprecated initlog
645 - remove IUCV support (#507217)
646 - halt: put a wrapper around killall5 to account for retval 2 not being an error (#526539, <hdegoede@redhat.com>)
647 - ifup-eth: honor DEFROUTE=yes|no for 'all' connection types. (#528822)
648 - network-functions: load bonding driver if BONDING_OPTS is defined. (#516569)
649 - rc.sysinit: put /dev/shm in mtab too, as dracut now mounts it. (#528667)
650
651 * Fri Oct 9 2009 Bill Nottingham <notting@redhat.com> - 9.01-1
652 - rc.sysinit: fix handling of dmraid output to avoid error messages (#527726, <mschmidt@redhat.com>)
653 - rwtab: add /var/lib/xend (#526046)
654 - translation updates: fi, nb, pl
655
656 * Fri Oct 2 2009 Bill Nottingham <notting@redhat.com> - 9.00-1
657 - halt: wrap /sbin/killall5 to catch some return codes (#526539)
658 - netfs, netconsle, network: fix return codes to match LSB spec (#524489, #524480, #524486)
659 - handle kernels compiled both with and without CONFIG_RTC_HCTOSYS
660 - halt: use killall5's return code to avoid unncesssary sleeping (#524359, <hdegoede@redhat.com>)
661 - halt: don't kill mdmon on shutdown. (#524357, <hdegoede@redhat.com>)
662 - rc.sysinit: do not try and activate ISW raidsets, unless noiswmd is passed. (#524355, <hdegoede@redhat.com>)
663 - translation updates: ca, cs, da, mai, po, sv, uk
664
665 * Mon Sep 14 2009 Bill Nottingham <notting@redhat.com> - 8.99-1
666 - init.d/functions: add a '-l' option to status to pass lock file name (#521772)
667 - tweak kernel conflict
668 - translation updates: as, bn_IN, de, fr, hi, it, hu, kn, mr, or, pa, pt, ru, te
669
670 * Wed Sep 2 2009 Bill Nottingham <notting@redhat.com> - 8.98-1
671 - sysconfig.txt: doucment DHCP_HOSTNAME (#498052)
672 - 88-clock.rules: Use --systz instead of --hctosys. (#517886, #489494)
673 - Support rwtab and state passed from dracut initrd (#515771, <wtogami@redhat.com>)
674 - restore context of *tmp files (#519748)
675 - halt: don't try and save mixer settings if it's not writable. (#515771)
676 - rwtab: add /var/spool, /var/lib/dbus, others (#494973, #515771)
677 - sysconfig.txt: clarify docs (#518614)
678 - rc.sysinit: don't pretend /selinux is configurable (#518164)
679 - assorted ipv6 redundant code deletion
680 - translation updates: bn, ca, de, es, fi, fr, gu, hi, it, ja, ko, ml, nb, nl, pl, pt, pt_BR, ru, sr, ta, zh_CN, zh_TW
681
682 * Mon Aug 10 2009 Bill Nottingham <notting@redhat.com> - 8.97-1
683 - ipcalc: fix IPv6 address checking (#516319)
684 - ifup-aliases: fix syntax error from earlier cleanups. (#515612, <jik@kamens.brookline.ma.us>)
685 - translation updates: nb
686 - rc.sysinit: remove useless call to pam_console_apply
687
688 * Mon Aug 3 2009 Bill Nottingham <notting@redhat.com> - 8.96-1
689 - fix up upstart rules for s390(x). (#515222)
690 - leave ChangeLog in the tarball only. (#515012)
691 - disable netfilter on bridged interfaces. (#512206)
692 - assorted shell-related cleanups to ipv6 and other code (<victor.lowther@gmail.com>)
693 - use resolv.conf from dracut netboot before setting hostname. (#514801, <wtogami@redhat.com>)
694 - ipcalc updates (<victor.lowther@gmail.com>)
695 - only use ethtool for link checking; no more mii-tool
696 - require /sbin/blkid directly, as it moves between packages (#508413)
697 - redirect bash errors on 'unset' to /dev/null. (#482888)
698 - fix dmraid partition naming (#501476, <hdegoede@redhat.com>)
699 - don't quote upstart signals. (#501155)
700 - translation updates: bn_IN, da, es, sk
701
702 * Fri May 1 2009 Bill Nottingham <notting@redhat.com> - 8.95-1
703 - don't kill runlevel events on subsequent entering of the same runlevel (#498514)
704 - lang.*sh: handle spaces in $HOME (#498482)
705 - network-functions: explicitly source from the proper directory. (#496233)
706 - remove persistent names on sys-unconfig. (#448322)
707 - init.d/functions: cgexec has moved to /bin (#495715)
708 - allow changing of VLAN type even if the module is already loaded. (#495053, <pietro@bertera.it>)
709 - translation updates: fr, ml, pt
710
711 * Tue Apr 7 2009 Bill Nottingham <notting@redhat.com> - 8.94-1
712 - prefdm: add simple fallbacks, sort rpmdb query for consistency (#494461)
713 - translation updates; bn, de, pt, ru, te
714
715 * Thu Apr 2 2009 Bill Nottingham <notting@redhat.com> - 8.93-1
716 - rc.sysinit: add a disk synchronization point with scsi_wait_scan post-udev (#481470)
717 - netfs: drop smbfs support, we don't even ship the module or tools any more
718 - setsysfont: honor LC_CTYPE (#487133, <skasal@redhat.com>)
719 - prefdm: do fallbacks based on provides of 'service(graphical-login)' (#485751)
720 - rc.sysinit: handle multiple IP addresses without choking in the stateless code (#443945)
721 - rc.sysinit: catch the right error code from checking for passphrases (#483269, <vladis.kletnieks@vt.edu>)
722 - prefdm: handle empty /etc/sysconfig/desktop correctly (#480113)
723 - ifup-ipsec: allow use of either ESP only or AH only (#251494, <stijn.tintel@x-tend.be>)
724 - ifup-eth: allow passing of arguments to dhcp6c (#437949, <pekkas@netcore.fi>)
725 - ifup-eth: fix dhcpv6 when there is no IPv4 configuration (#486507)
726 - ifup-ppp: avoid spurious SIGCHLD to pppd (#448881)
727 - ifup-eth: add support for creating TUN/TAP devices on the fly (#453973, <scott@zahna.com>)
728 - stop plymouth when starting single-user mode. (#491062)
729 - add plymouth shutdown script (#473237, <jmccann@redhat.com>)
730 - fix lang.sh/lang.sh/consoletype for execution with '-e'
731 - ifdown-eth: remove arp_ip_target on ifdown for bonding devices. (#483711)
732 - add vlan support for s390 HSI interfaces. (#490584)
733 - ipcalc: support IPv6 (#464268, <dcantrell@redhat.com>)
734 - translation updates: all
735
736 * Mon Mar 16 2009 Bill Nottingham <notting@redhat.com> - 8.91-1
737 - fix DHCP reading of options from ifcfg-XXX (#483257)
738 - ifdown-eth: clean up bridges on ifdown (#463325, <sean@bruenor.org>)
739 - support MD on iSCSI (#480627)
740 - remove support for 'ifcfg-foo-bar' configurations that inherit from 'ifcfg-foo'
741 - remove slip support
742 - translation updates: es, pl, ca, sr, de, sv, pa, pt_BR
743
744 * Mon Mar 9 2009 Bill Nottingham <notting@redhat.com> - 8.90-1
745 - init.d/functions: cgroup support (<jsafrane@redhat.com>)
746 - fix various issues with dmraid handling (#485895, <hdegoede@redhat.com>)
747 - rc.sysinit: fix typo. (#487926)
748 - console_init: loadkeys has a -q option for silent running. Use it.
749 - ifup-tunnel: add compatiblity for openNHRP tunnels (#486559, <claude.tompers@ieee.lu>)
750 - ccw_init: don't re-init an existing device, it causes errors. (#484411, <jpayne@redhat.com>)
751 - netfs: use same kpartx arguments as rc.sysinit
752 - don't list mtab in rwtab (#457941)
753 - translation updates: fi, de, mai
754
755 * Wed Jan 28 2009 Bill Nottingham <notting@redhat.com> - 8.89-1
756 - use a leading path when sourcing files (#482826)
757 - netfs: don't unmount nfsd filesystem by accident (#481794, <sprabhu@redhat.com>)
758 - bring up ipsec interfaces last (#481733)
759 - ifdown-eth: fix bridge + vlan (#481557, <danken@redhat.com>)
760
761 * Tue Jan 20 2009 Bill Nottingham <notting@redhat.com> - 8.88-1
762 - init.d/network: return success/failure correctly (#480677)
763 - init.d/halt: fix typo (#480799)
764
765 * Mon Jan 19 2009 Bill Nottingham <notting@redhat.com> - 8.87-1
766 - rename_device: be much faster in the presence of many devices (#480687, <danms@us.ibm.com>)
767 - fix switching from targeted to MLS policy (#479054, <dwalsh@redhat.com>)
768 - rc.sysinit: don't set $(uname -r) or $(uname -m); they're not used
769 - network-functions-ipv6: set MTU correctly for 6to4. (#477976, <ackistler@yahoo.com>)
770 - add more entries to rwtab (#476799, <harald@redhat.com>)
771 - net.hotplug: Bail out sooner if the network service isn't running
772 - init.d/halt: determine reboot/halt via existing INIT_HALT environment variable. (#475227)
773 - event.d/serial: add some docs
774 - init.d/functions: __pids_var_run: Handle multi-line pid files correctly (#473287)
775 - remove support for no longer existing 'brctl setgcint' command. (#360471)
776 - add %%config back for ifcfg-lo (#472761)
777 - rcS/rcS-sulogin: don't match commented lines when finding runlevel (#472717)
778 - updated translations: de, sk
779
780 * Tue Nov 11 2008 Bill Nottingham <notting@redhat.com> - 8.86-1
781 - stop plymouth before stopping the runlevel (#467207)
782 - fix get_config_by_subchannel (#459044, <harald@redhat.com>)
783 - use blkid -l to pick a single most appropriate device (#470027)
784 - don't mkswap on halt, as it breaks swap-by-label/UUID (#469823)
785
786 * Fri Oct 31 2008 Bill Nottingham <notting@redhat.com> - 8.85-1
787 - add some error handling/hiding to netfs NM dispatcher script (#469197)
788 - halt: fix code that causes a syntax error on multiple sound cards (#469156)
789 - require a new enough udev version to handle where we put the rules
790 - exit 0 in /etc/rc.d/rc (#469050)
791 - don't set up encrypted devices that have already been set up under different
792 names (#462371, <wwoods@redhat.com>)
793 - accept either the '+<addr>', or comma-separated addresses for arp_ip_target. (#467954,
794 <darcy.sherwood@gmail.com>)
795 - translation updates: hu, kn, ko, ml, sr, sr@latin
796
797 * Tue Oct 14 2008 Bill Nottingham <notting@redhat.com> - 8.84-1
798 - override Arabic, Persian, and Hebrew on the console (<alsadi@ojuba.org>)
799 - explicitly run mdadm on boot to catch degraded arrays. (<dledford@redhat.com>)
800 - fix setting of console font/map (#458362, <ak@sensi.org>)
801 - translations updates: hi, kn, nb, sk, sv, ta
802
803 * Tue Sep 30 2008 Bill Nottingham <notting@redhat.com> - 8.83-1
804 - various merge review fixes (#225900)
805 Notably: init scripts/network scripts are no longer %%config
806 - remove some extraneous device-mapper initialization
807 - use pidfile in status before calling pidof (#463205)
808 - use plymouth directly, not the rhgb-client wrapper
809 - move bridging after bonding (#449950, <djuran@redhat.com>)
810 - use alsactl to save sound settings. (#462677, <jkysela@redhat.com>)
811 - quit plymouth differently (<rstrode@redhat.com>)
812 - make sure we don't try and spawn a repair shell when there's no
813 tty (#463161)
814 - move udev rules to /lib
815 - stateless updates (#433702, <harald@redhat.com>)
816 - call logger with a full path (#447928, <harald@redhat.com>)
817 - translation updates: as, bn_IN, ca, cz, de, es, fi, fr, gu, it, ja,
818 lv, mr, nl, or, pa, pl, pt_BR, ru, te, zh_TW
819
820 * Wed Sep 10 2008 Bill Nottingham <notting@redhat.com> - 8.82-1
821 - refresh translation strings
822 - plymouth updates. (#460702, <rstrode@redhat.com>)
823 - translation updates: fi, lv, no
824 - remove duplicate dependency (#465182)
825 - ifup-eth: Change how we set the zeroconf route. (#239609)
826 - ifup*: Use 0.0.0.0/0, not 0/0. (#460580)
827
828 * Fri Aug 29 2008 Bill Nottingham <notting@redhat.com> - 8.81-1
829 - rc.sysinit: Don't use -L in find (#458652, #458504, CVE-2008-3524)
830 - ifup: kill more code from loopback bringup
831
832 * Tue Jul 29 2008 Bill Nottingham <notting@redhat.com> - 8.80-1
833 - Fix translation typo (#455804, <ruslanpisarev@gmail.com>)
834 - Turn off syncookies
835 - Cleanups for proper plymouth support
836 - Move the mcheck code to a debugmode package, make it more generic
837
838 * Mon Jul 14 2008 Bill Nottingham <notting@redhat.com> - 8.79-1
839 - fix mcheck stuff to be installed correctly
840 - don't do an arping check for loopback interfaces
841 - console_init: don't wait (<arjan@infradead.org>)
842 - rc: clean up extraneous set -x noise
843 - remove references to static dmraid/multipath binaries (#453987)
844 - translation updates: lv
845
846 * Fri Jun 20 2008 Bill Nottingham <notting@redhat.com> - 8.78-1
847 - fix mounting of /dev/pts
848
849 * Thu Jun 19 2008 Bill Nottingham <notting@redhat.com> - 8.77-1
850 - NMDispatcher/05-netfs: fix check for default route (#445509)
851 - service: don't set $LANG, rely on it to inherit from system locales (#422141)
852 - init.d/functions: fix resolve_dm_raid() for older dmraid configs
853 - Don't unmount sysfs in halt. (#446292)
854 - rc.sysinit: don't try to startup crypto if we can't find the device
855 - rc.sysinit: don't echo crypto stuff unless we're actually *doing* something
856 - ifup: don't try to rename devices - udev rules are the way to go
857 - rc.sysinit: fix typo, and don't restorecon on swap, etc. partitions (#448886)
858 - set MALLOC_CHECK_ & MALLOC_PERTURB_ if configured (<pjones@redhat.com>)
859 - console_init: support SYSFONTACM correctly, and support UNIMAP (#448704,
860 <vvv+fedora@colocall.net>)
861 - don't export GRAPHICAL - plymouth is for all modes. also, don't start rhgb
862 - fix clock rules to properly handle old-style RTC devices (#447019)
863 - translation updates: ko, or, pl
864
865 * Fri May 2 2008 Bill Nottingham <notting@redhat.com> - 8.76-1
866 - fix tcsh syntax error (#444998)
867 - remove debugging cruft from rcS-sulogin
868
869 * Tue Apr 29 2008 Bill Nottingham <notting@redhat.com> - 8.74-1
870 - use full path to /sbin/ip in NetworkManagerDispatcher script (#444378)
871 - lang.{sh,csh}: read only user customization if LANG is already set (#372151)
872
873 * Fri Apr 25 2008 Bill Nottingham <notting@redhat.com> - 8.73-1
874 - move event-compat-sysv events here, obsolete it
875 - fix ctrl-alt-del during rc.sysinit (#444050)
876 - fix 'telinit X' from single-user mode (#444001)
877
878 * Thu Apr 24 2008 Bill Nottingham <notting@redhat.com> - 8.72-1
879 - don't have a S99single when using upstart (#444001, indirectly)
880
881 * Wed Apr 23 2008 Bill Nottingham <notting@redhat.com> - 8.71-1
882 - adjust to gdm using LANG instead of GDM_LANG (#372151, <rstrode@redhat.com>)
883 - rework netfs' check for networking availability to properly handle both network
884 and NetworkManager
885
886 * Tue Apr 15 2008 Bill Nottingham <notting@redhat.com> - 8.70-1
887 - find is now in /bin. Use it. (#192991, #239914, #244941, #442178)
888 - require event-compat-sysv for now (#442291)
889 - fix serial event to wait properly
890 - handle encrypted LVs properly (#441728)
891 - add a sit tunnel type (#441635)
892 - translation updates: ru
893
894 * Tue Apr 8 2008 Bill Nottingham <notting@redhat.com> - 8.69-1
895 - Bring up lo whenever it shows up, not just in network/NM
896 - fix shutdown-related oddities (#438444)
897 - translation updates: el, sr, sr@latin, sv
898
899 * Fri Apr 4 2008 Bill Nottingham <notting@redhat.com> - 8.68-1
900 - netfs: umount 'ncp' filesystems as well (#437117)
901 - improve performance of s390 ccw rules (#437110, <mernst@de.ibm.com>)
902 - fix consoletype environment leak (#439546)
903 - ifdown-eth: make sure NEWCONFIG exists before grepping for it (#390271, continued)
904 - console_check: always open with NONBLOCK, clear the serial structs first,
905 handle non-16550 ports (<dwmw2@infradead.org>)
906 - halt: don't use /etc/sysconfig/clock (#438337)
907 - ifup: don't attempt to re-enslave already-enslaved devices (#440077)
908 - netfs: run as a NetworkManagerDispatcher script (#439242)
909 - netfs: remove $local_fs from the list of provides (making it implicitly provided
910 by booting)
911 - serial: add a crude hack to wait for runlevels to finish (#437379)
912 - serial: frob /etc/securetty when necessary (#437381)
913 - add a upstart-specific inittab
914 - translation updates: as, bn_IN, cs, de, es, fi, fr, gu, hi, it, ja, kn, ml, mr, nb,
915 nl, pa, pl, pt_BR, ru, sk, sr, ta, te, zh_CN
916
917 * Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.67-1
918 - actually, don't
919
920 * Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.66-1
921 - use upstart to start rhgb (#433156, <cdahlin@ncsu.edu>)
922
923 * Mon Mar 10 2008 Bill Nottingham <notting@redhat.com> - 8.65-1
924 - Add a serial console udev/upstart handler (#434764, indirectly)
925 - Add some upstart notification for sysv scripts (modified from <cjdahlin@ncsu.edu>, #431231)
926 - Handle _rnetdev correctly (#435358, <pjones@redhat.com>)
927 - various minor speedups (<arjan@infradead.org>)
928 - translation updates: el, fr
929 - disable network by default, in favor of NetworkManager
930
931 * Tue Feb 26 2008 Bill Nottingham <notting@redhat.com> - 8.64-1
932 - Add a console_init udev helper to do console initialization
933 - add /sbin/pidof requirement (#434863)
934
935 * Fri Feb 1 2008 Bill Nottingham <notting@redhat.com> - 8.63-1
936 - don't start RAID arrays in rc.sysinit, that's done by udev (corollary of #429604)
937 - add a NetworkManager-dispatcher script that does netreport on interface changes
938 - use udev rules to set the clock, avoiding issues with modular rtcs (#290731)
939
940 * Mon Jan 21 2008 Bill Nottingham <notting@redhat.com> - 8.62-1
941 - rc.d/rc.sysinit: fix syntax error (#429556)
942 - migrate sr@Latn -> sr@latin (<kmilos@gmail.com>)
943
944 * Fri Jan 18 2008 Bill Nottingham <notting@redhat.com> - 8.61-1
945 - use lvm, not lvm.static (#429222)
946 - ifup-eth: don't do something odd if we find a mac address that
947 matches the user-set MACADDR (#251415)
948 - rc.sysinit: fix root fs check to catch 'rw,ordered,noatime,etc.' properly
949 (#334171)
950 - rc.sysinit: Use proper invocations for authconfig, system-config-network
951 (#426372, #428202)
952 - service: handle unreadable scripts (#427767)
953 - initscripts.spec: add requirements for stateless
954 - fix perms on /etc/profile.d (#407531, <ville.skytta@iki.fi>)
955 - rename_device: handle quoted HWADDR, etc. in ifcfg scripts (#351291)
956 - minor stateless fixes
957 - Makefile cleanups (from OLPC, <cscott@cscott.net>)
958 - translation updates: fr, ru, nb
959 - don't endelessly loop on ifdown (#390271)
960 - rc.sysinit: - fix encrypted swap partitions with random key
961 (<harald@redhat.com>)
962
963 * Tue Oct 9 2007 Bill Nottingham <notting@redhat.com> - 8.60-1
964 - don't chvt with rhgb - just kill it when needed
965
966 * Mon Oct 8 2007 Bill Nottingham <notting@redhat.com> - 8.59-1
967 - rc.sysinit: fix rhgb check
968 - prefdm: add wdm section (#248087)
969 - init.d/functions, halt: clean up some extraneous delays (#219816)
970 - ifup-wireless: set mode before bringing link up (#254046, <linville@redhat.com>)
971 - translation updates: pt_BR, hr
972
973 * Fri Oct 5 2007 Bill Nottingham <notting@redhat.com> - 8.58-1
974 - revert kernel conflict so that xen can still work (#319401)
975 - rename_device, 60-net.rules: only suggest an interface name (part of #264901)
976 - require newer udev for persistent net rules (part of #264901)
977 - don't hang if someone puts a dangling pipe in /etc/rhgb/temp (#251219)
978 - genhostid: fix for 64-bit systems (#306811)
979 - more bash matching fixes (#220087)
980 - translation updates: is, nb
981
982 * Tue Sep 25 2007 Bill Nottingham <notting@redhat.com> - 8.57-1
983 - work around upstream bash changes (#220087, modified from <nvigier@mandriva.com>)
984 - init.d/network: add Should-Start for firewall services
985 - ifup-eth: handle arp_ip_target separately (#288151, <agospoda@redhat.com>)
986 - rc.sysinit: remove rc.serial support - should be udev rules
987 - rc.sysinit: remove acpi module loading - now supported by the kernel automatically
988 - fix en_GB translation (#271201)
989 - translation updates: as, bn_IN, bg, ca, cs, de, el, es, fi, gu, hi, it, ja, ko, kn, ml,
990 mr, nb, nl, pa, pl, pt, pt_BR, ro, sl, sr, sr@Latn, sv, ta, te, zh_CN
991
992 * Wed Aug 29 2007 Bill Nottingham <notting@redhat.com> - 8.56-1
993 - rename_device: fix open() call
994 - rc.sysinit: optimize out some excess greps (<harald@redhat.com>)
995 - halt: support newer nut syntax, conflict with old versions (#252973, <tsmetana@redhat.com>)
996 - fix buildreq from popt -> popt-devel
997 - newer popt is in /lib|/lib64 - require it, and link dynamically
998 - rc.sysinit: added support for cryptsetup-uuids (bug #242078, <harald@redhat.com>)
999 - netconsole: fix status(), assorted other cleanups
1000 - translation updates: fr, ro, sk
1001
1002 * Fri Jul 27 2007 Bill Nottingham <notting@redhat.com>
1003 - add /etc/networks (#239602)
1004 - rc.sysinit: fix quotacheck, remove obsolete convertquota (#249003, <tometzky@batory.org.pl>)
1005 - rc.sysinit: add gfs2 to the 'don't mount here' list (#248985)
1006 - netfs: check for rpcbind, not portmap (#245595)
1007 - ifup-eth: set 'primary' later for bonding devices (#236897, <agospoda@redhat.com>)
1008 - translation updates: cy, en_GB, mk, ml, ms, pl, sk, ta, zh_CN
1009
1010 * Tue Jul 17 2007 Nils Philippsen <nphilipp@redhat.com>
1011 - avoid calling unicode_start unnecessarily often during startup/shutdown which
1012 causes certain monitor/video card combos to flicker heavily (#237839)
1013
1014 * Tue May 15 2007 Bill Nottingham <notting@redhat.com> 8.54-1
1015 - translation updates: as, bg, cs, ja, ms
1016 - redirect bogus errors from cryptsetup to /dev/null <karsten@redhat.com>
1017
1018 * Thu Apr 19 2007 Bill Nottingham <notting@redhat.com> 8.53-1
1019 - init.d/halt: use sound saving wrapper from alsa-utils, conflict with
1020 older versions (#236916)
1021 - usernetctl: drop user gid (#229372)
1022 - translation updates: ta, pt_BR, nb, as, hi, de
1023
1024 * Mon Apr 16 2007 Bill Nottingham <notting@redhat.com> 8.52-1
1025 - lang.sh: fix locales where SYSFONT is not the default (#229996)
1026 - ifup-wireless: properly quote arguments (#234756)
1027 - readonly-root: add options for mounting state (#234916)
1028 - rwtab: updates (#219339, <law@redhat.com>)
1029 - add netconsole init script (#235952)
1030 - disable link checking when PERSISTENT_DHCLIENT is set (#234075)
1031 - restore file context on /etc/resolv.conf (#230776, <dwalsh@redhat.com>)
1032 - ifup-post: only use the first address (#230157, <michal@harddata.com>)
1033 - ifup-ipsec: allow overriding of my_identifier (#229343, <cmadams@hiwaay.net>)
1034 - ifup-wireless: set link up before itweaking wireless parameters (#228253)
1035 - rc.sysinit: restorecon on mount points when relabeling (#220322)
1036 - init.ipv6-global: cleanup & optimize sysctl usage (#217595)
1037 - ifup-eth: support ETHTOOL_OPTS on bridge devices (#208043, <bbaetz@acm.org>)
1038 - network-functions-ipv6: as we don't use NETWORKING_IPV6, silence errors (#195845)
1039 - fix description (#229919)
1040 - translation updates
1041
1042 * Fri Feb 23 2007 Bill Nottingham <notting@redhat.com> 8.51-1
1043 - fix 'Fedora Fedora' in rc.sysinit
1044 - halt: use kexec -x to not shut down network (#223932, <mchristi@redhat.com>)
1045 - network_functions: fix is_bonding_device logic (#229643)
1046 - translation updates: nb
1047
1048 * Mon Feb 19 2007 Bill Nottingham <notting@redhat.com> 8.50-1
1049 - lang.csh, lang.sh: if $LANG is set, don't override it (#229102)
1050 - initlog.1: fix man page formatting (<esr@thyrsus.com>)
1051 - network-functions: simplify bonding test (#215887, <herbert.xu@redhat.com>)
1052 - fix ifup-post when lookup fails (#220318, <hiroshi.fujishima+redhat@gmail.com>)
1053 - add bridging docs (#221412, <markmc@redhat.com>)
1054 - release bonding slaves properly (#220525)
1055 - fix ppp-watch with ONBOOT=yes (#216749)
1056 - support VLAN_PLUS_VID_NO_PAD (#222975, #223011)
1057 - remove NETWORKING_IPV6; to disable, use a modprobe rule
1058 - translation updates: ms, de, el, pt_BR, fi, bs, sr, it, ko
1059
1060 * Tue Dec 19 2006 Bill Nottingham <notting@redhat.com> 8.49-1
1061 - rc.sysinit: remove raidautorn (#219226)
1062 - ifup-eth: set MACADDR, MTU before initializing bonding slaves, etc (#218792)
1063 - translation updates: mr, ms, hi, te, ml
1064
1065 * Tue Nov 28 2006 Bill Nottingham <notting@redhat.com> 8.48-1
1066 - add a step to rename any temporarily renamed devices (#208740, #214817)
1067 - make sure network modules don't get accidentally reloaded (#211474)
1068 - rc.sysinit: fix dmraid test (#216334)
1069 - init.d/halt: don't unmount network filesystems
1070 - ipsec: Add a way to manually manage racoon.conf (#159343, <mitr@redhat.com>)
1071 - sysconfig.txt: Document ~/.i18n (#199323, <mitr@redhat.com>)
1072 - some translation updates
1073
1074 * Mon Nov 6 2006 Bill Nottingham <notting@redhat.com> 8.47-1
1075 - lang.{sh,csh}: handle sinhalese as well in CJKI clauses (#212438)
1076 - rc.sysinit: add '--auto=yes' to mdadm invocation (#213671)
1077 - rename_device: fix incorrect handling of .bak files
1078 - mount tmpfs with -n (#213132)
1079 - various SUBCHANNELS related s390 fixage (#204803)
1080 - lang.{sh,csh}: support iso-8859-8 (#212738, <matan@svgalib.org>)
1081
1082 * Fri Oct 27 2006 Bill Nottingham <notting@redhat.com> 8.46-1
1083 - ifup-eth: restorecon on moved lease file
1084 - rc.sysinit: handle "nodmraid" and "nompath" command line options (#209377, <pjones@redhat.com>)
1085 - revert early-login support (#210836, essentially)
1086 - blacklist CJKI on the virtual console (#120819)
1087 - rc.sysinit: use dmraid.static (#211297)
1088 - use sysfs interface for bonding (#202443, <agospoda@redhat.com>)
1089 - use /etc/statetab, /etc/statetab.d for local state (#211839, <markmc@redhat.com>)
1090 - fix or_IN and similar locales (#212219)
1091 - use SUBCHANNELS as the primary key for s390 network devices (#204803)
1092 - translation updates
1093
1094 * Fri Oct 6 2006 Bill Nottingham <notting@redhat.com> 8.45-1
1095 - lang.csh/lang.sh - do *not* stty iutf8; too much chaos with SIGTTOU
1096 (reverts: #186961; fixes #209469)
1097 - translation updates: ms
1098
1099 * Wed Oct 4 2006 Bill Nottingham <notting@redhat.com> 8.44-1
1100 - separate tmpfs-usage for state from readonly-root
1101 - set keymap correctly in non-utf8 locale (#167363)
1102 - setsysfont: run unicode_stop if in non-unicode locale
1103 - lang.csh/lang.sh: set iutf8 if appropriate (#186961)
1104 - lang.csh/lang.sh: handle non-utf8 locales correctly (#200100)
1105 - rc.sysinit: redirect stderr from setsysfont (#209204, indirectly)
1106 - rwtab: fix iscsi file location (#208864)
1107 - translation updates: el, da, as, or
1108 - fix stateless updates (#206331, <law@redhat.com>)
1109
1110 * Wed Sep 27 2006 Bill Nottingham <notting@redhat.com> 8.43-1
1111 - move ccwgroup initialization to a udev rule (should fix #199139,
1112 #199655, #169161)
1113 - init.d/functions: don't write to gdmfifo
1114 - remove unused-since-RHL-7 consolechars code, update docs (#206106)
1115 - stateless updates (#206331, <law@redhat.com>)
1116 - translation updates (el, ms, hr, sl)
1117
1118 * Thu Sep 21 2006 Bill Nottingham <notting@redhat.com> 8.42-1
1119 - run rc.sysinit, /etc/rc in monitor mode (part of #184340)
1120 - use a better check for 'native' services (#190989, #110761, adapted
1121 from <matthias@rpmforge.net>)
1122
1123 * Tue Sep 19 2006 Bill Nottingham <notting@redhat.com> 8.41-1
1124 - fix network ipv6 hang (#207137, others)
1125 - rc.sysinit: change blkid.tab path to /etc/blkid/blkid.tab
1126 - rename_device: reset DEVPATH also when renaming (#206884, <phil@fifi.org>)
1127 - sysconfig.txt: clarify onboot/onparent usage
1128
1129 * Fri Sep 15 2006 Bill Nottingham <notting@redhat.com> 8.40-1
1130 - translation updates
1131 - rename_device: use '__tmpXXXX' instead of 'devXXXX' as a temporary device
1132 name to avoid any realistic namespace clashes
1133 - rc.sysinit: set default affinity if specified on commandline (#203359)
1134 - always pass path to '.' (#206035)
1135 - run setsysfont, loadkeys always when /dev/tty{0,1} exist (#150769)
1136 - allow going to a shell when system is shut down cleanly (from <dwalsh@redhat.com>)
1137
1138 * Tue Sep 5 2006 Bill Nottingham <notting@redhat.com> 8.39-1
1139 - translation updates
1140 - Handle partitions on multipath/dmraid better (<pjones@redhat.com>)
1141 - make /dev/mapper/control ourselves (<pjones@redhat.com>)
1142 - init.d/network: simplify 'status' call
1143 - fix actual 169.254 networks (#203591)
1144 - rc.sysinit: don't run vgscan (#191879)
1145 - init.d/halt: don't umount /dev/root<foo> (<oblin@mandriva.com>)
1146 - rc.sysinit: catch more dmraid errors (#200683)
1147 - support 'tmp' option in /etc/crypttab (#201382, <mitr@redhat.com>,
1148 <lv@lekv.de>)
1149 - IPv6 updates (<pb@bieringer.de>, includes a fix for #143452)
1150
1151 * Tue Aug 1 2006 Bill Nottingham <notting@redhat.com> 8.38-1
1152 - translation updates
1153 - bring down bonding slaves on ifdown (#199706)
1154 - support LINKDELAY for dhcp (#191137)
1155 - netfs: run multipath on netdev devices (#180977)
1156 - halt: use /proc/mounts instead of /etc/mtab (#198426, <mitr@redhat.com>)
1157 - rc.sysinit: fix getkey race (#191453, <mitr@redhat.com>)
1158 - spec cleanups (#188614, <kloczek@rudy.mif.pg.gda.pl>)
1159 - support aliases on vlan (#193133, <mitr@redhat.com>)
1160 - clean up ifcfg file handling (<mitr@redhat.com>, <michal@harddata.com>)
1161 - GRE and IPIP tunnel support (#168990, <mitr@redhat.com>,
1162 <razvan.vilt@linux360.ro>, <aaron.hope@unh.edu>, <sean@enertronllc.com>)
1163 - rc.sysinit: don't format encrypted swap always (#127378)
1164 - don't try to add routes to alias devices (#199825, #195656)
1165
1166 * Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.37-1
1167 - update translations
1168
1169 * Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.36-1
1170 - rework automatic swapon - only run if AUTOSWAP=yes, and fix errors
1171 (#198695, #196179, #196208)
1172 - redo single so it starts last in runlevel 1, and doesn't kill/start
1173 services itself
1174 - add configurable delay for killproc() (#198429, <jorton@redhat.com>)
1175 - fix loop in rename_device (#199242, <markmc@redhat.com>)
1176 - rc.sysinit: stateless updates (#197972, <law@redhat.com>)
1177 - support for copying dhcp leases from initramfs (#198601, <markmc@redhat.com>)
1178 - readonly-root: SELinux works now in the kernel, allow it
1179 - init.d/network: don't bring down network if root is on a network device
1180 - init.d/halt: don't use -i to halt; causes problems with iscsi
1181 - add support for routing rule-$device (#132252, <mitr@redhat.com>)
1182 - fix rhgb output (#192604, <tonynelson@georgeanelson.com>)
1183 - fix crypttab options for LUKS (#197656, <mitr@redhat.com>)
1184 - ipsec: various fixes & new features (#150682, #168972, <mitr@redhat.com>, <alex@milivojevic.org>)
1185 - ipsec: add check for IKE_METHOD (#197576, <john_smyth@mail.ru>)
1186 - rename_device: ignore alias devices, fix race (#186355)
1187 - ifup/ifdown: don't mark as %%config
1188 - rwtab: some additions/cleanup
1189
1190 * Mon Jun 12 2006 Bill Nottingham <notting@redhat.com> 8.35-1
1191 - readonly root enhancments (modified from <law@redhat.com>, #193164)
1192 - encrypted swap, non-root filesystem support (#127378, <mitr@redhat.com, <redhat@flyn.org>)
1193 - clarify killproc usage (#193711, <mitr@redhat.com>)
1194 - document BRIDGE= (#192576, <mitr@redhat.com>)
1195 - rc.sysinit: allow for sulogin instead of automatic relabeling (<dwalsh@rehdat.com>)
1196
1197 * Tue May 23 2006 Bill Nottingham <notting@redhat.com> 8.34-1
1198 - link glib2 dynamically now that it's in /lib, conflict with older
1199 versions
1200 - handle cups specially when cleaning /var (#189168)
1201 - remove ifdown-aliases (<mitr@redhat.com>)
1202 - ifup-ipsec: fix key handling when only one of AH or ESP is used
1203 (#166257, <mituc@iasi.rdsnet.ro>)
1204 - IPv6 updates, including RFC 3041 support (<pb@bieringer.de>)
1205 - routing fixes, add METRIC support for default routes (#124045, <mitr@redhat.com>)
1206 - fix handling of mount points with white space (#186713, <mitr@redhat.com>)
1207
1208 * Thu Apr 20 2006 Bill Nottingham <notting@redhat.com> 8.33-1
1209 - support for readonly root
1210 - rc.sysinit: remove call to zfcpconf.sh - that should be udev rules
1211 - ifup*: add NETWORKDELAY and LINKDELAY (#176851, <mitr@redhat.com>)
1212 - rc.sysinit: remove obsolete initrd code (<pjones@redhat.com>)
1213
1214 * Mon Apr 10 2006 Bill Nottingham <notting@redhat.com> 8.32-1
1215 - netfs: fix redirect (#187505)
1216 - rc.sysinit add forcequotacheck (#168118, <mitr@redhat.com>)
1217 - functions/pidof: various fixes (#182623, others <mitr@redhat.com>)
1218 - add support for DHCP on bridges (#125259, <mitr@redhat.com>,
1219 anders@kaseorg.com>)
1220 - rc.sysinit: use pidof, not killall (#185429, <pjones@redhat.com>)
1221 - ppp fixes (#129195, #163950, #92023, <mitr@redhat.com>, <avi@argo.co.il>)
1222 - ifup/ifdown: unset $WINDOW (#174336, <mitr@redhat.com>)
1223
1224 * Fri Mar 17 2006 Bill Nottingham <notting@redhat.com> 8.31.2-1
1225 - add udev helper to rename network devices on device creation
1226
1227 * Tue Mar 14 2006 Bill Nottingham <notting@redhat.com> 8.31.1-1
1228 - fix context of /dev/pts (#185436)
1229 - translation updates
1230
1231 * Sun Mar 5 2006 Bill Nottingham <notting@redhat.com> 8.31-1
1232 - fix kexec support (<jmoyer@redhat.com>)
1233 - translation updates
1234
1235 * Tue Feb 28 2006 Bill Nottingham <notting@redhat.com> 8.30-1
1236 - hotplug: don't cause modules to be reloaded on ifdown/rmmod (#179809)
1237 - fix endless loops in ifup/ifdown (#177792, #182466)
1238 - fix enabling of enforcing SELinux mode after relabel (#181893)
1239 - remove debugging code from ifup-bnep
1240 - add /proc, /sys mounting back to rc.sysinit
1241 Note: booting without an initrd is deprecated
1242 - translation updates
1243
1244 * Tue Feb 14 2006 Peter Jones <pjones@redhat.com> 8.29-1
1245 - scrub another possible error message from dmraid output
1246
1247 * Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.28-1
1248 - kill nash-hotplug before starting udev (<pjones@redhat.com>)
1249 - silence warnings on /dev/pts remount (<pjones@redhat.com>)
1250 - more translation updates
1251
1252 * Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.27-1
1253 - translation updates
1254 - lang.sh: revert fix for #176832, it's broken
1255 - ifup-aliases fixes (<pjones@redhat.com>,<mitr@redhat.com>)
1256
1257 * Tue Feb 7 2006 Bill Nottingham <notting@redhat.com> 8.26-1
1258 - revert "rc.sysinit: don't mount usbfs, libusb no longer uses it" change
1259 - add some ugly hacks to make sure net hotplug doesn't run after unclean
1260 shutdown (#177795)
1261 - don't mount /sys and /proc in rc.sysinit - the initrd already does
1262 (<pjones@redhat.com>)
1263 - halt: try to unmount tmpfs filesystems before swapoff (#174000,
1264 <mitr@redhat.com>)
1265
1266 * Thu Feb 2 2006 Bill Nottingham <notting@redhat.com> 8.25-1
1267 - ifup: don't run the arping check if the address is already on the device
1268
1269 * Wed Feb 1 2006 Bill Nottingham <notting@redhat.com> 8.24-1
1270 - init.d/functions: fix sendmail startup
1271 - sysconfig.txt: fix typos (<mitr@redhat.com>)
1272
1273 * Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 8.23-1
1274 - rc.sysinit: do a better job of not activating already active dmraids
1275
1276 * Tue Jan 31 2006 Bill Nottingham <notting@redhat.com> 8.22-1
1277 - remove references to /usr/X11R6/bin (#177938)
1278 - rc.sysinit: fix SELinux message formatting (#178532)
1279 - rc.sysinit: clean cvs as well (#178539, <ville.skytta@iki.fi>)
1280 - init.d/halt: move halt.local so that it runs before / is remounted r/o (#179314)
1281 - rc.sysinit: don't activate already active dmraids (<pjones@redhat.com>)
1282 - rc.sysinit: don't mount usbfs, libusb no longer uses it
1283 - init.d/functions: Add -p to status() (#134363, <mitr@redhat.com>)
1284 - init.d/functions: Separate /var/run/*.pid handling and pidof calls
1285 to private functions (#63440, <mitr@redhat.com>)
1286 - init.d/functions: update for current LSB, including -p pidfile
1287 (#99325, #134363, <mitr@redhat.com>, <tobias.burnus@physik.fu-berlin.de>)
1288 - getkey: various cleanups, add man page (#54481, <mitr@redhat.com>)
1289 - lang.sh: don't always call consoletype (<laroche@redhat.com>)
1290
1291 * Fri Jan 20 2006 Bill Nottingham <notting@redhat.com> 8.21-1
1292 - move handling of network hotplug events here, add appropriate udev
1293 rules, obsolete hotplug
1294 - get rid of some path lookups (#178321, <mclasen@redhat.com>)
1295 - get hwaddrs from sysfs as opposed to ip | sed
1296 - translation updates
1297 - lang.sh: don't run unicode_start for subshells (#176832)
1298 - halt: ignore sysfs but not /sys<otherstuff> (#177612, <bnocera@redhat.com>)
1299 - add service(8) man page (#44857) <mitr@redhat.com>
1300
1301 * Wed Dec 21 2005 Bill Nottingham <notting@redhat.com> 8.20-1
1302 - remove kmodule. udev handles module loading now
1303 - require appropriate udev
1304
1305 * Thu Dec 15 2005 Bill Nottingham <notting@redhat.com> 8.19-1
1306 - Require syslog, for alternate implementations thereof (#172885)
1307 - Fix fsck invocation for weeding out netdev devices (#175803)
1308
1309 * Fri Dec 2 2005 Bill Nottingham <notting@redhat.com> 8.18-1
1310 - use new dhclient file paths, add appropriate conflict (#169164)
1311
1312 * Wed Oct 5 2005 Bill Nottingham <notting@redhat.com> 8.17-1
1313 - make sure corefile limiting works for user processes as well
1314 (#166511, <ville.skytta@iki.fi>)
1315 - ifup-routes: handle no EOF in the route file (#156972)
1316 - rc.sysinit: tweak mesage (#156972)
1317 - ifdown-eth: clean up error message (#135167)
1318 - rc.sysinit: call kpartx on multipath devices (#160227)
1319 - ifup-eth: move wireless options before bridge options (#122801)
1320 - ifup-wireless: silence error (#90601)
1321 - init.d/functions: change translated string (#54682)
1322
1323 * Tue Sep 27 2005 Than Ngo <than@redhat.com> 8.16-1
1324 - fix typo bug
1325
1326 * Mon Sep 26 2005 Than Ngo <than@redhat.com> 8.15-1
1327 - support proper dial-in configuration, thanks to Peter Bieringer (#158380)
1328
1329 * Thu Sep 22 2005 Bill Nottingham <notting@redhat.com>
1330 - kmodule: don't probe for uninteresting devices. speeds things up
1331 - network-functions: deal with broken networks better (#168947)
1332 - rc.sysinit: automatically reboot if labels are really out of date
1333 (<dwalsh@redhat.com>)
1334 - network-functions: throw out nameif error messages
1335 - rc.sysinit: use multipath.static (#168321)
1336 - rc.sysinit: use ignorelocking (#168195)
1337
1338 * Mon Sep 12 2005 Bill Nottingham <notting@redhat.com> 8.14-1
1339 - fix usage of the module blacklist (#168020)
1340
1341 * Fri Sep 9 2005 Bill Nottingham <notting@redhat.com> 8.13-1
1342 - fix on-boot relabelling (<dwalsh@redhat.com>)
1343
1344 * Mon Aug 22 2005 Bill Nottingham <notting@redhat.com> 8.12-1
1345 - ifup-eth: fix interface renaming (#158774)
1346 - rc.sysinit: use modprobe, not insmod (#159120, <tmus@tmus.dk>)
1347 - remove workaround for the fonts-not-initialized-on-secondary-consoles
1348 problem (fixed in 2.6.12-rc4 and later)
1349 - setsysfont: correctly bracket systfontacm (#159706)
1350 - rc.sysinit: always use udevsend, even if no modules (#160987)
1351 - ifdown-aliases: add 'cd' to the proper dir (#161170)
1352 - add diskdump restore support (<tuchida@redhat.com>),
1353 conflict with appropriate diskdumputils
1354 - rc.sysinit: dmraid/multipath support
1355 - remove LVM1 support
1356 - init.d/functions: handle odd quoting in args (#161316, <stransky@redhat.com>)
1357 - ifup-wireless: set rate in quotes (#163123)
1358 - handle lvm & fsck for network block devices (#148764,
1359 <alewis@redhat.com>)
1360 - initlog: fix invalid free calls, (#165033), (#163973,<dwalsh@redhat.com>)
1361 - sysconfig.txt: remove hdparm docs, since the code isn't there (#162962)
1362 - updated translations: ms, ja, ko, et, zh_CN, zh_TW, sr, ar
1363
1364 * Tue May 10 2005 Bill Nottingham <notting@redhat.com> 8.11-1
1365 - fix mis-bringup of interfaces due to accidentally matched HWADDR
1366 (a.k.a. ONBOOT=no not working) (#153669, #157252)
1367 - support automatic relabeling later if rebooted w/o SELinux
1368 (<dwalsh@redhat.com>)
1369 - rc.sysinit: fix fixfiles invocation (#157182)
1370 - btmp should be 0600 (#156900)
1371 - translation updates: fr, bg, ru, mk, pa, es
1372
1373 * Fri Apr 29 2005 Bill Nottingham <notting@redhat.com> 8.10-1
1374 - fix hang on stale GDM sockets (#156355)
1375
1376 * Wed Apr 27 2005 Bill Nottingham <notting@redhat.com> 8.09-1
1377 - rc.sysinit: clean up screen sockets (#155969)
1378 - functions: use pidof -c in various functions
1379 - ifup-ppp: fix static routes with ppp demand dialing (#20142,
1380 <ohrn+redhat@chalmers.se>)
1381 - add btmp support (#155537)
1382 - don't send dhcp hostname (revert of fix for #149667)
1383 - more early-login modifications (<mclasen@redhat.com>)
1384 - functions: fix echo (#155270)
1385
1386 * Mon Apr 18 2005 Karsten Hopp <karsten@redhat.de> 8.08-3
1387 - fix ifup-routes script (#155195)
1388
1389 * Mon Apr 18 2005 Florian La Roche <laroche@redhat.com>
1390 - fix strstr call in rc.sysinit
1391
1392 * Fri Apr 15 2005 Bill Nottingham <notting@redhat.com> 8.08-1
1393 - update translation base
1394 - automatically send hostname for DHCP if it's available and not
1395 overridden (#149667)
1396 - load user-defined module scripts from /etc/sysconfig/modules at
1397 boot (#123927)
1398 - halt: reverse sort the mount list, avoiding errors
1399 (#147254, <jamesodhunt@hotmail.com>)
1400 - ifup-wireless: add SECURITYMODE (#145407)
1401 - network-functions: don't error out if hotplug doesn't exist (#140008)
1402 - ifup: always return errors on trying to bring up nonexistent devices (#131461)
1403 - ifup: fix error message (#143674)
1404 - rc.sysinit: add a autorelabel boot target (#154496)
1405 - prefdm: if something else is specified as $DISPLAYMANAGER, try that (#147304)
1406 - remove support for the old firewall type
1407 - network: optimize some (#138557, <drepper@redhat.com>)
1408 - prefdm: fix prefdm arg handling (#154312, <khc@pm.waw.pl>)
1409 - gdm early-login support (adapted from <rstrode@redhat.com>)
1410 - ifup-routes: make sure commented lines are handled correctly (#154353,
1411 #114548, <link@pobox.com>)
1412 - some sysconfig.txt updates (<link@pobox.com>, <jvdias@redhat.com>)
1413 - rc.sysinit: fix restorecon invocation (#153100)
1414 - initlog: free some of the more egregious memory leaks (#85935)
1415 - initlog: fix potential memory overread (#153685, <in-redhat@baka.org>)
1416 - remove some conflicts, %%post scripts, etc. that were only relelvant
1417 for upgrades from pre-7.0
1418 - other minor fixes, see ChangeLog
1419
1420 * Thu Mar 31 2005 Bill Nottingham <notting@redhat.com> 8.07-1
1421 - bring back initlog for third-party scripts until a new framework is
1422 in place
1423
1424 * Wed Mar 30 2005 Bill Nottingham <notting@redhat.com> 8.06-1
1425 - handle alternate VLAN naming schemes (#115001, <kas@informatics.muni.cz>)
1426 - ifup-ipsec: handle non-ascii keys (#150552)
1427 - add proper ipsec route (#146169, #140654)
1428 - add a restorecon for /tmp to rc.sysinit
1429 - document ONHOTPLUG in sysconfig.txt
1430 - fix mistranslation (#151120)
1431 - don't return 1 for stopping a process if it isn't running at all
1432 - don't explicitly set fwd polices for ipsec traffic. Let setkey
1433 handle it.
1434
1435 * Mon Mar 7 2005 Bill Nottingham <notting@redhat.com> 8.05-1
1436 - ipv6 cleanups (<pb@bieringer.de>)
1437 - rc.sysinit: fix rngd check (#130350)
1438 ... then turn it off entirely
1439 - rc.sysinit: get rid of duplicate date printout (#149795)
1440 - ifdown: handle being called on down devices better
1441 - handle saved resolv.conf on all device types
1442 - fix network-functions cleanup
1443 - netfs: fix _netdev unmounting (#147610, <alewis@redhat.com>)
1444 - dhcp release cleanups (<jvdias@redhat.com>)
1445 - ifup-bnep: bluetooth update <dwmw2@infradead.org>
1446 - more ipsec stuff (#147001, <ckjohnson@gwi.net>)
1447
1448 * Wed Jan 19 2005 Bill Nottingham <notting@redhat.com> 8.04-1
1449 - split out ifup/ifdown general case to ifup/ifdown-eth;
1450 add ifup/ifdown-bnep (<dwmw2@redhat.com>)
1451 - ifup-ipsec: add fwd policies (#145507)
1452 - fix multiple scsi_hostadapter loads (#145432)
1453 - enable syncookies in sysctl.conf (#145201)
1454
1455 * Wed Jan 12 2005 Bill Nottingham <notting@redhat.com> 8.03-1
1456 - use udevsend to handle hotplug events (requires recent udev)
1457 - remove pump, dhcpcd support
1458 - fix ONxxx (#136531, <cww@redhat.com>)
1459 - fix various fgreps to not catch commented lines (#136531, expanded
1460 from <cww@redhat.com>)
1461 - set ETHTOOL_OPTS on addressless devices (#144682, <mpoole@redhat.com>)
1462 - kill dhcp client even if BOOTOPROTO is now static (#127726, others)
1463 - replace the use of route/ifconfig with ip in IPv6 code, remove support
1464 for ipv6calc (<pb@bierenger.de>, <pekkas@netcore.fi>)
1465 - fix quoting in daemon() (#144634)
1466 - make sysctl be silent (#144483)
1467
1468 * Mon Jan 3 2005 Bill Nottingham <notting@redhat.com> 8.02-1
1469 - remove initlog, minilogd
1470 - add a flag to kmodule for use with kudzu's socket mode, use it
1471 - change setting of IPv6 default route (#142308, <pb@bieringer.de>)
1472 - netfs: don't unmount NFS root FS (#142169)
1473
1474 * Mon Dec 6 2004 Bill Nottingham <notting@redhat.com> 8.01-1
1475 - further bootup noise reductions
1476 - rc.d/rc.sysinit: do implicit unicode conversion on keymap
1477
1478 * Mon Nov 29 2004 Bill Nottingham <notting@redhat.com> 8.00-1
1479 - fix previous fix (#139656)
1480
1481 * Wed Nov 24 2004 Bill Nottingham <notting@redhat.com> 7.99-1
1482 - clear and repopulate mtab before mounting other filesystems (#139656)
1483 - remove more devfs compat
1484
1485 * Tue Nov 23 2004 Bill Nottingham <notting@redhat.com> 7.98-1
1486 - various kmodule speedups
1487 - rc.d/init.d/netfs: don't mount GFS (#140281)
1488 - fix various minilogd bogosities (#106338)
1489
1490 * Mon Nov 15 2004 Karsten Hopp <karsten@redhat.de> 7.97-1
1491 - configure CTC protocol if CTCPROT is set (#133088)
1492
1493 * Mon Nov 15 2004 Bill Nottingham <notting@redhat.com>
1494 - fix check_link_down to still check negotiation if link is
1495 listed as "up" on entering (#110164, <dbaron@dbaron.org>)
1496
1497 * Thu Nov 11 2004 Karsten Hopp <karsten@redhat.de> 7.96-1
1498 - parse OPTIONS for QETH, CTC, LCS interfaces (#136256, mainframe)
1499
1500 * Tue Nov 9 2004 Bill Nottingham <notting@redhat.com>
1501 - fix typo (#134787, <bnocera@redhat.com>)
1502
1503 * Sun Nov 7 2004 Bill Nottingham <notting@redhat.com> 7.95-1
1504 - various translation updates
1505
1506 * Tue Nov 2 2004 Bill Nottingham <notting@redhat.com>
1507 - take an axe to rc.sysinit:
1508 - remove delay on unclean startup
1509 - remove hdparm code
1510 - remove LVM1 code
1511 - remove old raidtab code in favor of mdadm
1512 - remove support for old isapnp tools
1513 - move all block device mangling before fsck. run fsck *once*, not twice
1514 - some more LC_ALL=C stuff
1515
1516 * Sun Oct 31 2004 Florian La Roche <laroche@redhat.com>
1517 - /etc/rc.d/rc: use "LC_ALL=C grep" for small speedup
1518 - /etc/rc.d/rc.sysinit:
1519 - do not read udev.conf, this seems to be all in the start_udev script
1520 - fix detection of "nomodules" kernel command line option
1521 - read /proc/cmdline earlier and convert rhgb to use that, too
1522 - load_module(): change redirection to /dev/null
1523 - some checks for RHGB_STARTED="" looked strange
1524 - /etc/sysconfig/network-scripts/ifup-ppp:
1525 - remove a call to basename with shell builtins
1526 - /etc/sysconfig/network-scripts/network-functions:
1527 - remove some calls to basename/sed with shell builtins
1528
1529 * Wed Oct 27 2004 Bill Nottingham <notting@redhat.com> 7.93.2-1
1530 - fix prefdm fallback to installed display managers (#137274)
1531 - fix incorrect rhgb temporary path (#137391)
1532
1533 * Mon Oct 18 2004 Bill Nottingham <notting@redhat.com> 7.93-1
1534 - translation updates
1535 - fix handling of GATEWAYDEV (#133575, <pekkas@netcore.fi>)
1536
1537 * Sun Oct 17 2004 Bill Nottingham <notting@redhat.com> 7.91-1
1538 - rc.d/rc.sysinit: remove devlabel call
1539 - mdadm support, now that raidtools is gone (#126636, #88785)
1540 - call ipv6to4 scripts in /etc/ppp/(ip-up|ip-down) (#124390, <dwmw2@redhat.com>)
1541 - cleanup a couple of nits that could affect bug #134754
1542 - make sure we return to rhgb after fsck (#133966, #112839, #134449)
1543 - automatically reboot when fsck calls for it, instead of requiring
1544 manual intervention (#117641 and duplicates)
1545 - ifup-wireless: fix key for open vs. restricted (#135235, <dax@gurulabs.com>)
1546 - translation updates
1547
1548 * Fri Oct 08 2004 Karsten Hopp <karsten@redhat.de> 7.90-1
1549 - fix portname for LCS devices
1550
1551 * Fri Oct 08 2004 Bill Nottingham <notting@redhat.com>
1552 - remove sysconfig/rawdevices, as initscript is removed
1553
1554 * Thu Oct 07 2004 Florian La Roche <Florian.LaRoche@redhat.de>
1555 - change /etc/sysctl.conf to not allow source routed packets per default
1556
1557 * Fri Oct 6 2004 Bill Nottingham <notting@redhat.com> - 7.88-1
1558 - fix requires
1559
1560 * Tue Oct 5 2004 Dan Walsh <dwalsh@redhat.com> - 7.87-1
1561 - Change SELinux relabel to not remount /
1562
1563 * Mon Oct 4 2004 Bill Nottingham <notting@redhat.com>
1564 - use runuser instead of su; require it
1565 - init.d/halt: use right file name for random seed (#134432)
1566
1567 * Fri Oct 1 2004 Bill Nottingham <notting@redhat.com> - 7.86-1
1568 - use /etc/hotplug/blacklist to blacklist modules in hardware init (#132719)
1569 - filter indic locales on the console (#134198)
1570
1571 * Wed Sep 29 2004 Bill Nottingham <notting@redhat.com> - 7.85-1
1572 - ifup, network-functions: fix worked-by-accident shell quoting
1573 - lang.csh: remove setting of dspmbyte (#89549, <mitr@redhat.com>)
1574 - SELinux fixes
1575 - clean up prefdm
1576 - init.d/functions: export LC_MESSAGES (#133786)
1577 - allow daemon to coredump if requested (#130175)
1578 - network-functions: be more liberal in what we accept for link types (#90602, #127984)
1579 - fix overzealousness with -range aliases (#65415)
1580 - rc.sysinit: use s-c-keyboard, not kbdconfig (#133929)
1581 - fix checkpid logic, clean up potential errors (#134030)
1582 - translation updates
1583
1584 * Wed Sep 22 2004 Bill Nottingham <notting@redhat.com> - 7.84-1
1585 - only start udev once
1586
1587 * Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 7.83-1
1588 - conflict with old udev
1589 - use udev if it's present
1590
1591 * Tue Sep 21 2004 Bill Nottingham <notting@redhat.com>
1592 - don't mount usbfs without usb. also, at least be consistent in filesystem type
1593
1594 * Fri Sep 17 2004 Bill Nottingham <notting@redhat.com> - 7.82-1
1595 - fix handling of nonexistent devices (#132839)
1596 - rhgb enhancements (<veillard@redhat.com>, #132665)
1597 - initscripts.spec: require nash (#132513)
1598 - translation updates
1599
1600 * Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 7.81-1
1601 - load iucv device config after /etc/sysconfig/network so that
1602 GATEWAY doesn't get overwritten
1603
1604 * Fri Sep 10 2004 Bill Nottingham <notting@redhat.com> - 7.80-1
1605 - fix IPv6 6to4 & NAT (#118928, <pb@bieringer.de>, <pekkas@netcore.fi>)
1606
1607 * Fri Sep 10 2004 Karsten Hopp <karsten@redhat.com> - 7.79-1
1608 - load ctc device config after /etc/sysconfig/network so that
1609 GATEWAY doesn't get overwritten
1610
1611 * Wed Sep 8 2004 Dan Walsh <dwalshg@redhat.com> - 7.78-2
1612 - fix setting SELinux contexts on udev-created-in-initrd devices
1613 - Let restorecon check if selinux is enabled.
1614
1615 * Wed Sep 8 2004 Bill Nottingham <notting@redhat.com> - 7.78-1
1616 - set SELinux contexts on udev-created-in-initrd devices, if necessary
1617
1618 * Wed Sep 1 2004 Bill Nottingham <notting@redhat.com> - 7.77-1
1619 - mount usbfs (#131347)
1620 - start any automatic raid devices
1621 - remove triggers for ancient releases, bulletproof remaining ones (#131356)
1622
1623 * Wed Sep 1 2004 Jeremy Katz <katzj@redhat.com> - 7.76-1
1624 - udev uses UDEV_TMPFS now
1625
1626 * Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 7.75-1
1627 - fix sysfs configuration of qeth and lcs network interfaces
1628 (eth, tr, hsi)
1629
1630 * Mon Aug 30 2004 Karsten Hopp <karsten@redhat.de> 7.74-1
1631 - fix support for LCS portnumbers (mainframe)
1632
1633 * Fri Aug 27 2004 Jason Vas Dias <jvdias@redhat.com> 7.73-1
1634 - Add support for running the DHCPv6 client to ifup
1635 - (new DHCPV6C=yes/no ifcfg-${IF} variable) + update sysconfig.txt
1636
1637 * Fri Aug 27 2004 Bill Nottingham <notting@redhat.com> 7.72-1
1638 - flip the kernel conflict to a Requires:
1639
1640 * Thu Aug 26 2004 Karsten Hopp <karsten@redhat.de> 7.71-1
1641 - ifcfg-iucv/ctc: drop REMIP and use GATEWAY instead
1642
1643 * Thu Aug 26 2004 Bill Nottingham <notting@redhat.com> 7.70-1
1644 - autoload hardware modules on startup
1645 - minor fsck cleanup (#115028, <leonard-rh-bugzilla@den.ottolander.nl>)
1646 - ifup: support STP bridging (#123324)
1647 - rc.sysinit: do a SELinux relabel if forced
1648 - rc.sysinit: remove devfs compat and the remaining 2.4 compat
1649 - ifup-wireless: support multiple keys (#127957)
1650 - fix firmware loading (#129155, <bnocera@redhat.com>)
1651
1652 * Tue Aug 24 2004 Karsten Hopp <karsten@redhat.de> 7.68-1
1653 - execute zfcfconf.sh if available (mainframe)
1654
1655 * Mon Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.67-1
1656 - fix change_resolv_conf: if pre-existing /etc/resolv.conf
1657 - non-existent or empty, replace with new file contents.
1658
1659 * Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
1660 - Allow users to use generic /etc/dhclient.conf if per-device
1661 - /etc/dhclient-${DEVICE}.conf is non-existent or empty
1662
1663 * Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
1664 - Preserve "options" settings in resolv.conf (bug 125712)
1665
1666 * Fri Aug 20 2004 Jeremy Katz <katzj@redhat.com> - 7.65-1
1667 - look at /etc/udev/udev.conf, not /etc/sysconfig/udev (#130431)
1668
1669 * Fri Aug 20 2004 Bill Nottingham <notting@redhat.com> 7.64-1
1670 - rc.d/rc.sysinit: check for dev file too (#130350)
1671
1672 * Thu Aug 19 2004 Than Ngo <than@redhat.com> 7.63-1
1673 - allow CBCP with own number (#125710)
1674
1675 * Thu Aug 19 2004 Bill Nottingham <notting@redhat.com> 7.62-1
1676 - fix up resolv.conf munging (#129921)
1677 - use rngd if available
1678 - run start_udev if necessary (#120605)
1679 - readonly root updates (#129893, <markmc@redhat.com>)
1680 - ifup-wireless: quote key (#129930)
1681 - remove rawdevices (#130048)
1682 - handle binfmt_misc in rc.sysinit for the case where it's built in (#129954)
1683 - remove mkkerneldoth
1684 - don't remove linguas in lang.* (part of #9733)
1685 - fix nfs unmounting (#129765)
1686 - fix URL (#129433)
1687
1688 * Tue Aug 11 2004 Jason Vas Dias <jvdias@redhat.com> 7.61-1
1689 - fix for bug 120093: add PERSISTENT_DHCLIENT option to ifcfg files
1690
1691 * Tue Aug 3 2004 Karsten Hopp <karsten@redhat.de> 7.60-1
1692 - write peerid into sysfs for IUCV devices (mainframe)
1693
1694 * Tue Aug 3 2004 Bill Nottingham <notting@redhat.com>
1695 - don't remove /dev/mapper/control - nash will do it if it has to (#127115)
1696
1697 * Fri Jul 30 2004 Jason Vas Dias <jvdias@redhat.com> 7.60-1
1698 - fix for bug 125712: add 'change_resolv.conf' function
1699
1700 * Tue Jul 27 2004 Bill Nottingham <notting@redhat.com>
1701 - rc.d/init.d/network: don't bring interfaces down twice (#127487)
1702
1703 * Wed Jul 14 2004 Bill Nottingham <notting@redhat.com>
1704 - fix bonding + no IP (#127285)
1705 - wrap second LVM initialization in vgscan check to avoid extraneous messages (#127639)
1706
1707 * Wed Jul 7 2004 Bill Nottingham <notting@redhat.com>
1708 - move random stuff to rc.sysinit/halt; move all swap to after this.
1709 prereq of bug #123278
1710
1711 * Fri Jul 2 2004 Bill Nottingham <notting@redhat.com> 7.59-1
1712 - set context on ICE directory after making it (#127099, <concert@europe.com>)
1713 - don't mount GFS filesystems in rc.sysinit
1714
1715 * Tue Jun 29 2004 Bill Nottingham <notting@redhat.com> 7.58-1
1716 - rc.d/rc.sysinit: hack: make ICE directory on boot (#86480)
1717 - set devicetype for xDSL (#126194)
1718 - ignore locking failures when starting lvm volumes (#126192, <radu@primit.ro>)
1719 - unset LC_MESSAGES for rhgb (#126020, <ynakai@redhat.com>)
1720 - bonding fixes
1721 - setsysfont: remove error (#100559)
1722 - remove duplicate setting of network routes (#125450)
1723 - vlan fixes (#107504, <hrunting@texas.net>)
1724 - ifup-aliases: remove bogus route setting (#120908)
1725
1726 * Tue May 25 2004 Bill Nottingham <notting@redhat.com> 7.57-1
1727 - readonly root fixes (<alexl@redhat.com>)
1728
1729 * Tue May 25 2004 Karsten Hopp <karsten@redhat.de> 7.56-1
1730 - special TYPE for qeth devices to differenciate them from ethX
1731
1732 * Mon May 24 2004 Bill Nottingham <notting@redhat.com>
1733 - fix pppd vs. ppp typo in conflicts (#123680)
1734
1735 * Fri May 21 2004 Bill Nottingham <notting@redhat.com>
1736 - fix bridging confusing module order (#122848, <luto@myrealbox.com>)
1737 - rc.d/rc.sysinit: don't mount cifs (#122501)
1738
1739 * Tue May 18 2004 Karsten Hopp <karsten@redhat.de> 7.55-1
1740 - add support for ccwgroup devices on mainframe
1741
1742 * Thu May 13 2004 Than Ngo <than@redhat.com> 7.54-1
1743 - add patch to enable PIE build of usernetctl
1744
1745 * Fri May 7 2004 Jeremy Katz <katzj@redhat.com> - 7.53-1
1746 - little lvm tweak (#121963)
1747
1748 * Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.52-1
1749 - ipv4 addresses are ints, not longs (#122479)
1750
1751 * Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.51-1
1752 - get rid of LVM error when no volumes are defined (#121197)
1753 - fix selinux short-circuit test (#121143, <michal@harddata.com>)
1754 - /dev/mapper/control is a special file, check it accordingly (#121963)
1755 - support ETHTOOL_OPTS on bonding slaves (#119430, <hrunting@texas.net>)
1756 - handle multiple spaces correctly in rc.sysinit, network-functions
1757 (#118583, <pallas@kadan.cz>)
1758 - cleanup fd leaks, mem leaks, other bogosities
1759 (#119987, <linux_4ever@yahoo.com>)
1760 - rc.d/init.d/network: remove ipv6 bogosity (#114128)
1761 - translation updates
1762
1763 * Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> 7.50-1
1764 - fix LVM issues in rc.sysinit (#120458, #119975)
1765 - deal with fixed racoon parser
1766 - translation updates from translators
1767 - fix USB loading (#120911)
1768
1769 * Fri Mar 26 2004 Bill Nottingham <notting@redhat.com> 7.49-1
1770 - use alsa for mixer saving in halt
1771 - don't umount /proc in halt (#118880)
1772 - various translation updates from translators
1773
1774 * Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.48-1
1775 - disable enforcing in emergency mode for now, relabel some commonly
1776 mislabeled files on boot
1777
1778 * Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.47-1
1779 - translation: catch more input strings (#106285, <mitr@volny.cz>)
1780 - remove autologin from prefdm (#108969)
1781 - return to rhgb after ./unconfigured (#109807, <jkeating@j2solutions.net>)
1782 - handle iso15 in setsysfont (#110243)
1783 - clean up samba & vmware in rc.sysinit (#113104)
1784 - some sysconfig.txt documentation (#110427, #118063)
1785 - fix bug in umount-on-halt (#113088, <giardina@airlab.elet.polimi.it>)
1786 - handle CIFS in netfs (#115691)
1787 - make sure hotplug isn't stuck unset (#116666, <aoliva@redhat.com>)
1788 - handle network fs better in rc.sysinit (#111290)
1789 - nomodules applies to usb/firewire too (#113278)
1790 - ipsec fix (#116922, <felipe_alfaro@linuxmail.org>)
1791 - make sure rc exits cleanly (#117827, <enrico.scholz@informatik.tu-chemnitz.de>)
1792 - fsck root FS from initrd, for dynamic majors (#117575, <sct@redhat.com>)
1793
1794 * Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com>
1795 - Use ':' instead of '.' as separator for chown.
1796
1797 * Mon Feb 2 2004 Bill Nottingham <notting@redhat.com> 7.46-1
1798 - some more rc.sysinit tweaks and refactoring
1799
1800 * Fri Jan 30 2004 Bill Nottingham <notting@redhat.com> 7.45-1
1801 - fix rc.sysinit typo
1802 - rc.d/init.d/network: clear out environment (#113937, #111584)
1803
1804 * Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 7.44-1
1805 - NFSv4 support (<chucklever@bigfoot.com>, <steved@redhat.com>)
1806 - handle 2.6-style 'install ethX ...' lines correctly
1807 - mount sysfs by default
1808 - time to clean up the cruft. remove:
1809 - boot-time depmod
1810 - linking of /boot/System.map to /boot/System.map-`uname -r`
1811 - /var/log/ksyms.X
1812 - libredhat-kernel support
1813
1814 * Fri Jan 16 2004 Dan Walsh <dwalsh@redhat.com> 7.43-2
1815 - Remove selinux run_init code from service script. It is no longer needed.
1816
1817 * Fri Dec 5 2003 Jeremy Katz <katzj@redhat.com> 7.43-1
1818 - basic lvm2 support
1819
1820 * Tue Oct 28 2003 Bill Nottingham <notting@redhat.com> 7.42-1
1821 - show rhgb details on service failures
1822
1823 * Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 7.41-1
1824 - tweak some rhgb interactions (#100894, #107725)
1825 - fix dvorak keymap loading (#106854)
1826
1827 * Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.40-1
1828 - add better fix to support nickname (#105785)
1829
1830 * Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.39-1
1831 - add support nickname (#105785)
1832
1833 * Fri Oct 17 2003 Bill Nottingham <notting@redhat.com> 7.38-1
1834 - rhgb updates, now pass 'rhgb' to use it, instead of passing 'nogui'
1835 to disable it
1836
1837 * Fri Oct 10 2003 Bill Nottingham <notting@redhat.com> 7.37-1
1838 - bridging updates (#104421, <dwmw2@redhat.com>)
1839
1840 * Wed Oct 8 2003 Bill Nottingham <notting@redhat.com> 7.36-1
1841 - mount /dev/pts before starting rhgb
1842
1843 * Wed Oct 1 2003 Bill Nottingham <notting@redhat.com> 7.35-1
1844 - load acpi modules on startup if necessary
1845 - fix typo in ipsec comments & sysconfig.txt
1846
1847 * Mon Sep 15 2003 Than Ngo <than@redhat.com> 7.34-1
1848 - use upsdrvctl to start the shutdown process
1849
1850 * Mon Sep 15 2003 Bill Nottingham <notting@redhat.com> 7.33-1
1851 - ipsec fixes (#104227, <harald@redhat.com>)
1852 - ppp fixes (#104128, #97845, #85447)
1853
1854 * Thu Sep 11 2003 Bill Nottingham <notting@redhat.com> 7.32-1
1855 - fix ip calls for some device names (#104187)
1856 - ipsec fixes
1857
1858 * Fri Sep 5 2003 Bill Nottingham <notting@redhat.com> 7.31-1
1859 - fix bonding + dhcp (#91399)
1860 - fix typo (#103781)
1861 - sysconfig/network-scripts/ifup: fix use of local
1862
1863 - fix shutdown with NFS root (#100556, <Julian.Blake@cern.ch>)
1864 - remove /var/run/confirm when done with /etc/rc (#100898)
1865 - ipcalc: fix some memory handling (#85478, <miked@ed.ac.uk>)
1866 - handle sorting > 10 network devices (#98209)
1867 - unset ONPARENT after use (#101384)
1868 - random other fixes
1869 - bridging support (<dwmw2@redhat.com>)
1870
1871 * Fri Aug 15 2003 Bill Nottingham <notting@redhat.com> 7.30-1
1872 - IPv6 updates (#86210, #91375, <pekkas@netcore.fi>)
1873
1874 * Fri Aug 8 2003 Bill Nottingham <notting@redhat.com> 7.29-1
1875 - setsysfont: don't echo to /dev/console (#102004)
1876 - fix ethernet device renaming deadlock (#101566)
1877 - consoletype: don't return 'vt' on vioconsole (#90465)
1878 - ifup: fix short-circuit (#101445)
1879
1880 * Fri Jul 18 2003 Nalin Dahyabhai <nalin@redhat.com>
1881 - ifup-routes: pass the interface name to handle_file() so that we don't try
1882 to use the routes file's name as an interface name
1883
1884 * Wed Jul 9 2003 Bill Nottingham <notting@redhat.com> 7.28-1
1885 - switch from $CONFIG.keys to keys-$CONFIG
1886
1887 * Tue Jul 8 2003 Bill Nottingham <notting@redhat.com> 7.27-1
1888 - add a check to consoletype for the current foreground console
1889 - use it when running unicode_start (#98753)
1890
1891 * Wed Jul 2 2003 Bill Nottingham <notting@redhat.com> 7.26-1
1892 - ipsec support (see sysconfig.txt, ifup-ipsec)
1893 - read $CONFIG.keys, for non-world-readable keys
1894 - allow default window size for routes to be set with WINDOW= (#98112)
1895 - support setting device options with ethtool opts
1896 - fix s390 bootup spew (#98078)
1897 - support renaming interfaces with nameif based on hwaddr
1898
1899 * Mon Jun 23 2003 Bill Nottingham <notting@redhat.com> 7.25-1
1900 - fix DNS punching in the case of other rules for the DNS server
1901 (#97686, <martin@zepler.org>)
1902 - initlog, ppp-watch, and usernetctl tweaks (<linux_4ever@yahoo.com>)
1903 - fix grep for mingetty (#97188)
1904 - fix rhgb-client bad syntax
1905 - change network device searching, use correct naming, fix route issues
1906 (<harald@redhat.com>)
1907 - other random tweaks
1908
1909 * Fri May 23 2003 Bill Nottingham <notting@redhat.com> 7.24-1
1910 - now even still yet more tweaks for graphical boot
1911
1912 * Thu May 22 2003 Bill Nottingham <notting@redhat.com> 7.23-1
1913 - even still yet more tweaks for graphical boot
1914
1915 * Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.22-1
1916 - still yet more tweaks for graphical boot
1917
1918 * Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.21-1
1919 - yet more tweaks for graphical boot
1920
1921 * Fri May 2 2003 Bill Nottingham <notting@redhat.com> 7.20-1
1922 - more tweaks for graphical boot
1923
1924 * Wed Apr 30 2003 Bill Nottingham <notting@redhat.com> 7.18-1
1925 - some tweaks for graphical boot
1926
1927 * Mon Apr 21 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1928 - initscripts-s390.patch: remove not needed parts about PNP=
1929 - inittab.390: sync with normal version
1930 - rc.sysinit: remove two further calls to /sbin/consoletype with $CONSOLETYPE
1931
1932 * Fri Apr 18 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1933 - sysconfig/init.s390: set LOGLEVEL=3 as for other archs
1934 - rc.d/init.d/network, rc.d/rc: change confirmation mode to
1935 not use an environment variable
1936 - rc.d/init.d/functions: make strstr() even shorter, remove old
1937 "case" version that has been already commented out
1938 - rc.d/rc.sysinit:
1939 - no need to set NETWORKING=no, it is not used/exported
1940 - do not export BOOTUP
1941 - delete two "sleep 1" calls that wants to add time to go
1942 into confirmation mode. There is enough time to press a
1943 key anyway or use "confirm" in /proc/cmdline.
1944 - read /proc/cmdline into a variable
1945 - use strstr() to search in /proc/cmdline
1946 - add "forcefsck" as possible option in /proc/cmdline
1947 - while removing lock files, no need to call `basename`
1948 - add unamer=`uname -r` and reduce number of forks
1949 - do not fork new bash to create /var/log/ksyms.0
1950
1951 * Thu Apr 03 2003 Karsten Hopp <karsten@redhat.de> 7.15-1
1952 - Mainframe has no /dev/ttyX devices and no mingetty, don't
1953 initialize them. This gave error messages during startup
1954
1955 * Mon Mar 17 2003 Nalin Dahyabhai <nalin@redhat.com>
1956 - init.d/network: don't advertise "probe: true" in the header if we don't
1957 recognize "probe" as an argument
1958
1959 * Wed Mar 12 2003 Bill Nottingham <notting@redhat.com> 7.14-1
1960 * - do not handle changed chain name; change was reverted
1961
1962 * Tue Feb 25 2003 Bill Nottingham <notting@redhat.com> 7.13-1
1963 - handle 7.x SYSFONTACM settings in setsysfont (#84183)
1964
1965 * Mon Feb 24 2003 Bill Nottingham <notting@redhat.com> 7.12-1
1966 - handle changed chain name
1967 - init vts used in all cases
1968
1969 * Fri Feb 21 2003 Bill Nottingham <notting@redhat.com> 7.10-1
1970 - handle LANGUAGE specially for zh_CN.GB18030 and gdm (#84773)
1971
1972 * Thu Feb 20 2003 Bill Nottingham <notting@redhat.com> 7.09-1
1973 - initialize two ttys past # of mingettys (for GDM)
1974 - fix zeroconf route
1975 - redhat-config-network writes $NAME.route for some static routes
1976 (e.g., ppp); handle that (#84193)
1977
1978 * Tue Feb 18 2003 Bill Nottingham <notting@redhat.com> 7.08-1
1979 - load keybdev & mousedev even if hid is already loaded/static
1980 - run fewer scripts through action (#49670, #75279, #81531)
1981
1982 * Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 7.07-1
1983 - fix nicknames & profiles (#82246)
1984 - fix check_device_down (#83780, <pzb@datstacks.com>)
1985 - vlan fixes (<tis@foobar.fi>)
1986 - fix groff macros (#83531, <tsekine@sdri.co.jp>)
1987 - various updated translations
1988 - fix checkpid for multiple pids (#83401)
1989
1990 * Fri Jan 31 2003 Bill Nottingham <notting@redhat.com> 7.06-1
1991 - 802.1Q VLAN support (<tis@foobar.fi>, #82593)
1992 - update translations
1993
1994 * Thu Jan 30 2003 Bill Nottingham <notting@redhat.com> 7.05-1
1995 - fix syntax error in rc.sysinit when there are fsck errors
1996 - fix zh_TW display on console (#82235)
1997
1998 * Wed Jan 15 2003 Bill Nottingham <notting@redhat.com> 7.04-1
1999 - tweak some translatable strings
2000 - fix for rc.sysinit on machines that pass arguments to mingetty
2001 (<nalin@redhat.com>)
2002
2003 * Tue Jan 14 2003 Bill Nottingham <notting@redhat.com> 7.03-1
2004 - move system font setting sooner (<milan.kerslager@pslib.cz>)
2005 - fix link checking for dhcp, use both ethtool and mii-tool
2006 - fix CJK text on the console, and locale-archive held open
2007 on shutdown
2008 - IPv6 updates <pekkas@netcore.fi>, <pb@bieringer.de>
2009 - speedup tweaks (<drepper@redhat.com>)
2010 - use glib2 for ppp-watch (#78690, <kisch@mindless.com>)
2011 - add zeroconf route (#81738)
2012 - fix ifup-ppp for dial-on-demand, and onboot (<goeran@uddeborg.pp.se>)
2013 - tweak raidtab parsing, don't worry about not-in-fstab RAID devices
2014 (#71087, #78467, <aja@mit.edu>)
2015 - don't automatically bring up aliases if 'ONPARENT=no' is set (#78992)
2016 - getkey cleanups/tweaks (#76071, <ben@enchantedforest.org>)
2017 - rework halt_get_remaining (#76831, <michal@harddata.com>)
2018 - ipcalc: fix calculation of /32 addresses (#76646)
2019 - various other tweaks and fixes
2020
2021 * Fri Dec 20 2002 Bill Nottingham <notting@redhat.com> 7.01-1
2022 - %%config(noreplace) inittab
2023
2024 * Tue Dec 17 2002 Nalin Dahyabhai <nalin@redhat.com>
2025 - add a "nofirewire" option to /etc/rc.sysinit, analogous to "nousb"
2026
2027 * Tue Dec 17 2002 Bill Nottingham <notting@redhat.com> 7.00-1
2028 - tweaks for potential GUI bootup
2029 - loop checking for network link state, don't unilterally wait five
2030 seconds
2031
2032 * Fri Dec 14 2002 Karsten Hopp <karsten@redhat.de> 6.99-1
2033 - remove call to /sbin/update for S/390, too
2034
2035 * Wed Dec 11 2002 Bill Nottingham <notting@redhat.com> 6.98-1
2036 - remove call to /sbin/update
2037 - fix netprofile
2038
2039 * Mon Dec 2 2002 Bill Nottingham <notting@redhat.com> 6.97-1
2040 - IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
2041 - devlabel support (<Gary_Lerhaupt@Dell.com>)
2042 - do lazy NFS umounts
2043
2044 * Tue Nov 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2045 - correctly remove non-packaged files for mainframe
2046
2047 * Tue Nov 12 2002 Bill Nottingham <notting@redhat.com> 6.96-1
2048 - fix various static-routes brokeness (#74317, #74318, #74320, #76619,
2049 #75604)
2050 - fix handling of SYSFONTACM in setsysfont (#75662)
2051 - fix lang.csh for CJK (#76908, <ynakai@redhat.com>)
2052 - IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
2053 - other minor tweaks
2054
2055 * Mon Sep 16 2002 Than Ngo <than@redhat.com>
2056 - owns directory /etc/ppp/peers (bug #74037)
2057
2058 * Wed Sep 4 2002 Bill Nottingham <notting@redhat.com> 6.95-1
2059 - fix syntax error in duplicate route removal section of ifup
2060
2061 * Wed Sep 4 2002 Nalin Dahyabhai <nalin@redhat.com> 6.94-1
2062 - fix syntax error calling unicode_start when SYSFONTACM isn't set
2063
2064 * Mon Sep 2 2002 Bill Nottingham <notting@redhat.com>
2065 - fix calling of unicode_start in lang.{sh,csh}
2066 - ipv6 tweak
2067
2068 * Wed Aug 28 2002 Bill Nottingham <notting@redhat.com>
2069 - don't infinite loop on ifdown
2070 - remove disabling of DMA; this can cause problems
2071 - move swap startup to after LVM (#66588)
2072
2073 * Tue Aug 20 2002 Bill Nottingham <notting@redhat.com>
2074 - don't cycle through eth0-eth9 on dhcp link check (#68127)
2075 - don't retry indefinitely on ppp startup
2076 - activate network profile passed on kernel commandline via netprofile=
2077 - fix iptables invocations again
2078 - translation refresh
2079
2080 * Wed Aug 14 2002 Bill Nottingham <notting@redhat.com>
2081 - fix silly typo in rc.sysinit
2082 - increase timeout for link to 5 seconds (#70545)
2083
2084 * Tue Aug 13 2002 Bill Nottingham <notting@redhat.com>
2085 - require /etc/redhat-release (#68903)
2086 - fix tty2-tty6 (sort of)
2087 - fix iptables invocations (#70807, #71201, #68368)
2088 - other minor tweaks
2089
2090 * Wed Jul 24 2002 Bill Nottingham <notting@redhat.com>
2091 - fix unicode checks in rc.sysinit, lang.{sh,csh} to handle UTF-8@euro
2092
2093 * Tue Jul 16 2002 Bill Nottingham <notting@redhat.com>
2094 - use iptables, not ipchains
2095
2096 * Tue Jul 16 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2097 - /sbin/service: set PATH before calling startup scripts
2098 HOME and TERM are also set during bootup, but they should not make
2099 a difference for well-written daemons.
2100
2101 * Mon Jul 15 2002 Bill Nottingham <notting@redhat.com>
2102 - fix boot-time cleanup of /var
2103 - update po files
2104
2105 * Thu Jul 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2106 - /etc/init.d/functions:
2107 daemon(): avoid starting another bash
2108 killproc(): avoid starting another bash for the default case
2109 - do not call "insmod -p" before loading the "st" module
2110
2111 * Tue Jul 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2112 - allow an option for ups poweroff #68123
2113 - change grep for ONBOOT= #63903
2114 - allow building with a cross-compiler #64362,#64255
2115 - faster check in network-functions:check_default_route()
2116 - better checks for backup files
2117 - drastically reduce the number of consoletype invocations
2118 - do not export "GATEWAY" in network-functions
2119 - code cleanups in rc.sysinit
2120
2121 * Fri Jul 05 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2122 - rc.sysinit: do not load raid modules unless /etc/raidtab exists
2123 - many cleanups for more consistent shell programming and also
2124 many smaller speedups within network scripts, no un-necessary sourcing
2125 of files etc
2126 - nearly re-code /etc/rc.d/rc
2127
2128 * Thu Jun 27 2002 Bill Nottingham <notting@redhat.com>
2129 - a couple minor unicode tweaks in rc.sysinit
2130
2131 * Wed Jun 26 2002 Bill Nottingham <notting@redhat.com>
2132 - move /proc/bus/usb mount, in case USB is in the initrd
2133
2134 * Wed Jun 26 2002 Preston Brown <pbrown@redhat.com>
2135 - don't try to set wireless freq/channel when in Managed mode
2136
2137 * Wed Jun 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
2138 - start some sh coding cleanups
2139 - change to /etc/init.d/functions
2140 - eliminate some un-necessary PATH settings
2141 - eliminate some TEXTDOMAIN settings
2142
2143 * Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 6.78-1
2144 - fix UTF-8 checks
2145
2146 * Wed Jun 05 2002 Than Ngo <than@redhat.com> 6.77-1
2147 - fixed a bug in setting defaultgateway
2148
2149 * Thu May 30 2002 Bill Nottingham <notting@redhat.com> 6.76-1
2150 - call unicode_start in lang.{sh,csh}, setsysfont when necessary
2151
2152 * Tue May 28 2002 Bill Nottingham <notting@redhat.com> 6.75-1
2153 - add check for link for dhcp back in
2154
2155 * Fri Apr 19 2002 Bill Nottingham <notting@redhat.com> 6.67-1
2156 - fix silly cut&paste bug in hdparm settings in initscripts
2157
2158 * Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 6.65-1
2159 - Update translations
2160
2161 * Sun Apr 14 2002 Bill Nottingham <notting@redhat.com> 6.64-1
2162 - make sure chatdbg is set before using it (#63448, <Bertil@Askelid.com>)
2163 - allow tweaking of more devices with hdparm (#53511), and
2164 tweak non-disk devices iff they explicitly have a config file
2165 for that device (#56575, #63415)
2166 - some translation updates
2167
2168 * Fri Apr 12 2002 Bill Nottingham <notting@redhat.com> 6.63-1
2169 - ipcalc cleanups (#58410)
2170 - quit stripping binaries
2171 - do LVM init after RAID init too (#63238)
2172 - export all locale variables (#56142)
2173 - run sysctl -p after network init as well
2174
2175 * Tue Apr 09 2002 Bill Nottingham <notting@redhat.com> 6.62-1
2176 - delete X/VNC locks on startup (#63035)
2177 - shut up DMA disabling, move it to after ide-scsi (#62873, #62956)
2178 - use full path to /sbin/ifconfig (#59457)
2179 - /sbin/service: change to root directory before staring/stopping;
2180 also sanitize environment
2181
2182 * Tue Apr 02 2002 Bill Nottingham <notting@redhat.com> 6.61-1
2183 - when disabling DMA, don't use things in /usr
2184
2185 * Thu Mar 28 2002 Bill Nottingham <notting@redhat.com> 6.60-1
2186 - disable DMA on CD-ROMs at bootup
2187
2188 * Wed Mar 27 2002 Bill Nottingham <notting@redhat.com> 6.59-1
2189 - add local hook to halt
2190
2191 * Fri Mar 15 2002 Than Ngo <than@redhat.com> 6.58-1
2192 - fix usernetctl for working with neat
2193
2194 * Thu Mar 14 2002 Bill Nottingham <notting@redhat.com> 6.57-1
2195 - update translations
2196
2197 * Tue Mar 12 2002 Bill Nottingham <notting@redhat.com> 6.56-1
2198 - use nameif for interfaces where we don't agree on HWADDR with the
2199 config file (<harald@redhat.com>)
2200 - LSB support tweaks
2201
2202 * Tue Mar 12 2002 Mike A. Harris <mharris@redhat.com> 6.55-1
2203 - Removed process accounting stuff from rc.sysinit and halt scripts as it is
2204 now handled by the psacct initscript in the psacct package
2205
2206 * Thu Feb 28 2002 Bill Nottingham <notting@redhat.com>
2207 - conflict with older psacct
2208
2209 * Fri Feb 22 2002 Bill Nottingham <notting@redhat.com>
2210 - fix invocation of need_hostname (#58946), a couple other minor tweaks
2211
2212 * Tue Feb 12 2002 Mike A. Harris <mharris@redhat.com>
2213 - rc.sysinit: changed /var/log/pacct to /var/account/pacct for FHS 2.2 compliance
2214
2215 * Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
2216 - run /bin/setfont, not /usr/bin/setfont (kbd)
2217 - lots-o-random bugfixes/tweaks (see ChangeLog)
2218
2219 * Thu Jan 17 2002 Michael K. Johnson <johnsonm@redhat.com>
2220 - Added support for libredhat-kernel.so.* symlink handling
2221
2222 * Wed Nov 7 2001 Than Ngo <than@redhat.com>
2223 - fix bug in setting netmask on s390/s390x (bug #55421)
2224 nmbd daemon works now ;-)
2225
2226 * Fri Nov 2 2001 Than Ngo <than@redhat.com>
2227 - fixed typo bug ifup-ippp
2228
2229 * Mon Oct 29 2001 Than Ngo <than@redhat.com>
2230 - fix bug in channel bundling if MSN is missed
2231 - support DEBUG option
2232
2233 * Wed Sep 19 2001 Than Ngo <than@redhat.com>
2234 - don't show user name by DSL connection
2235
2236 * Sat Sep 8 2001 Bill Nottingham <notting@redhat.com>
2237 - don't run hwclock --adjust on a read-only filesystem
2238
2239 * Thu Sep 6 2001 Than Ngo <than@redhat.com>
2240 * update initscripts-s390.patch for s390/s390x
2241
2242 * Wed Sep 5 2001 Bill Nottingham <notting@redhat.com>
2243 - translation updates
2244 - quota and hwclock tweaks (<pbrown@redhat.com>)
2245
2246 * Mon Sep 3 2001 Bill Nottingham <notting@redhat.com>
2247 - fix severe alias problems (#52882)
2248
2249 * Mon Sep 3 2001 Than Ngo <than@redhat.com>
2250 - don't start pppbind if encapsulation is rawip (bug #52491)
2251
2252 * Sun Sep 2 2001 Than Ngo <than@redhat.com>
2253 - add ISDN patches from pekkas@netcore.fi and pb@bieringer.de (bug #52491)
2254 - fix handling of ISDN LSZ Compresssion
2255
2256 * Thu Aug 30 2001 Than Ngo <than@redhat.com>
2257 - po/de.po: fix typo bug, lo instead 1o
2258
2259 * Wed Aug 29 2001 David Sainty <dsainty@redhat.com>
2260 - fix ifdown for multiple dhcpcd interfaces
2261
2262 * Wed Aug 29 2001 Than Ngo <than@redhat.com>
2263 - fix ISDN dial on demand bug
2264 - fix typo bug in network-functions
2265
2266 * Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com>
2267 - document /etc/sysconfig/authconfig
2268
2269 * Tue Aug 28 2001 Bill Nottingham <notting@redhat.com> 6.31-1
2270 - message un-tweaks (<johnsonm@redhat.com>)
2271 - make getkey more useful, fix some of the autofsck stuff (<johnsonm@redhat.com>)
2272
2273 * Mon Aug 27 2001 Bill Nottingham <notting@redhat.com>
2274 - autofsck support, archive modules/symbol info (<johnsonm@redhat.com>)
2275
2276 * Mon Aug 27 2001 Than Ngo <than@redhat.com>
2277 - fix some typo bugs in ifup-ippp <ubeck@c3pdm.com>
2278
2279 * Fri Aug 24 2001 Bill Nottingham <notting@redhat.com>
2280 - sort output of halt_get_remaining (#52180)
2281 - fix bad translation (#52503)
2282
2283 * Wed Aug 22 2001 Bill Nottingham <notting@redhat.com>
2284 - fix ifup-wireless (#52135)
2285
2286 * Wed Aug 22 2001 Than Ngo <than@redhat.com>
2287 - fix return code of isdnctrl (bug #52225)
2288
2289 * Tue Aug 21 2001 Than Ngo <than@redhat.com>
2290 - fix Bringing up isdn device again. It works now correct.
2291
2292 * Tue Aug 21 2001 Than Ngo <than@redhat.com>
2293 - fix shutdown/Bringing up isdn device
2294
2295 * Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com>
2296 - fix syntax error in lang.csh
2297 - set codeset by echoing to /dev/tty instead of /proc/self/fd/15
2298
2299 * Sun Aug 19 2001 Bill Nottingham <notting@redhat.com>
2300 - fix a broken call to check_device_down
2301 - make all loopback addresses have host scope, not global scope.
2302 Fixes #49374, possibly others
2303
2304 * Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
2305 - add is_available() network function, use it; cleans up ugly modprobe
2306 error messages
2307 - update translation info
2308 - fix #51787
2309
2310 * Wed Aug 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
2311 - adjust s390 patch
2312 - fix up ifup-ctc and mkkerneldoth.s390 (both are s390 specific)
2313
2314 * Mon Aug 13 2001 Yukihiro Nakai <ynakai@redhat.com>
2315 - don't display Chinese Korean if we aren't on a pty
2316
2317 * Sat Aug 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
2318 - adjust s390 patches to current sources
2319
2320 * Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
2321 - use GDM_LANG if it's set in lang.sh/lang.csh (#51432, <otaylor@redhat.com>)
2322
2323 * Fri Aug 10 2001 Than Ngo <than@redhat.com>
2324 - don't set MSN if it' empty (it's now optional)
2325 - don't give login name as a cmdline-option (Bug #23066)
2326 - remove peer device file if ppp connection is down
2327 - fix channel bundling
2328
2329 * Thu Aug 9 2001 Bill Nottingham <notting@redhat.com>
2330 - require SysVinit (#51335)
2331
2332 * Wed Aug 8 2001 Bill Nottingham <notting@redhat.com>
2333 - tweak raittab grep slightly (#51231)
2334 - allow resetting of default route for DHCP addresses (#48994)
2335 - save resolv.conf in ifup-ppp for restoration by ifdown-post (#50759)
2336 - when munging firewall rules for dns, only allow dest ports 1025-65535 (#44038, #40833)
2337 - allow shell characters in ppp names (#43719)
2338 - allow setting DHCP arguments, just kill dhcpcd instead of using -k (#46492)
2339 - behave sanely if ifup called when dhcpcd is running (#49392, #51038)
2340
2341 * Mon Aug 6 2001 Bill Nottingham <notting@redhat.com>
2342 - honor HOTPLUG=no if running under hotplug (#47483)
2343 - use awk, not grep, for modprobe -c checks (#49616)
2344 - don't print ugly messages for the case where the device doesn't exist,
2345 and there is no alias (i.e., PCMCIA ONBOOT=yes (#various))
2346 - run kbdconfig in /.unconfigured mode (#43941)
2347 - use a bigger buffer size argument to dmesg (#44024)
2348 - detach loopback devices on shutdown (#43919, #45826)
2349
2350 * Thu Aug 2 2001 Bill Nottingham <notting@redhat.com>
2351 - fix halt_get_remaining() (#50720)
2352
2353 * Tue Jul 31 2001 Bill Nottingham <notting@redhat.com>
2354 - mount all FS types r/o at halt (#50461)
2355 - don't use mii-tool at all (#various)
2356
2357 * Thu Jul 26 2001 Bill Nottingham <notting@redhat.com>
2358 - don't use kbd commands in setsysfont now that we've switched back to
2359 console-tools (#50075)
2360 - sleep in check_link_down; some devices require it
2361 - only bring link down if check_link_down fails
2362
2363 * Wed Jul 25 2001 Bill Nottingham <notting@redhat.com>
2364 - set link up before checking with mii-tool (#49949)
2365
2366 * Tue Jul 24 2001 Bill Nottingham <notting@redhat.com>
2367 - update netdev stuff to use _netdev
2368 - IPv6 updates (<pekkas@netcore.fi>)
2369 - fix downing of devices with static IPs (#49777, #49783)
2370 - put ifcfg-lo back in the package
2371
2372 * Fri Jul 20 2001 Preston Brown <pbrown@redhat.com> 6.06
2373 - updates for quota
2374
2375 * Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
2376 - own some more directories
2377 - use -O nonetdev, require mount package that understands this
2378 - fix do_netreport when called as non-root
2379 - remove ip addresses from interfaces on ifdown
2380 - oops, fix ifup/ifdown
2381
2382 * Mon Jul 16 2001 Than Ngo <than@redhat.com>
2383 - fix country_code for ISDN
2384
2385 * Tue Jul 9 2001 Bill Nottingham <notting@redhat.com>
2386 - fix '--check'
2387 - prereq sh-utils (#43065)
2388 - fix some invocations of reboot/halt (#45966)
2389 - fix typo in ifup-wireless
2390 - don't muck with /etc/issue each boot
2391 - big IPv6 update (<pekkas@netcore.fi>)
2392
2393 * Fri Jul 6 2001 Trond Eivind Glomsrød <teg@redhat.com>
2394 - Add new directories required by new network tool
2395
2396 * Thu Jul 05 2001 Karsten Hopp <karsten@redhat.de>
2397 - disable hwclock on S390 (no such executable)
2398 - Fix up kernel versioning on binary-only modules (S390)
2399 - don't use newt scripts on S390 console
2400
2401 * Sat Jul 01 2001 Trond Eivind Glomsrød <teg@redhat.com>
2402 - reenable pump, but make sure dhcpcd is the default. This
2403 way, upgrades of systems without dhcpcd has a better chance at
2404 working.
2405
2406 * Thu Jun 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
2407 - Disable pump completely
2408
2409 * Wed Jun 27 2001 Than Ngo <than@redhat.com>
2410 - fix pap/chap authentication for syncppp
2411 - support ippp options
2412
2413 * Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
2414 - add ifup-wireless
2415
2416 * Fri Jun 22 2001 Than Ngo <than@redhat.com>
2417 - add support xDSL
2418
2419 * Thu Jun 21 2001 Bill Nottingham <notting@redhat.com>
2420 - more networking script fixes (#45364)
2421 - add stuff for unmounting /initrd
2422
2423 * Thu Jun 21 2001 Than Ngo <than@redhat.com>
2424 - add support ISDN
2425
2426 * Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
2427 - fix extremely broken new network scripts
2428
2429 * Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
2430 - bump version to 5.89
2431 - make it build
2432
2433 * Thu May 17 2001 Bill Nottingham <notting@redhat.com>
2434 - don't run ifup ppp0 if ppp-watch gets SIGINT (#40585, ak@cave.hop.stu.neva.ru)
2435 - fix do_netreport (#37716, #39603 <crlf@aeiou.pt>)
2436
2437 * Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
2438 - copyright: GPL -> license: GPL
2439 - fix a syntax error in lang.csh
2440 - skip commented-out i18n configuration lines in lang.csh
2441
2442 * Fri May 11 2001 Preston Brown <pbrown@redhat.com>
2443 - new network-scripts infrastructure; ifcfg-lo moved to /etc/sysconfig/networking
2444
2445 * Wed May 2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.86-1
2446 - support kbd in setsysfont
2447 - bzip2 source
2448
2449 * Wed Apr 25 2001 Florian La Roche <Florian.LaRoche@redhat.de>
2450 - add further s390 changes:
2451 - ifup-iucv
2452 - mkkerneldoth.s390
2453
2454 * Tue Apr 24 2001 Than Ngo <than@redhat.com>
2455 - add shutdown UPS into halt (bug #34312)
2456
2457 * Sat Apr 7 2001 Preston Brown <pbrown@redhat.com>
2458 - broke out kernel.h updater from rc.sysinit into /sbin/mkkerneldoth
2459
2460 * Fri Apr 6 2001 Bill Nottingham <notting@redhat.com>
2461 - be a little more careful in do_netreport (#34933)
2462
2463 * Tue Apr 3 2001 Bill Nottingham <notting@redhat.com>
2464 - set umask explicitly to 022 in /etc/init.d/functions
2465
2466 * Mon Apr 2 2001 Bill Nottingham <notting@redhat.com>
2467 - fix segfault in usernetctl (#34353)
2468
2469 * Mon Mar 26 2001 Bill Nottingham <notting@redhat.com>
2470 - don't print errors in /etc/init.d/network if kernel.hotplug doesn't exist
2471
2472 * Thu Mar 22 2001 Erik Troan <ewt@redhat.com>
2473 - take advantage of new swapon behaviors
2474
2475 * Wed Mar 14 2001 Bill Nottingham <notting@redhat.com>
2476 - add cipe interfaces last (#31597)
2477
2478 * Tue Mar 13 2001 Bill Nottingham <notting@redhat.com>
2479 - fix typo in ifup (#31627)
2480 - update translation source
2481
2482 * Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com>
2483 - fix typo in rc.sysinit
2484 - fix ifup-routes not setting DEVICE properly
2485
2486 * Mon Mar 12 2001 Preston Brown <pbrown@redhat.com>
2487 - Work properly with new quota utilities
2488
2489 * Mon Mar 5 2001 Bill Nottingham <notting@redhat.com>
2490 - IPv6 fixes (#30506)
2491 - make static-routes handling more sane and consistent (#29500, #29549)
2492 - handle multiple USB controllers *correctly*
2493
2494 * Wed Feb 28 2001 Nalin Dahyabhai <nalin@redhat.com>
2495 - usernetctl, ppp-watch: cleanups
2496 - netreport: use O_NOFOLLOW
2497 - ifup-ppp: let ppp-watch watch over demand-dialed connections (#28927)
2498
2499 * Tue Feb 27 2001 Bill Nottingham <notting@redhat.com>
2500 - don't run isapnp on isapnp-enabled 2.4 kernels (part of #29450)
2501 - disable hotplug during network initscript
2502 - don't munge wireless keys in ifup; that will be done with the
2503 PCMCIA wireless stuff
2504 - run sndconfig --mungepnp for non-native-isapnp soundcards
2505 - don't explicitly kill things in init.d/single, init will do it
2506 - don't explicitly load usb-storage; mount the usbdevfs before initializing
2507 host controller modules
2508
2509 * Wed Feb 21 2001 Bill Nottingham <notting@redhat.com>
2510 - initialize multiple USB controllers if necessary
2511
2512 * Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
2513 - close extra file descriptors before exec()ing commands in initlog
2514
2515 * Mon Feb 19 2001 Bill Nottingham <notting@redhat.com>
2516 - fix some substitions in init.d/functions (fixes various killproc issues)
2517 - make sure ipv6 module alias is available if configured
2518 - fix initlog segfaults in popt when called with bogus stuff (#28140)
2519
2520 * Thu Feb 15 2001 Nalin Dahyabhai <nalin@redhat.com>
2521 - make pidofproc() and killproc() try to use the PID associated with the full
2522 pathname first before killing the daemon by its basename (for daemons that
2523 share the same basename, i.e. "master" in postfix and cyrus-imapd) (#19016)
2524 - fix status() as well
2525
2526 * Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
2527 - fix init.d/single to work around possible kernel problem
2528
2529 * Tue Feb 13 2001 Bill Nottingham <notting@redhat.com>
2530 - fix unmounting of loopback stuff (#26439, #14672)
2531
2532 * Mon Feb 12 2001 Bill Nottingham <notting@redhat.com>
2533 - fix ifup-post so that it will work right when not called from ifup
2534
2535 * Sat Feb 10 2001 Florian La Roche <Florian.LaRoche@redhat.de>
2536 - add all save changes for s390 s390x that won't break anything
2537 patches are from Oliver Paukstadt @ millenux.com
2538
2539 * Fri Feb 9 2001 Bill Nottingham <notting@redhat.com>
2540 - muck with the font in lang.csh/lang.sh, but don't spit out errors (#26903)
2541
2542 * Wed Feb 7 2001 Bill Nottingham <notting@redhat.com>
2543 - ipv6 sync ups (#26502, #25775)
2544 - fix hangs at shutdown (#25744)
2545 - fix ifup-ppp (#26323)
2546
2547 * Tue Feb 6 2001 Bill Nottingham <notting@redhat.com>
2548 - modify firewall on ifup to allow any new DNS servers through (#25951)
2549 - don't muck with the font in lang.csh/lang.sh (#26349)
2550 - don't display Japanese if we aren't on a pty (#25041)
2551 - load ide-scsi if passed on /proc/cmdline
2552
2553 * Mon Feb 5 2001 Trond Eivind Glomsrød <teg@redhat.com>
2554 - i18n updates
2555
2556 * Fri Feb 2 2001 Bill Nottingham <notting@redhat.com>
2557 - actually *ship* the ipv6 (and plusb) files
2558
2559 * Thu Feb 1 2001 Trond Eivind Glomsrød <teg@redhat.com>
2560 - i18n updates
2561
2562 * Tue Jan 30 2001 Bill Nottingham <notting@redhat.com>
2563 - various init.d/functions cleanups (#10761, from <mjt@tls.msk.ru>)
2564 - in daemon(), only look at pidfile to determine if process is running
2565 (#17244, others)
2566 - ifup-ppp enhancements (#17388, from <ayn2@cornell.edu>)
2567 - ipv6 support (#23576, originally by Peter Bieringer <pb@bieringer.de>)
2568 - lots of other minor fixes (see ChangeLog)
2569
2570 * Mon Jan 29 2001 Bill Nottingham <notting@redhat.com>
2571 - add plusb support (#18892, patch from <eric.ayers@compgen.com>)
2572 - don't ignore RETRYTIMEOUT when we never connect (#14071, patch from
2573 <ak@cave.hop.stu.neva.ru>)
2574
2575 * Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
2576 - quiet LVM setup (#24841)
2577 - fix inability to shutdown cleanly (#24889)
2578
2579 * Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
2580 - new i18n mechanism
2581
2582 * Tue Jan 23 2001 Matt Wilson <msw@redhat.com>
2583 - fixed typo in init.d/network - missing | in pipeline
2584
2585 * Mon Jan 22 2001 Bill Nottingham <notting@redhat.com>
2586 - do LVM setup through normal initscripts mechanisms
2587 - ignore backup files in /etc/sysconfig/network-scripts
2588 - lots of .po file updates
2589
2590 * Tue Jan 2 2001 Bill Nottingham <notting@redhat.com>
2591 - initial i18n support - originally from Conectiva
2592
2593 * Mon Dec 11 2000 Bill Nottingham <notting@redhat.com>
2594 - only load sound if persistent DMA buffers are necessary
2595 - fix lots of bugs: #18619, #21187, #21283, #12097
2596 - integrate MAXFAIL option for ppp-watch
2597 - don't load keymaps/fonts on a serial console
2598
2599 * Tue Nov 21 2000 Karsten Hopp <karsten@redhat.de>
2600 - changed hdparm section in rc.sysinit to allow different
2601 parameters for each disk (if needed) by copying
2602 /etc/sysconfig/harddisks to /etc/sysconfig/harddiskhda (hdb,hdc..)
2603 - fix RFE #20967
2604
2605 * Tue Oct 31 2000 Than Ngo <than@redhat.com>
2606 - fix the adding default route if GATEWAY=0.0.0.0
2607
2608 * Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com>
2609 - handle "gw x.x.x.x" as the last pair of flags in ifup-routes (#18804)
2610 - fix top-level makefile install target
2611 - make usernetctl just fall-through if getuid() == 0
2612
2613 * Sun Sep 3 2000 Florian La Roche <Florian.LaRoche@redhat.com>
2614 - /etc/init.d is already provided by chkconfig
2615
2616 * Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
2617 - set "holdoff ${RETRYTIMEOUT} ktune" for demand-dialed PPP links
2618
2619 * Tue Aug 22 2000 Bill Nottingham <notting@redhat.com>
2620 - update documentation (#15475)
2621
2622 * Tue Aug 22 2000 Than Ngo <than@redhat.de>
2623 - add KDE2 support to prefdm
2624
2625 * Mon Aug 21 2000 Bill Nottingham <notting@redhat.com>
2626 - add usleep after kill -KILL in pidofproc, works around lockd issues (#14847)
2627 - add some fallback logic to prefdm (#16464)
2628
2629 * Fri Aug 18 2000 Bill Nottingham <notting@redhat.com>
2630 - don't load usb drivers if they're compiled statically
2631 - don't call ifdown-post twice for ppp (#15285)
2632
2633 * Wed Aug 16 2000 Bill Nottingham <notting@redhat.com>
2634 - fix /boot/kernel.h generation (#16236, #16250)
2635
2636 * Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com>
2637 - be more careful about creating files in netreport (#16164)
2638
2639 * Sat Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
2640 - move documentation for the DEMAND and IDLETIMEOUT values to the right
2641 section of sysconfig.txt
2642
2643 * Wed Aug 9 2000 Bill Nottingham <notting@redhat.com>
2644 - load agpgart if necessary (hack)
2645 - fix /boot/kernel.h stuff (jakub)
2646
2647 * Mon Aug 7 2000 Bill Nottingham <notting@redhat.com>
2648 - remove console-tools requirement
2649 - in netfs, start portmap if needed
2650 - cosmetic cleanups, minor tweaks
2651 - don't probe USB controllers
2652
2653 * Mon Aug 7 2000 Nalin Dahyabhai <nalin@redhat.com>
2654 - fix demand-dialing support for PPP devices
2655 - change updetach back to nodetach
2656
2657 * Sun Aug 6 2000 Bill Nottingham <notting@redhat.com>
2658 - add RETRYCONNECT option for ifcfg-pppX files (kenn@linux.ie)
2659
2660 * Wed Jul 26 2000 Bill Nottingham <notting@redhat.com>
2661 - fix unclean shutdown
2662
2663 * Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
2664 - s/nill/null/g
2665
2666 * Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
2667 - unmount usb filesystem on halt
2668 - run /sbin/ifup-pre-local if it exists
2669
2670 * Tue Jul 18 2000 Trond Eivind Glomsrød <teg@redhat.com>
2671 - add "nousb" command line parameter
2672 - fix some warnings when mounting /proc/bus/usb
2673
2674 * Sat Jul 15 2000 Matt Wilson <msw@redhat.com>
2675 - kill all the PreTransaction stuff
2676 - directory ownership cleanups, add more LSB symlinks
2677 - move all the stuff back in to /etc/rc.d/
2678
2679 * Thu Jul 13 2000 Bill Nottingham <notting@redhat.com>
2680 - fix == tests in rc.sysinit
2681 - more %%pretrans tweaks
2682
2683 * Thu Jul 13 2000 Jeff Johnson <jbj@redhat.com>
2684 - test if /etc/rc.d is a symlink already in pre-transaction syscalls.
2685
2686 * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
2687 - implement the %%pre with RPM Magic(tm)
2688
2689 * Sat Jul 8 2000 Bill Nottingham <notting@redhat.com>
2690 - fix it to not follow /etc/rc.d
2691
2692 * Fri Jul 7 2000 Bill Nottingham <notting@redhat.com>
2693 - fix %%pre, again
2694
2695 * Thu Jul 6 2000 Bill Nottingham <notting@redhat.com>
2696 - tweak %%pre back to a mv (rpm is fun!)
2697 - do USB initialization before fsck, so keyboard works if it fails
2698
2699 * Mon Jul 3 2000 Bill Nottingham <notting@redhat.com>
2700 - rebuild; allow 'fastboot' kernel command line option to skip fsck
2701
2702 * Mon Jul 03 2000 Nalin Dahyabhai <nalin@redhat.com>
2703 - fix demand-dialing with PPP
2704
2705 * Sun Jul 02 2000 Trond Eivind Glomsrød <teg@redhat.com>
2706 - don't use tail
2707
2708 * Thu Jun 28 2000 Trond Eivind Glomsrød <teg@redhat.com>
2709 - add support for USB controllers and HID devices
2710 (mice, keyboards)
2711
2712 * Tue Jun 27 2000 Trond Eivind Glomsrød <teg@redhat.com>
2713 - add support for EIDE optimization
2714
2715 * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
2716 - tweak %%pre
2717
2718 * Wed Jun 21 2000 Preston Brown <pbrown@redhat.com>
2719 - noreplace for adjtime file
2720
2721 * Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com>
2722 - ifup-ppp: add hooks for demand-dialing PPP
2723 - functions: use basename of process when looking for its PID file
2724
2725 * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
2726 - move from /etc/rc.d/init.d -> /etc/init.d
2727
2728 * Tue Jun 13 2000 Bill Nottingham <notting@redhat.com>
2729 - set soft limit, not hard, in daemon function
2730 - /var/shm -> /dev/shm
2731
2732 * Thu Jun 08 2000 Preston Brown <pbrown@redhat.com>
2733 - use dhcpcd if pump fails.
2734 - use depmod -A (faster)
2735
2736 * Sun Jun 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2737 - add autologin support to prefdm
2738
2739 * Thu Jun 1 2000 Bill Nottingham <notting@redhat.com>
2740 - random networking fixes (alias routes, others)
2741 - conf.modules -> modules.conf
2742
2743 * Thu May 11 2000 Nalin Dahyabhai <nalin@redhat.com>
2744 - fix incorrect grep invocation in rc.sysinit (bug #11267)
2745
2746 * Wed Apr 19 2000 Bill Nottingham <notting@redhat.com>
2747 - fix lang.csh, again (oops)
2748 - use /poweroff, /halt to determine whether to poweroff
2749
2750 * Thu Apr 14 2000 Bill Nottingham <notting@redhat.com>
2751 - fix testing of RESOLV_MODS (which shouldn't be used anyways)
2752
2753 * Tue Apr 04 2000 Ngo Than <than@redhat.de>
2754 - fix overwrite problem of resolv.conf on ippp/ppp/slip connections
2755
2756 * Mon Apr 3 2000 Bill Nottingham <notting@redhat.com>
2757 - fix typo in functions file
2758 - explicitly set --localtime when calling hwclock if necessary
2759
2760 * Fri Mar 31 2000 Bill Nottingham <notting@redhat.com>
2761 - fix typo in /etc/rc.d/init.d/network that broke linuxconf (#10472)
2762
2763 * Mon Mar 27 2000 Bill Nottingham <notting@redhat.com>
2764 - remove compatiblity chkconfig links
2765 - run 'netfs stop' on 'network stop' if necessary
2766
2767 * Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2768 - Mount /var/shm if required (2.3.99, 2.4)
2769
2770 * Mon Mar 20 2000 Bill Nottingham <notting@redhat.com>
2771 - don't create resolv.conf 0600
2772 - don't run ps as much (speed issues)
2773 - allow setting of MTU
2774 - other minor fixes
2775
2776 * Sun Mar 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2777 - Start devfsd if installed and needed (Kernel 2.4...)
2778
2779 * Wed Mar 8 2000 Bill Nottingham <notting@redhat.com>
2780 - check that network devices are up before bringing them down
2781
2782 * Wed Mar 8 2000 Jakub Jelinek <jakub@redhat.com>
2783 - update sysconfig.txt
2784
2785 * Tue Mar 7 2000 Bill Nottingham <notting@redhat.com>
2786 - rerun sysctl on network start (for restarts)
2787
2788 * Mon Feb 28 2000 Bill Nottingham <notting@redhat.com>
2789 - don't read commented raid devices
2790
2791 * Mon Feb 21 2000 Bill Nottingham <notting@redhat.com>
2792 - fix typo in resolv.conf munging
2793
2794 * Thu Feb 17 2000 Bill Nottingham <notting@redhat.com>
2795 - sanitize repair prompt
2796 - initial support for isdn-config stuff
2797
2798 * Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
2799 - add which as a package dependency (bug #9416)
2800
2801 * Tue Feb 8 2000 Bill Nottingham <notting@redhat.com>
2802 - fixes for sound module loading
2803
2804 * Mon Feb 7 2000 Nalin Dahyabhai <nalin@redhat.com>
2805 - check that LC_ALL/LINGUAS and LANG are set before referencing them in lang.csh
2806 - fix check for /var/*/news, work around for bug #9140
2807
2808 * Fri Feb 4 2000 Nalin Dahyabhai <nalin@redhat.com>
2809 - fix bug #9102
2810
2811 * Fri Feb 4 2000 Bill Nottingham <notting@redhat.com>
2812 - if LC_ALL/LINGUAS == LANG, don't set them
2813
2814 * Wed Feb 2 2000 Bill Nottingham <notting@redhat.com>
2815 - fix problems with linuxconf static routes
2816
2817 * Tue Feb 1 2000 Nalin Dahyabhai <nalin@redhat.com>
2818 - shvar cleaning
2819 - fix wrong default route ip in network-functions
2820
2821 * Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
2822 - attempt to restore default route if PPP takes it over
2823 - man page fix for ipcalc
2824 - shvar cleaning
2825 - automate maintaining /boot/System.map symlinks
2826
2827 * Mon Jan 31 2000 Bill Nottingham <notting@redhat.com>
2828 - fix hanging ppp-watch
2829 - fix issues with cleaning of /var/{run,lock}
2830
2831 * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
2832 - fix pidof calls in pidofproc
2833
2834 * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
2835 - fix ifup-ipx, don't munge resolv.conf if $DNS1 is already in it
2836
2837 * Thu Jan 13 2000 Bill Nottingham <notting@redhat.com>
2838 - link popt statically
2839
2840 * Mon Jan 10 2000 Bill Nottingham <notting@redhat.com>
2841 - don't try to umount /loopfs
2842
2843 * Mon Dec 27 1999 Bill Nottingham <notting@redhat.com>
2844 - switch to using sysctl
2845
2846 * Mon Dec 13 1999 Bill Nottingham <notting@redhat.com>
2847 - umount /proc *after* trying to turn off raid
2848
2849 * Mon Dec 06 1999 Michael K. Johnson <johnsonm@redhat.com>
2850 - improvements in clone device handling
2851 - better signal handling in ppp-watch
2852 - yet another attempt to fix those rare PAP/CHAP problems
2853
2854 * Sat Nov 28 1999 Bill Nottingham <notting@redhat.com>
2855 - impressive. Three new features, three new bugs.
2856
2857 * Mon Nov 22 1999 Michael K. Johnson <johnsonm@redhat.com>
2858 - fix more possible failed CHAP authentication (with chat scripts)
2859 - fix ppp default route problem
2860 - added ppp-watch man page, fixed usernetctl man page
2861 - make ifup-ppp work again when called from netcfg and linuxconf
2862 - try to keep ppp-watch from filling up logs by respawning pppd too fast
2863 - handle all linuxconf-style alias files with linuxconf
2864
2865 * Mon Nov 22 1999 Bill Nottingham <notting@redhat.com>
2866 - load mixer settings for monolithic sound
2867 - man page for ppp-watch
2868 - add ARP variable for ifup
2869 - some i18n fixes
2870
2871 * Wed Nov 10 1999 Bill Nottingham <notting@redhat.com>
2872 - control stop-a separately from sysrq
2873
2874 * Mon Nov 08 1999 Michael K. Johnson <johnsonm@redhat.com>
2875 - fix some failed CHAP authentication
2876 - fix extremely unlikely, but slightly possible kill-random-process
2877 bug in ppp-watch
2878 - allow DNS{1,2} in any ifcfg-* file, not just PPP, and
2879 add nameserver entries, don't just replace them
2880 - don't use /tmp/confirm, use /var/run/confirm instead
2881
2882 * Tue Nov 2 1999 Bill Nottingham <notting@redhat.com>
2883 - fix lang.csh /tmp race oops
2884
2885 * Wed Oct 27 1999 Bill Nottingham <notting@redhat.com>
2886 - we now ship hwclock on alpha.
2887
2888 * Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com>
2889 - fix check for serial console, don't use -C argument to fsck
2890 on serial console.
2891
2892 * Mon Oct 18 1999 Bill Nottingham <notting@redhat.com>
2893 - do something useful with linuxconf 'any' static routes.
2894
2895 * Tue Oct 12 1999 Matt Wilson <msw@redhat.com>
2896 - added patch from Owen to source i18n configuration before starting prefdm
2897
2898 * Mon Oct 11 1999 Bill Nottingham <notting@redhat.com>
2899 - support for linuxconf alias files
2900 - add support for Jensen clocks.
2901
2902 * Tue Oct 5 1999 Bill Nottingham <notting@redhat.com>
2903 - assorted brown paper bag fixes
2904 - check for programs/files before executing/sourcing them
2905 - control stop-a like magic sysrq
2906
2907 * Thu Sep 30 1999 Bill Nottingham <notting@redhat.com>
2908 - req. e2fsprogs >= 1.15
2909
2910 * Fri Sep 24 1999 Bill Nottingham <notting@redhat.com>
2911 - munge C locale definitions to en_US
2912 - use fsck's completion bar
2913
2914 * Thu Sep 23 1999 Michael K. Johnson <johnsonm@redhat.com>
2915 - ppp-watch now always kills pppd pgrp to make sure dialers are dead,
2916 and tries to hang up the modem
2917
2918 * Tue Sep 21 1999 Bill Nottingham <notting@redhat.com>
2919 - add a DEFRAG_IPV4 option
2920
2921 * Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
2922 - changed to more modern defaults for PPP connections
2923
2924 * Mon Sep 20 1999 Bill Nottingham <notting@redhat.com>
2925 - kill processes for umount in halt, too.
2926 - fixes to remove /usr dependencies
2927
2928 * Fri Sep 17 1999 Bill Nottingham <notting@redhat.com>
2929 - load/save mixer settings in rc.sysinit, halt
2930
2931 * Mon Sep 13 1999 Michael K. Johnson <johnsonm@redhat.com>
2932 - add --remotename option to wvdial code
2933 - make sure we do not have an earlier version of wvdial that doesn't
2934 know how handle --remotename
2935 - make ppp-watch background itself after 30 seconds even if
2936 connection does not come up, at boot time only, so that a
2937 non-functional PPP connection cannot hang boot.
2938
2939 * Sun Sep 12 1999 Bill Nottingham <notting@redhat.com>
2940 - a couple of /bin/sh -> /bin/bash fixes
2941 - fix swapoff silliness
2942
2943 * Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
2944 - chkconfig --del in %%preun, not %%postun
2945 - use killall5 in halt
2946 - swapoff non-/etc/fstab swap
2947
2948 * Wed Sep 08 1999 Michael K. Johnson <johnsonm@redhat.com>
2949 - ifdown now synchronous (modulo timeouts)
2950 - several unrelated cleanups, primarily in ifdown
2951
2952 * Tue Sep 7 1999 Bill Nottingham <notting@redhat.com>
2953 - add an 'unconfigure' sort of thing
2954
2955 * Mon Sep 06 1999 Michael K. Johnson <johnsonm@redhat.com>
2956 - added ppp-watch to make "ifup ppp*" synchronous
2957
2958 * Fri Sep 3 1999 Bill Nottingham <notting@redhat.com>
2959 - require lsof
2960
2961 * Wed Sep 1 1999 Bill Nottingham <notting@redhat.com>
2962 - add interactive prompt
2963
2964 * Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
2965 - disable magic sysrq by default
2966
2967 * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
2968 - new NFS unmounting from Bill Rugolsky <rugolsky@ead.dsa.com>
2969 - fix ifup-sl/dip confusion
2970 - more raid startup cleanup
2971 - make utmp group 22
2972
2973 * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
2974 - pass hostname to pump
2975 - add lang.csh
2976
2977 * Thu Aug 19 1999 Bill Nottingham <notting@redhat.com>
2978 - more wvdial updates
2979 - fix a *stupid* bug in process reading
2980
2981 * Fri Aug 13 1999 Bill Nottingham <notting@redhat.com>
2982 - add new /boot/kernel.h boot kernel version file
2983 - new RAID startup
2984
2985 * Fri Aug 13 1999 Michael K. Johnson <johnsonm@redhat.com>
2986 - use new linkname argument to pppd to make if{up,down}-ppp
2987 reliable -- requires ppp-2.3.9 or higher
2988
2989 * Mon Aug 2 1999 Bill Nottingham <notting@redhat.com>
2990 - fix typo.
2991 - add 'make check'
2992
2993 * Wed Jul 28 1999 Michael K. Johnson <johnsonm@redhat.com>
2994 - simple wvdial support for ppp connections
2995
2996 * Mon Jul 26 1999 Bill Nottingham <notting@redhat.com>
2997 - stability fixes for initlog
2998 - initlog now has a config file
2999 - add alias speedup from dharris@drh.net
3000 - move netfs links
3001 - usleep updates
3002
3003 * Thu Jul 8 1999 Bill Nottingham <notting@redhat.com>
3004 - remove timeconfig dependency
3005 - i18n fixes from nkbj@image.dk
3006 - move inputrc to setup package
3007
3008 * Tue Jul 6 1999 Bill Nottingham <notting@redhat.com>
3009 - fix killall links, some syntax errors
3010
3011 * Fri Jun 25 1999 Bill Nottingham <notting@redhat.com>
3012 - don't make module-info, System.map links
3013 - handle utmpx/wtmpx
3014 - fix lots of bugs in 4.21 release :)
3015
3016 * Thu Jun 17 1999 Bill Nottingham <notting@redhat.com>
3017 - set clock as soon as possible
3018 - use INITLOG_ARGS everywhere
3019 - other random fixes in networking
3020
3021 * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
3022 - oops, don't create /var/run/utmp and then remove it.
3023 - stomp RAID bugs flat. Sort of.
3024
3025 * Mon May 24 1999 Bill Nottingham <notting@redhat.com>
3026 - clean out /var better
3027 - let everyone read /var/run/ppp*.dev
3028 - fix network startup so it doesn't depend on /usr
3029
3030 * Tue May 11 1999 Bill Nottingham <notting@redhat.com>
3031 - various fixes to rc.sysinit
3032 - fix raid startup
3033 - allow for multi-processor /etc/issues
3034
3035 * Sun Apr 18 1999 Matt Wilson <msw@redhat.com>
3036 - fixed typo - "Determing" to "Determining"
3037
3038 * Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
3039 - updated inputrc so that home/end/del work on console, not just X
3040
3041 * Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
3042 - fix more logic in initlog
3043 - fix for kernel versions in ifup-aliases
3044 - log to /var/log/boot.log
3045
3046 * Wed Apr 07 1999 Bill Nottingham <notting@redhat.com>
3047 - fix daemon() function so you can specify pid to look for
3048
3049 * Wed Apr 07 1999 Erik Troan <ewt@redhat.com>
3050 - changed utmp,wtmp to be group writeable and owned by group utmp
3051
3052 * Tue Apr 06 1999 Bill Nottingham <notting@redhat.com>
3053 - fix loading of consolefonts/keymaps
3054 - three changelogs. three developers. one day. Woohoo!
3055
3056 * Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com>
3057 - fixed ifup-ipx mix-up over . and _
3058
3059 * Tue Apr 06 1999 Erik Troan <ewt@redhat.com>
3060 - run /sbin/ifup-local after bringing up an interface (if that file exists)
3061
3062 * Mon Apr 5 1999 Bill Nottingham <notting@redhat.com>
3063 - load keymaps & console font early
3064 - fixes for channel bonding, strange messages with non-boot network interfaces
3065
3066 * Sat Mar 27 1999 Cristian Gafton <gafton@redhat.com>
3067 - added sysvinitfiles as a documenattaion file
3068
3069 * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
3070 - nfsfs -> netfs
3071
3072 * Mon Mar 22 1999 Bill Nottingham <notting@redhat.com>
3073 - don't source /etc/sysconfig/init if $BOOTUP is already set
3074
3075 * Fri Mar 19 1999 Bill Nottingham <notting@redhat.com>
3076 - don't run linuxconf if /usr isn't mounted
3077 - set macaddr before bootp
3078 - zero in the /var/run/utmpx file (gafton)
3079 - don't set hostname on ppp/slip (kills X)
3080
3081 * Wed Mar 17 1999 Bill Nottingham <notting@redhat.com>
3082 - exit ifup if pump fails
3083 - fix stupid errors in reading commands from subprocess
3084
3085 * Tue Mar 16 1999 Bill Nottingham <notting@redhat.com>
3086 - fix ROFS logging
3087 - make fsck produce more happy output
3088 - fix killproc logic
3089
3090 * Mon Mar 15 1999 Bill Nottingham <notting@redhat.com>
3091 - doc updates
3092 - support for SYSFONTACM, other console-tools stuff
3093 - add net route for interface if it isn't there.
3094 - fix for a bash/bash2 issue
3095
3096 * Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
3097 - pam_console lockfile cleanup added to rc.sysinit
3098
3099 * Sun Mar 14 1999 Bill Nottingham <notting@redhat.com>
3100 - fixes in functions for 'action'
3101 - fixes for pump
3102
3103 * Wed Mar 10 1999 Bill Nottingham <notting@redhat.com>
3104 - Mmm. Must always remove debugging code. before release. *thwap*
3105 - pump support
3106 - mount -a after mount -a -t nfs
3107
3108 * Thu Feb 25 1999 Bill Nottingham <notting@redhat.com>
3109 - put preferred support back in
3110
3111 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
3112 - fix single-user mode (source functions, close if)
3113
3114 * Wed Feb 10 1999 Bill Nottingham <notting@redhat.com>
3115 - turn off xdm in runlevel 5 (now a separate service)
3116
3117 * Thu Feb 4 1999 Bill Nottingham <notting@redhat.com>
3118 - bugfixes (ifup-ppp, kill -TERM, force fsck, hwclock --adjust, setsysfont)
3119 - add initlog support. Now everything is logged (and bootup looks different)
3120
3121 * Thu Nov 12 1998 Preston Brown <pbrown@redhat.com>
3122 - halt now passed the '-i' flag so that network interfaces disabled
3123
3124 * Tue Nov 10 1998 Michael K. Johnson <johnsonm@redhat.com>
3125 - handle new linuxconf output for ipaliases
3126
3127 * Mon Oct 15 1998 Erik Troan <ewt@redhat.com>
3128 - fixed raid start stuff
3129 - added raidstop to halt
3130
3131 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
3132 - handle LC_ALL
3133
3134 * Mon Oct 12 1998 Preston Brown <pbrown@redhat.com>
3135 - adjusted setsysfont to always run setfont, even if only w/default font
3136
3137 * Tue Oct 06 1998 Cristian Gafton <gafton@redhat.com>
3138 - rc.sysvinit should be working with all kernel versions now
3139 - requires e2fsprogs (for fsck)
3140 - set INPUTRC and LESSCHARSET on linux-lat
3141
3142 * Wed Sep 16 1998 Jeff Johnson <jbj@redhat.com>
3143 - /etc/rc.d/rc: don't run /etc/rc.d/rcN.d/[KS]??foo.{rpmsave,rpmorig} scripts.
3144 - /etc/rc.d/rc.sysinit: raid startup (Nigel.Metheringham@theplanet.net).
3145 - /sbin/setsysfont: permit unicode fonts.
3146
3147 * Mon Aug 17 1998 Erik Troan <ewt@redhat.com>
3148 - don't add 'Red Hat Linux' to /etc/issue; use /etc/redhat-release as is
3149
3150 * Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com>
3151 - paranoia improvements to .rhkmvtag
3152 - if psacct with /sbin/accton, than turn off accounting
3153
3154 * Tue Jul 7 1998 Jeff Johnson <jbj@redhat.com>
3155 - start/stop run levels changed.
3156 - ipx_configure/ipx_internal_net moved to /sbin.
3157
3158 * Wed Jul 01 1998 Erik Troan <ewt@redhat.com>
3159 - usernetctl didn't understand "" around USERCTL attribute
3160
3161 * Wed Jul 1 1998 Jeff Johnson <jbj@redhat.com>
3162 - Use /proc/version to find preferred modules.
3163 - Numerous buglets fixed.
3164
3165 * Sun Jun 07 1998 Erik Troan <ewt@redhat.com>
3166 - rc.sysinit looks for bootfile= as well as BOOT_IMAGE to set
3167 /lib/modules/preferred symlink
3168
3169 * Mon Jun 01 1998 Erik Troan <ewt@redhat.com>
3170 - ipcalc should *never* have been setgid anything
3171 - depmod isn't run properly for non-serial numbered kernels
3172
3173 * Wed May 06 1998 Donnie Barnes <djb@redhat.com>
3174 - added system font and language setting
3175
3176 * Mon May 04 1998 Michael K. Johnson <johnsonm@redhat.com>
3177 - Added missing files to packagelist.
3178
3179 * Sat May 02 1998 Michael K. Johnson <johnsonm@redhat.com>
3180 - Added lots of linuxconf support. Should still work on systems that
3181 do not have linuxconf installed, but linuxconf gives enhanced support.
3182 - In concert with linuxconf, added IPX support. Updated docs to reflect it.
3183
3184 * Fri May 01 1998 Erik Troan <ewt@redhat.com>
3185 - rc.sysinit uses preferred directory
3186
3187 * Sun Apr 05 1998 Erik Troan <ewt@redhat.com>
3188 - updated rc.sysinit to deal with kernel versions with release numbers
3189
3190 * Sun Mar 22 1998 Erik Troan <ewt@redhat.com>
3191 - use ipcalc to calculate the netmask if one isn't specified
3192
3193 * Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
3194 - added and made use of ipcalc
3195
3196 * Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
3197 - removed unnecessary dhcp log from /tmp
3198
3199 * Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
3200 - if bootpc fails, take down the device
3201
3202 * Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
3203 - added check for mktemp failure
3204
3205 * Thu Feb 05 1998 Erik Troan <ewt@redhat.com>
3206 - fixed support for user manageable cloned devices
3207
3208 * Mon Jan 12 1998 Michael K. Johnson <johnsonm@redhat.com>
3209 - /sbin/ isn't always in $PATH, so call /sbin/route in ifup-routes
3210
3211 * Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
3212 - touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys
3213 - the logic for when /var/lock/subsys/kerneld is touched was backwards
3214
3215 * Tue Dec 30 1997 Erik Troan <ewt@redhat.com>
3216 - tried to get /proc stuff right one more time (uses -t nonfs,proc now)
3217 - added support for /fsckoptions
3218 - changed 'yse' to 'yes' in KERNELD= line
3219
3220 * Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
3221 - set domainname to "" if none is specified in /etc/sysconfig/network
3222 - fix /proc mounting to get it in /etc/mtab
3223
3224 * Mon Dec 08 1997 Michael K. Johnson <johnsonm@redhat.com>
3225 - fixed inheritance for clone devices
3226
3227 * Fri Nov 07 1997 Erik Troan <ewt@redhat.com>
3228 - added sound support to rc.sysinit
3229
3230 * Fri Nov 07 1997 Michael K. Johnson <johnsonm@redhat.com>
3231 - Added missing "then" clause
3232
3233 * Thu Nov 06 1997 Michael K. Johnson <johnsonm@redhat.com>
3234 - Fixed DEBUG option in ifup-ppp
3235 - Fixed PPP persistance
3236 - Only change IP forwarding if necessary
3237
3238 * Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
3239 - removed the skeleton init script
3240 - added the ability to 'nice' daemons
3241
3242 * Tue Oct 28 1997 Erik Troan <ewt@redhat.com>
3243 - touch /var/lock/subsys/kerneld if it's running, and after mounting /var
3244 - applied dhcp fix
3245
3246 * Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
3247 - added status|restart to init scripts
3248
3249 * Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
3250 - touch random seed file before chmod'ing it.
3251
3252 * Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
3253 - run domainname if NISDOMAIN is set
3254
3255 * Wed Oct 15 1997 Michael K. Johnson <johnsonm@redhat.com>
3256 - Make the random seed file mode 600.
3257
3258 * Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
3259 - bring down ppp devices if ifdown-ppp is called while ifup-ppp is sleeping.
3260
3261 * Mon Oct 13 1997 Erik Troan <ewt@redhat.com>
3262 - moved to new chkconfig conventions
3263
3264 * Sat Oct 11 1997 Erik Troan <ewt@redhat.com>
3265 - fixed rc.sysinit for hwclock compatibility
3266
3267 * Thu Oct 09 1997 Erik Troan <ewt@redhat.com>
3268 - run 'ulimit -c 0' before running scripts in daemon function
3269
3270 * Wed Oct 08 1997 Donnie Barnes <djb@redhat.com>
3271 - added chkconfig support
3272 - made all rc*.d symlinks have missingok flag
3273
3274 * Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
3275 - fixed network-scripts to allow full pathnames as config files
3276 - removed some old 3.0.3 pcmcia device handling
3277
3278 * Wed Oct 01 1997 Michael K. Johnson <johnsonm@redhat.com>
3279 - /var/run/netreport needs to be group-writable now that /sbin/netreport
3280 is setguid instead of setuid.
3281
3282 * Tue Sep 30 1997 Michael K. Johnson <johnsonm@redhat.com>
3283 - Added network-functions to spec file.
3284 - Added report functionality to usernetctl.
3285 - Fixed bugs I introduced into usernetctl while adding clone device support.
3286 - Clean up entire RPM_BUILD_ROOT directory in %%clean.
3287
3288 * Mon Sep 29 1997 Michael K. Johnson <johnsonm@redhat.com>
3289 - Clone device support in network scripts, rc scripts, and usernetctl.
3290 - Disassociate from controlling tty in PPP and SLIP startup scripts,
3291 since they act as daemons.
3292 - Spec file now provides start/stop symlinks, since they don't fit in
3293 the CVS archive.
3294
3295 * Tue Sep 23 1997 Donnie Barnes <djb@redhat.com>
3296 - added mktemp support to ifup
3297
3298 * Thu Sep 18 1997 Donnie Barnes <djb@redhat.com>
3299 - fixed some init.d/functions bugs for stopping httpd
3300
3301 * Tue Sep 16 1997 Donnie Barnes <djb@redhat.com>
3302 - reworked status() to adjust for processes that change their argv[0] in
3303 the process table. The process must still have it's "name" in the argv[0]
3304 string (ala sendmail: blah blah).
3305
3306 * Mon Sep 15 1997 Erik Troan <ewt@redhat.com>
3307 - fixed bug in FORWARD_IPV4 support
3308
3309 * Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
3310 - added support for FORWARD_IPV4 variable
3311
3312 * Thu Sep 11 1997 Donald Barnes <djb@redhat.com>
3313 - added status function to functions along with better killproc
3314 handling.
3315 - added /sbin/usleep binary (written by me) and man page
3316 - changed BuildRoot to /var/tmp instead of /tmp
3317
3318 * Tue Jun 10 1997 Michael K. Johnson <johnsonm@redhat.com>
3319 - /sbin/netreport sgid rather than suid.
3320 - /var/run/netreport writable by group root.
3321
3322 - /etc/ppp/ip-{up|down} no longer exec their local versions, so
3323 now ifup-post and ifdown-post will be called even if ip-up.local
3324 and ip-down.local exist.
3325
3326 * Tue Jun 03 1997 Michael K. Johnson <johnsonm@redhat.com>
3327 - Added missing -f to [ invocation in ksyms check.
3328
3329 * Fri May 23 1997 Michael K. Johnson <johnsonm@redhat.com>
3330 - Support for net event notification:
3331 Call /sbin/netreport to request that SIGIO be sent to you whenever
3332 a network interface changes status (won't work for brining up SLIP
3333 devices).
3334 Call /sbin/netreport -r to remove the notification request.
3335 - Added ifdown-post, and made all the ifdown scrips call it, and
3336 added /etc/ppp/ip-down script that calls /etc/ppp/ip-down.local
3337 if it exists, then calls ifdown-post.
3338 - Moved ifup and ifdown to /sbin
3339
3340 * Tue Apr 15 1997 Michael K. Johnson <johnsonm@redhat.com>
3341 - usernetctl put back in ifdown
3342 - support for slaved interfaces
3343
3344 * Wed Apr 02 1997 Erik Troan <ewt@redhat.com>
3345 - Created ifup-post from old ifup
3346 - PPP, PLIP, and generic ifup use ifup-post
3347
3348 * Fri Mar 28 1997 Erik Troan <ewt@redhat.com>
3349 - Added DHCP support
3350 - Set hostname via reverse name lookup after configuring a networking
3351 device if the current hostname is (none) or localhost
3352
3353 * Tue Mar 18 1997 Erik Troan <ewt@redhat.com>
3354 - Got rid of xargs dependency in halt script
3355 - Don't mount /proc twice (unmount it in between)
3356 - sulogin and filesystem unmounting only happened for a corrupt root
3357 filesystem -- it now happens when other filesystems are corrupt as well
3358
3359 * Tue Mar 04 1997 Michael K. Johnson <johnsonm@redhat.com>
3360 - PPP fixes and additions
3361
3362 * Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
3363 - Mount proc before trying to start kerneld so we can test for /proc/ksyms
3364 properly.
3365
3366 * Wed Feb 26 1997 Michael K. Johnson <johnsonm@redhat.com>
3367 - Added MTU for PPP.
3368 - Put PPPOPTIONS at the end of the options string instead of at the
3369 beginning so that they override other options. Gives users more rope...
3370 - Don't do module-based stuff on non-module systems. Ignore errors if
3371 st module isn't there and we try to load it.
3372
3373 * Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com>
3374 - Changed ifup-ppp and ifdown-ppp not to use doexec, because the argv[0]
3375 provided by doexec goes away when pppd gets swapped out.
3376 - ifup-ppp now sets remotename to the logical name of the device.
3377 This will BREAK current PAP setups on netcfg-managed interfaces,
3378 but we needed to do this to add a reasonable interface-specific
3379 PAP editor to netcfg.
3380
3381 * Fri Feb 07 1997 Erik Troan <ewt@redhat.com>
3382 - Added usernetctl wrapper for user mode ifup and ifdown's and man page
3383 - Rewrote ppp and slip kill and retry code
3384 - Added doexec and man page

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed