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

Annotation of /rpms/initscripts/sme9/initscripts.spec

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


Revision 1.16 - (hide annotations) (download)
Sun Dec 23 04:47:41 2018 UTC (5 years, 6 months ago) by jpp
Branch: MAIN
CVS Tags: initscripts-9_03_61-1_el6_centos
Changes since 1.15: +16 -18 lines
import initscript from centOS

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

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