/[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.1.2.3 - (hide annotations) (download)
Sat Dec 14 23:48:35 2013 UTC (10 years, 6 months ago) by wellsi
Branch: upstream
CVS Tags: initscripts-9_03_40-2_el6
Changes since 1.1.2.2: +32 -11 lines
Upstream import

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

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