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

Annotation of /rpms/initscripts/sme8/initscripts.spec

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


Revision 1.17 - (hide annotations) (download)
Sat Sep 17 21:24:24 2011 UTC (12 years, 10 months ago) by slords
Branch: MAIN
CVS Tags: initscripts-8_45_38-2_el5_centos
Branch point for: redhat-upstream
Changes since 1.16: +69 -19 lines
Upstream import

1 slords 1.1 Summary: The inittab file and the /etc/init.d scripts.
2     Name: initscripts
3 slords 1.17 Version: 8.45.38
4 slords 1.8 # ppp-watch is GPLv2+, everything else is GPLv2
5     License: GPLv2 and GPLv2+
6 slords 1.1 Group: System Environment/Base
7 slords 1.17 Release: 2.el5.centos
8 slords 1.1 Source: initscripts-%{version}.tar.bz2
9 slords 1.17 # git source repository
10     Patch0: 40e9f12f.patch
11 slords 1.13 Patch10: initscripts-centos-branding.patch
12 slords 1.17
13 slords 1.8 URL: http://git.fedorahosted.org/git/initscripts.git
14 slords 1.1 BuildRoot: /%{_tmppath}/%{name}-%{version}-%{release}-root
15     Requires: mingetty, /bin/awk, /bin/sed, mktemp, e2fsprogs >= 1.15
16     Requires: /sbin/sysctl, syslog
17     Requires: /sbin/fuser, /bin/grep
18     Requires: module-init-tools
19     Requires: util-linux >= 2.10s-11, mount >= 2.11l
20     Requires: bash >= 3.0, SysVinit >= 2.85-38
21     Requires: /sbin/ip, /sbin/arping, net-tools
22     Requires: /etc/redhat-release, dev
23     Requires: ethtool >= 1.8-2, /sbin/runuser
24     Requires: udev >= 078-1
25     Conflicts: mkinitrd < 4.0, kernel < 2.6.12
26     Conflicts: ypbind < 1.6-12, psacct < 6.3.2-12, kbd < 1.06-19, lokkit < 0.50-14
27     Conflicts: dhclient < 3.0.3-7
28     Conflicts: tcsh < 6.13-5
29     Conflicts: xorg-x11, glib2 < 2.11.1-2
30     Obsoletes: rhsound sapinit
31     Obsoletes: hotplug
32     Prereq: /sbin/chkconfig, /usr/sbin/groupadd, /bin/sed, coreutils
33     BuildRequires: glib2-devel popt gettext pkgconfig
34    
35     %description
36     The initscripts package contains the basic system scripts used to boot
37 slords 1.2 your CentOS system, change runlevels, and shut the system down
38 slords 1.1 cleanly. Initscripts also contains the scripts that activate and
39     deactivate most network interfaces.
40    
41     %prep
42     %setup -q
43 slords 1.17 %patch0 -p1
44 slords 1.13 %patch10 -p1
45 slords 1.1
46     %build
47     make
48    
49     %install
50     rm -rf $RPM_BUILD_ROOT
51     make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install
52    
53     %find_lang %{name}
54    
55     %ifnarch s390 s390x
56     rm -f \
57     $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-ctc \
58     $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-iucv \
59 slords 1.10 $RPM_BUILD_ROOT/etc/udev/rules.d/54-cu3088-fix.rules \
60 slords 1.1 $RPM_BUILD_ROOT/etc/udev/rules.d/55-ccw.rules \
61     $RPM_BUILD_ROOT/lib/udev/ccw_init
62     %else
63     rm -f \
64     $RPM_BUILD_ROOT/etc/rc.d/rc.sysinit.s390init \
65     $RPM_BUILD_ROOT/etc/sysconfig/init.s390
66     %endif
67    
68     %pre
69     /usr/sbin/groupadd -g 22 -r -f utmp
70    
71     %post
72     touch /var/log/wtmp /var/run/utmp /var/log/btmp
73     chown root:utmp /var/log/wtmp /var/run/utmp /var/log/btmp
74     chmod 664 /var/log/wtmp /var/run/utmp
75     chmod 600 /var/log/btmp
76    
77     /sbin/chkconfig --add netfs
78     /sbin/chkconfig --add network
79 slords 1.2 /sbin/chkconfig --add netconsole
80 slords 1.10 /sbin/chkconfig --add rawdevices
81    
82 slords 1.1
83     %preun
84     if [ $1 = 0 ]; then
85     /sbin/chkconfig --del netfs
86     /sbin/chkconfig --del network
87 slords 1.2 /sbin/chkconfig --del netconsole
88 slords 1.10 /sbin/chkconfig --del rawdevices
89 slords 1.1 fi
90    
91     %triggerun -- initscripts < 7.62
92     /sbin/chkconfig --del random
93     exit 0
94    
95     %clean
96     rm -rf $RPM_BUILD_ROOT
97    
98     %files -f %{name}.lang
99     %defattr(-,root,root)
100     %dir /etc/sysconfig/network-scripts
101     %config(noreplace) %verify(not md5 mtime size) /etc/adjtime
102     %config(noreplace) /etc/sysconfig/init
103 slords 1.2 %config(noreplace) /etc/sysconfig/netconsole
104 slords 1.1 %config(noreplace) /etc/sysconfig/readonly-root
105     /etc/sysconfig/network-scripts/ifdown
106     /sbin/ifdown
107     %config /etc/sysconfig/network-scripts/ifdown-post
108     /etc/sysconfig/network-scripts/ifup
109     /sbin/ifup
110     %dir /etc/sysconfig/console
111     %dir /etc/sysconfig/modules
112     %dir /etc/sysconfig/networking
113     %dir /etc/sysconfig/networking/devices
114     %dir /etc/sysconfig/networking/profiles
115     %dir /etc/sysconfig/networking/profiles/default
116 slords 1.10 %config(noreplace) /etc/sysconfig/rawdevices
117 slords 1.1 %config /etc/sysconfig/network-scripts/network-functions
118     %config /etc/sysconfig/network-scripts/network-functions-ipv6
119     %config /etc/sysconfig/network-scripts/init.ipv6-global
120     %config /etc/sysconfig/network-scripts/ifcfg-lo
121     %config /etc/sysconfig/network-scripts/ifup-ipx
122     %config /etc/sysconfig/network-scripts/ifup-post
123     %config /etc/sysconfig/network-scripts/ifdown-ppp
124     %config /etc/sysconfig/network-scripts/ifdown-sl
125     %config /etc/sysconfig/network-scripts/ifup-ppp
126     %config /etc/sysconfig/network-scripts/ifup-sl
127     %config /etc/sysconfig/network-scripts/ifup-routes
128     %config /etc/sysconfig/network-scripts/ifdown-routes
129     %config /etc/sysconfig/network-scripts/ifup-plip
130     %config /etc/sysconfig/network-scripts/ifup-plusb
131     %config /etc/sysconfig/network-scripts/ifup-bnep
132     %config /etc/sysconfig/network-scripts/ifdown-bnep
133     %config /etc/sysconfig/network-scripts/ifup-eth
134     %config /etc/sysconfig/network-scripts/ifdown-eth
135     %config /etc/sysconfig/network-scripts/ifup-ipv6
136     %config /etc/sysconfig/network-scripts/ifdown-ipv6
137     %config /etc/sysconfig/network-scripts/ifup-ipsec
138     %config /etc/sysconfig/network-scripts/ifdown-ipsec
139     %config /etc/sysconfig/network-scripts/ifup-sit
140     %config /etc/sysconfig/network-scripts/ifdown-sit
141     %config /etc/sysconfig/network-scripts/ifup-tunnel
142     %config /etc/sysconfig/network-scripts/ifdown-tunnel
143     %config /etc/sysconfig/network-scripts/ifup-aliases
144     %config /etc/sysconfig/network-scripts/ifup-ippp
145     %config /etc/sysconfig/network-scripts/ifdown-ippp
146     %config /etc/sysconfig/network-scripts/ifup-wireless
147     /etc/sysconfig/network-scripts/ifup-isdn
148     /etc/sysconfig/network-scripts/ifdown-isdn
149     /etc/sysconfig/network-scripts/net.hotplug
150     %ifarch s390 s390x
151     %config /etc/sysconfig/network-scripts/ifup-ctc
152     %config /etc/sysconfig/network-scripts/ifup-iucv
153     %endif
154     /etc/rwtab
155     %dir /etc/rwtab.d
156     /etc/udev/rules.d/*
157     %config /etc/X11/prefdm
158     %config(noreplace) /etc/inittab
159     %dir /etc/rc.d
160     %dir /etc/rc.d/rc[0-9].d
161     %config(missingok) /etc/rc.d/rc[0-9].d/*
162     /etc/rc[0-9].d
163     /etc/rc
164     %dir /etc/rc.d/init.d
165     /etc/rc.local
166     /etc/rc.sysinit
167     %config /etc/rc.d/init.d/*
168     %config /etc/rc.d/rc
169     %config(noreplace) /etc/rc.d/rc.local
170     %config /etc/rc.d/rc.sysinit
171     %config(noreplace) /etc/sysctl.conf
172     %config /etc/profile.d/lang.sh
173     %config /etc/profile.d/lang.csh
174     /usr/sbin/sys-unconfig
175     /sbin/setsysfont
176     /bin/doexec
177     /bin/ipcalc
178     /bin/usleep
179     %attr(4755,root,root) /usr/sbin/usernetctl
180     /sbin/consoletype
181     /sbin/fstab-decode
182     /sbin/genhostid
183     /sbin/getkey
184     %attr(2755,root,root) /sbin/netreport
185     /sbin/initlog
186     /lib/udev/rename_device
187     %ifarch s390 s390x
188     /lib/udev/ccw_init
189     %endif
190     /sbin/service
191     /sbin/ppp-watch
192     %{_mandir}/man*/*
193     %dir %attr(775,root,root) /var/run/netreport
194     %dir /etc/ppp
195     %dir /etc/ppp/peers
196     %config /etc/ppp/ip-up
197     %config /etc/ppp/ip-down
198     %config /etc/ppp/ip-up.ipv6to4
199     %config /etc/ppp/ip-down.ipv6to4
200     %config /etc/ppp/ipv6-up
201     %config /etc/ppp/ipv6-down
202     %config /etc/initlog.conf
203     %doc sysconfig.txt sysvinitfiles ChangeLog static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6
204     /var/lib/stateless
205     %ghost %attr(0600,root,utmp) /var/log/btmp
206     %ghost %attr(0664,root,utmp) /var/log/wtmp
207     %ghost %attr(0664,root,utmp) /var/run/utmp
208    
209     %changelog
210 slords 1.17 * Fri Aug 19 2011 Karanbir Singh <kbsingh@centos.org> 8.45.38-2.el5.centos
211     - Roll in CentOS Branding
212    
213     * Fri Jun 24 2011 Bill Nottingham <notting@redhat.com> 8.45.38-2
214     - don't use existing LANG when in startx/xinit (#713988)
215 snetram 1.15
216 slords 1.17 * Tue Jun 07 2011 Petr Lautrbach <plautrba@redhat.com> 8.45.38-1
217     - revert patch from #705236
218 slords 1.14
219 slords 1.17 * Tue Jun 07 2011 Petr Lautrbach <plautrba@redhat.com> 8.45.37-1
220     - add /etc/sysctl.d/ support
221     Resolves: rhbz#624385
222    
223     * Wed Jun 01 2011 Harald Hoyer <harald@redhat.com> 8.45.36-1
224     - add net_log
225     Resolves: rhbz#507515
226     - do not umount mount points with nfs in the path
227     Resolves: rhbz#703203
228     - remove /var/run/subsys/rhsm on startup
229     Resolves: rhbz#705236
230    
231     * Wed Apr 27 2011 Harald Hoyer <harald@redhat.com> 8.45.35-2
232     - fixed support "#" in interface names
233    
234     * Tue Apr 19 2011 Harald Hoyer <harald@redhat.com> 8.45.35-1
235     - fix VLAN configs with non-numeric interface names
236     Resolves: rhbz#462095
237     - do not ignore IPv6 aliases
238     Resolves: rhbz#612877
239     - support vlan tag 0
240     Resolves: rhbz#624704
241     - clarify comment of checkpid()
242     Resolves: rhbz#637176
243     - specify DEVICETYPE for InfiniBand
244     Resolves: rhbz#648524
245     - fix grep in lang.csh
246     Resolves: rhbz#649995
247     - support "#" in interface names
248     Resolves: rhbz#664091
249     - fixed sysctl calls fail with VLANs
250     Resolves: rhbz#665601
251     - fixed loop for switched MACs
252     Resolves: rhbz#669728
253     - fixed dmraid output parsing
254     Resolves: rhbz#671386
255     - fixed MASTER in double quotes
256     Resolves: rhbz#674221
257     - don't do force/lazy umount for the first nfs umount
258     Resolves: rhbz#676851 rhbz#687890
259     - fixed DHCPv6 if no IPv4 address configured
260     Resolves: rhbz#684909
261     - disable link checking when PERSISTENT_DHCLIENT is set
262     Resolves: rhbz#685038
263     - no more noisy output for iscsid check during shutdown or reboot
264     Resolves: rhbz#687849
265     - clarified mount option in netfs
266     Resolves: rhbz#689898
267    
268     * Tue Apr 12 2011 Harald Hoyer <harald@redhat.com> 8.45.34-1
269     - if $LANG is set, don't override it
270     Resolves: rhbz#692893
271     - fix arp_ip_target for ifup/ifdown
272     Resolves: rhbz#604669
273     - add udev rules for OSX Devices (1731/2)
274     Resolves: rhbz#653621
275 filippocarletti 1.11
276 slords 1.13 * Wed Oct 13 2010 Harald Hoyer <harald@redhat.com> 8.45.33-1
277     - don't turn of net on shutdown if iscsi is running
278     Resolves: rhbz#583218
279    
280     * Mon Sep 13 2010 Harald Hoyer <harald@redhat.com> 8.45.32-1
281     - readded missing 54-cu3088-fix.rules
282     Related: rhbz#475721
283    
284     * Mon Sep 13 2010 Harald Hoyer <harald@redhat.com> 8.45.31-1
285     - do not killall racoon with the full path
286     Resolves: rhbz#567295
287     - fixed the interactive startup keys in translation
288     Resolves: rhbz#566579
289     - do not clear the environment for daemon()
290     Resolves: rhbz#564093
291     - call unicode_start with $UNIMAP instead of $SYSFONTACM
292     Resolves: rhbz#557089
293     - fixed the network interface name grep in checks
294     Resolves: rhbz#538863
295     - make /var/lib/xend a bind mount for read-only root systems
296     Resolves: rhbz#526046
297     - do not try to activate individual dmraid subsets
298     Resolves: rhbz#524356
299     - create /var/run/utmp* /var/log/wtmp* with the correct selinux context
300     Resolves: rhbz#519748
301     - load the bonding driver, if bonding options are present in the ifcfg file
302     Resolves: rhbz#516569
303     - run quotacheck after the local filesystems have been mounted
304     Resolves: rhbz#499207
305     - add DHCP_HOSTNAME documentation to sysconfig.txt
306     Resolves: rhbz#498052
307     - remove /var/run/dovecot/* also (not only /var/run/dovecot/*/*)
308     Resolves: rhbz#492994
309 slords 1.6
310 slords 1.10 * Sat Jul 13 2009 Harald Hoyer <harald@redhat.com> 8.45.30-2
311     - fix raw path in initscript (#472891)
312     - remove deprecation comments (#472891)
313 slords 1.13 - applied missing ipcalc patch for IPv6 address validation (#464268)
314     - Resolves: rhbz#472891 rhbz#464268
315 slords 1.10
316     * Tue Jul 07 2009 Phil Knirsch <pknirsch@redhat.com> 8.45.29-3
317     - Final fixes for IP address validation (#464268)
318     - Added required 54-cu3088-fix.rules udev rules file (#475721)
319     - Resolves: #464268,#475721
320    
321     * Tue Jun 16 2009 Harald Hoyer <harald@redhat.com> 8.45.29-1
322     - cleanup /var/run/libvirt (#505600)
323     - Resolves: rhbz#505600
324    
325     * Thu May 14 2009 Harald Hoyer <harald@redhat.com> 8.45.28-1
326     - fixed "Determine reboot/halt via existing INIT_HALT environment variable. (#475006)
327     - Resolves: rhbz#475006
328    
329     * Wed May 06 2009 Harald Hoyer <harald@redhat.com> 8.45.27-1
330     - undeprecate rawdevices (#472891)
331     - Resolves: rhbz#472891
332    
333     * Mon May 04 2009 Harald Hoyer <harald@redhat.com> 8.45.26-1
334     - add md activation before lvm/device-mapper in netfs (#480627)
335     - fixed SUBCHANNEL grep for s390
336     - Move the bridge member handling later in the ifdown sequence (#463325, Sean E. Millichamp <sean@bruenor.org>)
337     - Allow changing of VLAN type even if the module is already loaded. (#495053, <pietro@bertera.it>)
338     - add gfs2 to rc.sysinit mount (#494963)
339     - support ETHTOOL_OPTS on bridge devices (#493255, <bbaetz@acm.org>)
340     - Add vlan support for s390 HSI interfaces. (#490584)
341     - Don't re-init an existing device, it causes errors. (#484411, <jpayne@redhat.com>)
342     - Remove arp_ip_target on ifdown for bonding devices. (#483711)
343     - Don't unmount the nfsd filesystem when unmounting nfs client mounts. (#481794, <sprabhu@redhat.com>)
344     - Bring up ipsec interfaces last. (#481733)
345     - Break deadlock by explicitly handling alias for CTC and IUCV (#475721)
346     - Determine reboot/halt via existing INIT_HALT environment variable. (#475006)
347     - Add some docs on BONDING_OPTS. (#472480)
348     - Don't say that we're shutting off crypto if we aren't actually doing it. (#471944)
349     - remove empty bridges (#463325)
350     - Add a address check capability for IPv4 and IPv6 addresses. (#464268)
351     - fail if HWADDR specified in ifcfg is not present in the system (#487718)
352     - fix ifdown of vlan iface which is a bridge member (#481557)
353     - add proper return codes for /etc/init.d/network (#481002)
354     - fixed brigde setup (bug #463014)
355     - Add an option for consoletype to always return 0. (#453798, <notting@redhat.com>)
356     - Use the pidfile before running pidof in status(). (#440658)
357     - Allow passing of arguments to dhcp6c (#437949, <pekkas@netcore.fi>)
358     - Remove /.suspended as well on boot (#270861)
359     - Allow use of either ESP only or AH only (#251494, <stijn.tintel@x-tend.be>)
360     - Resolves: rhbz#251494,rhbz#270861,rhbz#437949,rhbz#440658,rhbz#453798,
361     rhbz#463014,rhbz#463325,rhbz#464268,rhbz#471944,rhbz#472480,
362     rhbz#475006,rhbz#475721,rhbz#475770,rhbz#480627,rhbz#481002,
363     rhbz#481557,rhbz#481733,rhbz#481794,rhbz#483711,rhbz#484411,
364     rhbz#487718,rhbz#490584,rhbz#493255,rhbz#494963,rhbz#495053
365    
366 slords 1.8 * Wed Nov 12 2008 Harald Hoyer <harald@redhat.com> 8.45.25-1
367     - fixed SUBCHANNEL grep statement (bug #459044)
368     - Resolves: rhbz#459044
369    
370     * Wed Nov 12 2008 Harald Hoyer <harald@redhat.com> 8.45.24-1
371     - fixed SUBCHANNEL grep statement (bug #459044)
372     - Resolves: rhbz#459044
373    
374     * Wed Nov 12 2008 Harald Hoyer <harald@redhat.com> 8.45.23-1
375     - fixed SUBCHANNEL grep statement (bug #459044)
376     - Resolves: rhbz#459044
377    
378     * Mon Nov 10 2008 Harald Hoyer <harald@redhat.com> 8.45.22-1
379     - refined SUBCHANNEL grep statement (bug #459044)
380     - blkid has a -l option to pick a single device. Use it. (#470027)
381     - don't mkswap on halt (#469823)
382     - fixed bonding arp_ip_target handling (#467954) (Darcy Sherwood)
383     - Resolves: rhbz#459044, rhbz#470027, rhbz#469823, rhbz#467954
384    
385     * Tue Oct 14 2008 Harald Hoyer <harald@redhat.com> 8.45.21-1
386     - mount encrypted logical volumes during boot (#466115, Bill Nottingham)
387     - Resolves: #466115
388    
389     * Tue Sep 16 2008 Harald Hoyer <harald@redhat.com> 8.45.20-1
390     - changes to init scripts to better support stateless (#433702, <ahecox@redhat.com>)
391     - call logger with full path (#447928, Mihai Vintila)
392     - add a udevsettle before mounting _netdev devices (#452866, <bmr@redhat.com>)
393     - reduce device initialization overhead for ccw devices (#437110, Glen Johnson)
394     - Resolves: rhbz#433702 rhbz#452866 rhbz#447928 rhbz#437110
395 slords 1.7
396 slords 1.5 * Mon Mar 3 2008 Bill Nottingham <notting@redhat.com> 8.45.19.EL-1
397     - also skip network shutdown if there is a '_rnetdev' root device (part of #435358, <pjones@redhat.com>)
398 slords 1.3
399 slords 1.5 * Thu Feb 07 2008 Bill Nottingham <notting@redhat.com>, Harald Hoyer <harald@redhat.com> 8.45.18.EL-1
400     - IKE_DHGROUP is now an option for IPsec configuration files, which allows
401     to set the dh group used during PHASE 1 of IPsec SA (#251506)
402     - arp_ip_target can now be used with a comma seperated IP list in BONDING_OPTS (#288151)
403     - genhostid now generates only 32 bit hostids on 64 bit systems (#306811)
404     - the check for the need of remounting the root file system read-writable
405     is now refined (#334171)
406     - quoted SUBCHANNELS and HWADDR options in network configuration files are
407     now handled properly (#351291)
408     - support for resuming from an encrypted swap has been added (#360071)
409     - rc.sysinit now executes the proper configuration tools, if /.unconfigured
410     is present (#426372)
411     - Resolves: rhbz#251506 rhbz#288151 rhbz#306811 rhbz#334171 rhbz#351291 rhbz#360071 rhbz#426372
412 slords 1.2
413     * Tue Aug 7 2007 Bill Nottingham <notting@redhat.com> 8.45.17.EL-1
414     - fix netconsole service status (#223742)
415    
416     * Fri Jun 22 2007 Bill Nottingham <notting@redhat.com> 8.45.16.EL-1
417     - init.d/network: add support for VLAN_PLUS_VID_NO_PAD vlans (#229285)
418     - network-functions: fix logic error in install_bonding_driver (#229643)
419     - add init script for netconsole (#223742)
420     - ifup-eth: set 'primary' later for bonding devices (#236897, <agospoda@redhat.com>)
421     - init.d/halt: don't shut down the network in kexec (#223932, <mchristi@redhat.com>)
422 slords 1.1
423     * Mon Jan 15 2007 Bill Nottingham <notting@redhat.com> 8.45.14.EL-1
424     - set MACADDR, if specified, before bringing up bonding master/slaves (#218792)
425    
426     * Thu Jan 4 2007 Bill Nottingham <notting@redhat.com> 8.45.13.EL-1
427     - release bonding slaves properly (#220525)
428    
429     * Thu Dec 14 2006 Bill Nottingham <notting@redhat.com> 8.45.12.EL-1
430     - translation updates: ml, mr, zh_CN, zh_TW (#216097)
431    
432     * Fri Dec 1 2006 Bill Nottingham <notting@redhat.com> 8.45.11.EL-1
433     - translation updates: bn, fr, hi, ko, ml, te, zh_CN, zh_TW (#216097)
434    
435     * Tue Nov 28 2006 Bill Nottingham <notting@redhat.com> 8.45.10.EL-1
436     - add a step to rename any temporarily renamed devices (#208740, #204803, #214817)
437     - rc.sysinit: fix reversed dmraid test (#216490)
438     - translation updates (#216097)
439     - don't automatically reload modules on module reomvals (#211474)
440     - don't unmount network file systems (#217625)
441    
442     * Fri Nov 3 2006 Bill Nottingham <notting@redhat.com> 8.45.9.EL-1
443     - fix ppc limits (#184820)
444     - handle sinhalese as well (#212438)
445    
446     * Wed Nov 1 2006 Bill Nottingham <notting@redhat.com> 8.45.7.EL-1
447     - fix gdm in CJKI (#209579, #213196)
448     - rename_device: correctly ignore backup interface files
449     - mount tmpfs with -n (#213132)
450    
451     * Mon Oct 30 2006 Bill Nottingham <notting@redhat.com> 8.45.6.EL-1
452     - further refinement of the SUBCHANNELS support (#204803)
453    
454     * Fri Oct 27 2006 Bill Nottingham <notting@redhat.com> 8.45.5.EL-1
455     - fix handling of undisplayable locales on the console some more (#209579, #212438)
456     - use SUBCHANNEL as the primary identifier for s390 networking (#204803)
457    
458     * Thu Oct 19 2006 Bill Nottingham <notting@redhat.com> 8.45.4.EL-1
459     - don't set CJKI as the language on virtual consoles (#209579)
460     - use dmraid.static in rc.sysinit (#211297)
461     - use sysfs interface for bonding, so multiple bonds work again (#202443, <agospoda@redhat.com>)
462    
463     * Mon Oct 16 2006 Bill Nottingham <notting@redhat.com> 8.45.3.EL-1
464     - remove early-login code
465     - Handle "nodmraid" and "nompath" command line options (#209377, <pjones@redhat.com>)
466     - translation updates: da, fi, zh_CN, ja, ml, ms
467     - restorecon on moved dhclient lease file (#209853)
468     - set different limits for shmmax, etc. based on arch (#184820)
469    
470     * Fri Oct 6 2006 Bill Nottingham <notting@redhat.com> 8.45-1
471     - lang.csh/lang.sh - do *not* stty iutf8; too much chaos with SIGTTOU
472     (reverts: #186961; fixes #209469)
473     - translation updates: ms
474    
475     * Wed Oct 4 2006 Bill Nottingham <notting@redhat.com> 8.44-1
476     - separate tmpfs-usage for state from readonly-root
477     - set keymap correctly in non-utf8 locale (#167363)
478     - setsysfont: run unicode_stop if in non-unicode locale
479     - lang.csh/lang.sh: set iutf8 if appropriate (#186961)
480     - lang.csh/lang.sh: handle non-utf8 locales correctly (#200100)
481     - rc.sysinit: redirect stderr from setsysfont (#209204, indirectly)
482     - rwtab: fix iscsi file location (#208864)
483     - translation updates: el, da, as, or
484     - fix stateless updates (#206331, <law@redhat.com>)
485    
486     * Wed Sep 27 2006 Bill Nottingham <notting@redhat.com> 8.43-1
487     - move ccwgroup initialization to a udev rule (should fix #199139,
488     #199655, #169161)
489     - init.d/functions: don't write to gdmfifo
490     - remove unused-since-RHL-7 consolechars code, update docs (#206106)
491     - stateless updates (#206331, <law@redhat.com>)
492     - translation updates (el, ms, hr, sl)
493    
494     * Thu Sep 21 2006 Bill Nottingham <notting@redhat.com> 8.42-1
495     - run rc.sysinit, /etc/rc in monitor mode (part of #184340)
496     - use a better check for 'native' services (#190989, #110761, adapted
497     from <matthias@rpmforge.net>)
498    
499     * Tue Sep 19 2006 Bill Nottingham <notting@redhat.com> 8.41-1
500     - fix network ipv6 hang (#207137, others)
501     - rc.sysinit: change blkid.tab path to /etc/blkid/blkid.tab
502     - rename_device: reset DEVPATH also when renaming (#206884, <phil@fifi.org>)
503     - sysconfig.txt: clarify onboot/onparent usage
504    
505     * Fri Sep 15 2006 Bill Nottingham <notting@redhat.com> 8.40-1
506     - translation updates
507     - rename_device: use '__tmpXXXX' instead of 'devXXXX' as a temporary device
508     name to avoid any realistic namespace clashes
509     - rc.sysinit: set default affinity if specified on commandline (#203359)
510     - always pass path to '.' (#206035)
511     - run setsysfont, loadkeys always when /dev/tty{0,1} exist (#150769)
512     - allow going to a shell when system is shut down cleanly (from <dwalsh@redhat.com>)
513    
514     * Tue Sep 5 2006 Bill Nottingham <notting@redhat.com> 8.39-1
515     - translation updates
516     - Handle partitions on multipath/dmraid better (<pjones@redhat.com>)
517     - make /dev/mapper/control ourselves (<pjones@redhat.com>)
518     - init.d/network: simplify 'status' call
519     - fix actual 169.254 networks (#203591)
520     - rc.sysinit: don't run vgscan (#191879)
521     - init.d/halt: don't umount /dev/root<foo> (<oblin@mandriva.com>)
522     - rc.sysinit: catch more dmraid errors (#200683)
523     - support 'tmp' option in /etc/crypttab (#201382, <mitr@redhat.com>,
524     <lv@lekv.de>)
525     - IPv6 updates (<pb@bieringer.de>, includes a fix for #143452)
526    
527     * Tue Aug 1 2006 Bill Nottingham <notting@redhat.com> 8.38-1
528     - translation updates
529     - bring down bonding slaves on ifdown (#199706)
530     - support LINKDELAY for dhcp (#191137)
531     - netfs: run multipath on netdev devices (#180977)
532     - halt: use /proc/mounts instead of /etc/mtab (#198426, <mitr@redhat.com>)
533     - rc.sysinit: fix getkey race (#191453, <mitr@redhat.com>)
534     - spec cleanups (#188614, <kloczek@rudy.mif.pg.gda.pl>)
535     - support aliases on vlan (#193133, <mitr@redhat.com>)
536     - clean up ifcfg file handling (<mitr@redhat.com>, <michal@harddata.com>)
537     - GRE and IPIP tunnel support (#168990, <mitr@redhat.com>,
538     <razvan.vilt@linux360.ro>, <aaron.hope@unh.edu>, <sean@enertronllc.com>)
539     - rc.sysinit: don't format encrypted swap always (#127378)
540     - don't try to add routes to alias devices (#199825, #195656)
541    
542     * Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.37-1
543     - update translations
544    
545     * Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.36-1
546     - rework automatic swapon - only run if AUTOSWAP=yes, and fix errors
547     (#198695, #196179, #196208)
548     - redo single so it starts last in runlevel 1, and doesn't kill/start
549     services itself
550     - add configurable delay for killproc() (#198429, <jorton@redhat.com>)
551     - fix loop in rename_device (#199242, <markmc@redhat.com>)
552     - rc.sysinit: stateless updates (#197972, <law@redhat.com>)
553     - support for copying dhcp leases from initramfs (#198601, <markmc@redhat.com>)
554     - readonly-root: SELinux works now in the kernel, allow it
555     - init.d/network: don't bring down network if root is on a network device
556     - init.d/halt: don't use -i to halt; causes problems with iscsi
557     - add support for routing rule-$device (#132252, <mitr@redhat.com>)
558     - fix rhgb output (#192604, <tonynelson@georgeanelson.com>)
559     - fix crypttab options for LUKS (#197656, <mitr@redhat.com>)
560     - ipsec: various fixes & new features (#150682, #168972, <mitr@redhat.com>, <alex@milivojevic.org>)
561     - ipsec: add check for IKE_METHOD (#197576, <john_smyth@mail.ru>)
562     - rename_device: ignore alias devices, fix race (#186355)
563     - ifup/ifdown: don't mark as %config
564     - rwtab: some additions/cleanup
565    
566     * Mon Jun 12 2006 Bill Nottingham <notting@redhat.com> 8.35-1
567     - readonly root enhancments (modified from <law@redhat.com>, #193164)
568     - encrypted swap, non-root filesystem support (#127378, <mitr@redhat.com, <redhat@flyn.org>)
569     - clarify killproc usage (#193711, <mitr@redhat.com>)
570     - document BRIDGE= (#192576, <mitr@redhat.com>)
571     - rc.sysinit: allow for sulogin instead of automatic relabeling (<dwalsh@rehdat.com>)
572    
573     * Tue May 23 2006 Bill Nottingham <notting@redhat.com> 8.34-1
574     - link glib2 dynamically now that it's in /lib, conflict with older
575     versions
576     - handle cups specially when cleaning /var (#189168)
577     - remove ifdown-aliases (<mitr@redhat.com>)
578     - ifup-ipsec: fix key handling when only one of AH or ESP is used
579     (#166257, <mituc@iasi.rdsnet.ro>)
580     - IPv6 updates, including RFC 3041 support (<pb@bieringer.de>)
581     - routing fixes, add METRIC support for default routes (#124045, <mitr@redhat.com>)
582     - fix handling of mount points with white space (#186713, <mitr@redhat.com>)
583    
584     * Thu Apr 20 2006 Bill Nottingham <notting@redhat.com> 8.33-1
585     - support for readonly root
586     - rc.sysinit: remove call to zfcpconf.sh - that should be udev rules
587     - ifup*: add NETWORKDELAY and LINKDELAY (#176851, <mitr@redhat.com>)
588     - rc.sysinit: remove obsolete initrd code (<pjones@redhat.com>)
589    
590     * Mon Apr 10 2006 Bill Nottingham <notting@redhat.com> 8.32-1
591     - netfs: fix redirect (#187505)
592     - rc.sysinit add forcequotacheck (#168118, <mitr@redhat.com>)
593     - functions/pidof: various fixes (#182623, others <mitr@redhat.com>)
594     - add support for DHCP on bridges (#125259, <mitr@redhat.com>,
595     anders@kaseorg.com>)
596     - rc.sysinit: use pidof, not killall (#185429, <pjones@redhat.com>)
597     - ppp fixes (#129195, #163950, #92023, <mitr@redhat.com>, <avi@argo.co.il>)
598     - ifup/ifdown: unset $WINDOW (#174336, <mitr@redhat.com>)
599    
600     * Fri Mar 17 2006 Bill Nottingham <notting@redhat.com> 8.31.2-1
601     - add udev helper to rename network devices on device creation
602    
603     * Tue Mar 14 2006 Bill Nottingham <notting@redhat.com> 8.31.1-1
604     - fix context of /dev/pts (#185436)
605     - translation updates
606    
607     * Sun Mar 5 2006 Bill Nottingham <notting@redhat.com> 8.31-1
608     - fix kexec support (<jmoyer@redhat.com>)
609     - translation updates
610    
611     * Tue Feb 28 2006 Bill Nottingham <notting@redhat.com> 8.30-1
612     - hotplug: don't cause modules to be reloaded on ifdown/rmmod (#179809)
613     - fix endless loops in ifup/ifdown (#177792, #182466)
614     - fix enabling of enforcing SELinux mode after relabel (#181893)
615     - remove debugging code from ifup-bnep
616     - add /proc, /sys mounting back to rc.sysinit
617     Note: booting without an initrd is deprecated
618     - translation updates
619    
620     * Tue Feb 14 2006 Peter Jones <pjones@redhat.com> 8.29-1
621     - scrub another possible error message from dmraid output
622    
623     * Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.28-1
624     - kill nash-hotplug before starting udev (<pjones@redhat.com>)
625     - silence warnings on /dev/pts remount (<pjones@redhat.com>)
626     - more translation updates
627    
628     * Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.27-1
629     - translation updates
630     - lang.sh: revert fix for #176832, it's broken
631     - ifup-aliases fixes (<pjones@redhat.com>,<mitr@redhat.com>)
632    
633     * Tue Feb 7 2006 Bill Nottingham <notting@redhat.com> 8.26-1
634     - revert "rc.sysinit: don't mount usbfs, libusb no longer uses it" change
635     - add some ugly hacks to make sure net hotplug doesn't run after unclean
636     shutdown (#177795)
637     - don't mount /sys and /proc in rc.sysinit - the initrd already does
638     (<pjones@redhat.com>)
639     - halt: try to unmount tmpfs filesystems before swapoff (#174000,
640     <mitr@redhat.com>)
641    
642     * Thu Feb 2 2006 Bill Nottingham <notting@redhat.com> 8.25-1
643     - ifup: don't run the arping check if the address is already on the device
644    
645     * Wed Feb 1 2006 Bill Nottingham <notting@redhat.com> 8.24-1
646     - init.d/functions: fix sendmail startup
647     - sysconfig.txt: fix typos (<mitr@redhat.com>)
648    
649     * Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 8.23-1
650     - rc.sysinit: do a better job of not activating already active dmraids
651    
652     * Tue Jan 31 2006 Bill Nottingham <notting@redhat.com> 8.22-1
653     - remove references to /usr/X11R6/bin (#177938)
654     - rc.sysinit: fix SELinux message formatting (#178532)
655     - rc.sysinit: clean cvs as well (#178539, <ville.skytta@iki.fi>)
656     - init.d/halt: move halt.local so that it runs before / is remounted r/o (#179314)
657     - rc.sysinit: don't activate already active dmraids (<pjones@redhat.com>)
658     - rc.sysinit: don't mount usbfs, libusb no longer uses it
659     - init.d/functions: Add -p to status() (#134363, <mitr@redhat.com>)
660     - init.d/functions: Separate /var/run/*.pid handling and pidof calls
661     to private functions (#63440, <mitr@redhat.com>)
662     - init.d/functions: update for current LSB, including -p pidfile
663     (#99325, #134363, <mitr@redhat.com>, <tobias.burnus@physik.fu-berlin.de>)
664     - getkey: various cleanups, add man page (#54481, <mitr@redhat.com>)
665     - lang.sh: don't always call consoletype (<laroche@redhat.com>)
666    
667     * Fri Jan 20 2006 Bill Nottingham <notting@redhat.com> 8.21-1
668     - move handling of network hotplug events here, add appropriate udev
669     rules, obsolete hotplug
670     - get rid of some path lookups (#178321, <mclasen@redhat.com>)
671     - get hwaddrs from sysfs as opposed to ip | sed
672     - translation updates
673     - lang.sh: don't run unicode_start for subshells (#176832)
674     - halt: ignore sysfs but not /sys<otherstuff> (#177612, <bnocera@redhat.com>)
675     - add service(8) man page (#44857) <mitr@redhat.com>
676    
677     * Wed Dec 21 2005 Bill Nottingham <notting@redhat.com> 8.20-1
678     - remove kmodule. udev handles module loading now
679     - require appropriate udev
680    
681     * Thu Dec 15 2005 Bill Nottingham <notting@redhat.com> 8.19-1
682     - Require syslog, for alternate implementations thereof (#172885)
683     - Fix fsck invocation for weeding out netdev devices (#175803)
684    
685     * Fri Dec 2 2005 Bill Nottingham <notting@redhat.com> 8.18-1
686     - use new dhclient file paths, add appropriate conflict (#169164)
687    
688     * Wed Oct 5 2005 Bill Nottingham <notting@redhat.com> 8.17-1
689     - make sure corefile limiting works for user processes as well
690     (#166511, <ville.skytta@iki.fi>)
691     - ifup-routes: handle no EOF in the route file (#156972)
692     - rc.sysinit: tweak mesage (#156972)
693     - ifdown-eth: clean up error message (#135167)
694     - rc.sysinit: call kpartx on multipath devices (#160227)
695     - ifup-eth: move wireless options before bridge options (#122801)
696     - ifup-wireless: silence error (#90601)
697     - init.d/functions: change translated string (#54682)
698    
699     * Tue Sep 27 2005 Than Ngo <than@redhat.com> 8.16-1
700     - fix typo bug
701    
702     * Mon Sep 26 2005 Than Ngo <than@redhat.com> 8.15-1
703     - support proper dial-in configuration, thanks to Peter Bieringer (#158380)
704    
705     * Thu Sep 22 2005 Bill Nottingham <notting@redhat.com>
706     - kmodule: don't probe for uninteresting devices. speeds things up
707     - network-functions: deal with broken networks better (#168947)
708     - rc.sysinit: automatically reboot if labels are really out of date
709     (<dwalsh@redhat.com>)
710     - network-functions: throw out nameif error messages
711     - rc.sysinit: use multipath.static (#168321)
712     - rc.sysinit: use ignorelocking (#168195)
713    
714     * Mon Sep 12 2005 Bill Nottingham <notting@redhat.com> 8.14-1
715     - fix usage of the module blacklist (#168020)
716    
717     * Fri Sep 9 2005 Bill Nottingham <notting@redhat.com> 8.13-1
718     - fix on-boot relabelling (<dwalsh@redhat.com>)
719    
720     * Mon Aug 22 2005 Bill Nottingham <notting@redhat.com> 8.12-1
721     - ifup-eth: fix interface renaming (#158774)
722     - rc.sysinit: use modprobe, not insmod (#159120, <tmus@tmus.dk>)
723     - remove workaround for the fonts-not-initialized-on-secondary-consoles
724     problem (fixed in 2.6.12-rc4 and later)
725     - setsysfont: correctly bracket systfontacm (#159706)
726     - rc.sysinit: always use udevsend, even if no modules (#160987)
727     - ifdown-aliases: add 'cd' to the proper dir (#161170)
728     - add diskdump restore support (<tuchida@redhat.com>),
729     conflict with appropriate diskdumputils
730     - rc.sysinit: dmraid/multipath support
731     - remove LVM1 support
732     - init.d/functions: handle odd quoting in args (#161316, <stransky@redhat.com>)
733     - ifup-wireless: set rate in quotes (#163123)
734     - handle lvm & fsck for network block devices (#148764,
735     <alewis@redhat.com>)
736     - initlog: fix invalid free calls, (#165033), (#163973,<dwalsh@redhat.com>)
737     - sysconfig.txt: remove hdparm docs, since the code isn't there (#162962)
738     - updated translations: ms, ja, ko, et, zh_CN, zh_TW, sr, ar
739    
740     * Tue May 10 2005 Bill Nottingham <notting@redhat.com> 8.11-1
741     - fix mis-bringup of interfaces due to accidentally matched HWADDR
742     (a.k.a. ONBOOT=no not working) (#153669, #157252)
743     - support automatic relabeling later if rebooted w/o SELinux
744     (<dwalsh@redhat.com>)
745     - rc.sysinit: fix fixfiles invocation (#157182)
746     - btmp should be 0600 (#156900)
747     - translation updates: fr, bg, ru, mk, pa, es
748    
749     * Fri Apr 29 2005 Bill Nottingham <notting@redhat.com> 8.10-1
750     - fix hang on stale GDM sockets (#156355)
751    
752     * Wed Apr 27 2005 Bill Nottingham <notting@redhat.com> 8.09-1
753     - rc.sysinit: clean up screen sockets (#155969)
754     - functions: use pidof -c in various functions
755     - ifup-ppp: fix static routes with ppp demand dialing (#20142,
756     <ohrn+redhat@chalmers.se>)
757     - add btmp support (#155537)
758     - don't send dhcp hostname (revert of fix for #149667)
759     - more early-login modifications (<mclasen@redhat.com>)
760     - functions: fix echo (#155270)
761    
762     * Mon Apr 18 2005 Karsten Hopp <karsten@redhat.de> 8.08-3
763     - fix ifup-routes script (#155195)
764    
765     * Mon Apr 18 2005 Florian La Roche <laroche@redhat.com>
766     - fix strstr call in rc.sysinit
767    
768     * Fri Apr 15 2005 Bill Nottingham <notting@redhat.com> 8.08-1
769     - update translation base
770     - automatically send hostname for DHCP if it's available and not
771     overridden (#149667)
772     - load user-defined module scripts from /etc/sysconfig/modules at
773     boot (#123927)
774     - halt: reverse sort the mount list, avoiding errors
775     (#147254, <jamesodhunt@hotmail.com>)
776     - ifup-wireless: add SECURITYMODE (#145407)
777     - network-functions: don't error out if hotplug doesn't exist (#140008)
778     - ifup: always return errors on trying to bring up nonexistent devices (#131461)
779     - ifup: fix error message (#143674)
780     - rc.sysinit: add a autorelabel boot target (#154496)
781     - prefdm: if something else is specified as $DISPLAYMANAGER, try that (#147304)
782     - remove support for the old firewall type
783     - network: optimize some (#138557, <drepper@redhat.com>)
784     - prefdm: fix prefdm arg handling (#154312, <khc@pm.waw.pl>)
785     - gdm early-login support (adapted from <rstrode@redhat.com>)
786     - ifup-routes: make sure commented lines are handled correctly (#154353,
787     #114548, <link@pobox.com>)
788     - some sysconfig.txt updates (<link@pobox.com>, <jvdias@redhat.com>)
789     - rc.sysinit: fix restorecon invocation (#153100)
790     - initlog: free some of the more egregious memory leaks (#85935)
791     - initlog: fix potential memory overread (#153685, <in-redhat@baka.org>)
792     - remove some conflicts, %post scripts, etc. that were only relelvant
793     for upgrades from pre-7.0
794     - other minor fixes, see ChangeLog
795    
796     * Thu Mar 31 2005 Bill Nottingham <notting@redhat.com> 8.07-1
797     - bring back initlog for third-party scripts until a new framework is
798     in place
799    
800     * Wed Mar 30 2005 Bill Nottingham <notting@redhat.com> 8.06-1
801     - handle alternate VLAN naming schemes (#115001, <kas@informatics.muni.cz>)
802     - ifup-ipsec: handle non-ascii keys (#150552)
803     - add proper ipsec route (#146169, #140654)
804     - add a restorecon for /tmp to rc.sysinit
805     - document ONHOTPLUG in sysconfig.txt
806     - fix mistranslation (#151120)
807     - don't return 1 for stopping a process if it isn't running at all
808     - don't explicitly set fwd polices for ipsec traffic. Let setkey
809     handle it.
810    
811     * Mon Mar 7 2005 Bill Nottingham <notting@redhat.com> 8.05-1
812     - ipv6 cleanups (<pb@bieringer.de>)
813     - rc.sysinit: fix rngd check (#130350)
814     ... then turn it off entirely
815     - rc.sysinit: get rid of duplicate date printout (#149795)
816     - ifdown: handle being called on down devices better
817     - handle saved resolv.conf on all device types
818     - fix network-functions cleanup
819     - netfs: fix _netdev unmounting (#147610, <alewis@redhat.com>)
820     - dhcp release cleanups (<jvdias@redhat.com>)
821     - ifup-bnep: bluetooth update <dwmw2@infradead.org>
822     - more ipsec stuff (#147001, <ckjohnson@gwi.net>)
823    
824     * Wed Jan 19 2005 Bill Nottingham <notting@redhat.com> 8.04-1
825     - split out ifup/ifdown general case to ifup/ifdown-eth;
826     add ifup/ifdown-bnep (<dwmw2@redhat.com>)
827     - ifup-ipsec: add fwd policies (#145507)
828     - fix multiple scsi_hostadapter loads (#145432)
829     - enable syncookies in sysctl.conf (#145201)
830    
831     * Wed Jan 12 2005 Bill Nottingham <notting@redhat.com> 8.03-1
832     - use udevsend to handle hotplug events (requires recent udev)
833     - remove pump, dhcpcd support
834     - fix ONxxx (#136531, <cww@redhat.com>)
835     - fix various fgreps to not catch commented lines (#136531, expanded
836     from <cww@redhat.com>)
837     - set ETHTOOL_OPTS on addressless devices (#144682, <mpoole@redhat.com>)
838     - kill dhcp client even if BOOTOPROTO is now static (#127726, others)
839     - replace the use of route/ifconfig with ip in IPv6 code, remove support
840     for ipv6calc (<pb@bierenger.de>, <pekkas@netcore.fi>)
841     - fix quoting in daemon() (#144634)
842     - make sysctl be silent (#144483)
843    
844     * Mon Jan 3 2005 Bill Nottingham <notting@redhat.com> 8.02-1
845     - remove initlog, minilogd
846     - add a flag to kmodule for use with kudzu's socket mode, use it
847     - change setting of IPv6 default route (#142308, <pb@bieringer.de>)
848     - netfs: don't unmount NFS root FS (#142169)
849    
850     * Mon Dec 6 2004 Bill Nottingham <notting@redhat.com> 8.01-1
851     - further bootup noise reductions
852     - rc.d/rc.sysinit: do implicit unicode conversion on keymap
853    
854     * Mon Nov 29 2004 Bill Nottingham <notting@redhat.com> 8.00-1
855     - fix previous fix (#139656)
856    
857     * Wed Nov 24 2004 Bill Nottingham <notting@redhat.com> 7.99-1
858     - clear and repopulate mtab before mounting other filesystems (#139656)
859     - remove more devfs compat
860    
861     * Tue Nov 23 2004 Bill Nottingham <notting@redhat.com> 7.98-1
862     - various kmodule speedups
863     - rc.d/init.d/netfs: don't mount GFS (#140281)
864     - fix various minilogd bogosities (#106338)
865    
866     * Mon Nov 15 2004 Karsten Hopp <karsten@redhat.de> 7.97-1
867     - configure CTC protocol if CTCPROT is set (#133088)
868    
869     * Mon Nov 15 2004 Bill Nottingham <notting@redhat.com>
870     - fix check_link_down to still check negotiation if link is
871     listed as "up" on entering (#110164, <dbaron@dbaron.org>)
872    
873     * Thu Nov 11 2004 Karsten Hopp <karsten@redhat.de> 7.96-1
874     - parse OPTIONS for QETH, CTC, LCS interfaces (#136256, mainframe)
875    
876     * Tue Nov 9 2004 Bill Nottingham <notting@redhat.com>
877     - fix typo (#134787, <bnocera@redhat.com>)
878    
879     * Sun Nov 7 2004 Bill Nottingham <notting@redhat.com> 7.95-1
880     - various translation updates
881    
882     * Tue Nov 2 2004 Bill Nottingham <notting@redhat.com>
883     - take an axe to rc.sysinit:
884     - remove delay on unclean startup
885     - remove hdparm code
886     - remove LVM1 code
887     - remove old raidtab code in favor of mdadm
888     - remove support for old isapnp tools
889     - move all block device mangling before fsck. run fsck *once*, not twice
890     - some more LC_ALL=C stuff
891    
892     * Sun Oct 31 2004 Florian La Roche <laroche@redhat.com>
893     - /etc/rc.d/rc: use "LC_ALL=C grep" for small speedup
894     - /etc/rc.d/rc.sysinit:
895     - do not read udev.conf, this seems to be all in the start_udev script
896     - fix detection of "nomodules" kernel command line option
897     - read /proc/cmdline earlier and convert rhgb to use that, too
898     - load_module(): change redirection to /dev/null
899     - some checks for RHGB_STARTED="" looked strange
900     - /etc/sysconfig/network-scripts/ifup-ppp:
901     - remove a call to basename with shell builtins
902     - /etc/sysconfig/network-scripts/network-functions:
903     - remove some calls to basename/sed with shell builtins
904    
905     * Wed Oct 27 2004 Bill Nottingham <notting@redhat.com> 7.93.2-1
906     - fix prefdm fallback to installed display managers (#137274)
907     - fix incorrect rhgb temporary path (#137391)
908    
909     * Mon Oct 18 2004 Bill Nottingham <notting@redhat.com> 7.93-1
910     - translation updates
911     - fix handling of GATEWAYDEV (#133575, <pekkas@netcore.fi>)
912    
913     * Sun Oct 17 2004 Bill Nottingham <notting@redhat.com> 7.91-1
914     - rc.d/rc.sysinit: remove devlabel call
915     - mdadm support, now that raidtools is gone (#126636, #88785)
916     - call ipv6to4 scripts in /etc/ppp/(ip-up|ip-down) (#124390, <dwmw2@redhat.com>)
917     - cleanup a couple of nits that could affect bug #134754
918     - make sure we return to rhgb after fsck (#133966, #112839, #134449)
919     - automatically reboot when fsck calls for it, instead of requiring
920     manual intervention (#117641 and duplicates)
921     - ifup-wireless: fix key for open vs. restricted (#135235, <dax@gurulabs.com>)
922     - translation updates
923    
924     * Fri Oct 08 2004 Karsten Hopp <karsten@redhat.de> 7.90-1
925     - fix portname for LCS devices
926    
927     * Fri Oct 08 2004 Bill Nottingham <notting@redhat.com>
928     - remove sysconfig/rawdevices, as initscript is removed
929    
930     * Thu Oct 07 2004 Florian La Roche <Florian.LaRoche@redhat.de>
931     - change /etc/sysctl.conf to not allow source routed packets per default
932    
933     * Fri Oct 6 2004 Bill Nottingham <notting@redhat.com> - 7.88-1
934     - fix requires
935    
936     * Tue Oct 5 2004 Dan Walsh <dwalsh@redhat.com> - 7.87-1
937     - Change SELinux relabel to not remount /
938    
939     * Mon Oct 4 2004 Bill Nottingham <notting@redhat.com>
940     - use runuser instead of su; require it
941     - init.d/halt: use right file name for random seed (#134432)
942    
943     * Fri Oct 1 2004 Bill Nottingham <notting@redhat.com> - 7.86-1
944     - use /etc/hotplug/blacklist to blacklist modules in hardware init (#132719)
945     - filter indic locales on the console (#134198)
946    
947     * Wed Sep 29 2004 Bill Nottingham <notting@redhat.com> - 7.85-1
948     - ifup, network-functions: fix worked-by-accident shell quoting
949     - lang.csh: remove setting of dspmbyte (#89549, <mitr@redhat.com>)
950     - SELinux fixes
951     - clean up prefdm
952     - init.d/functions: export LC_MESSAGES (#133786)
953     - allow daemon to coredump if requested (#130175)
954     - network-functions: be more liberal in what we accept for link types (#90602, #127984)
955     - fix overzealousness with -range aliases (#65415)
956     - rc.sysinit: use s-c-keyboard, not kbdconfig (#133929)
957     - fix checkpid logic, clean up potential errors (#134030)
958     - translation updates
959    
960     * Wed Sep 22 2004 Bill Nottingham <notting@redhat.com> - 7.84-1
961     - only start udev once
962    
963     * Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 7.83-1
964     - conflict with old udev
965     - use udev if it's present
966    
967     * Tue Sep 21 2004 Bill Nottingham <notting@redhat.com>
968     - don't mount usbfs without usb. also, at least be consistent in filesystem type
969    
970     * Fri Sep 17 2004 Bill Nottingham <notting@redhat.com> - 7.82-1
971     - fix handling of nonexistent devices (#132839)
972     - rhgb enhancements (<veillard@redhat.com>, #132665)
973     - initscripts.spec: require nash (#132513)
974     - translation updates
975    
976     * Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 7.81-1
977     - load iucv device config after /etc/sysconfig/network so that
978     GATEWAY doesn't get overwritten
979    
980     * Fri Sep 10 2004 Bill Nottingham <notting@redhat.com> - 7.80-1
981     - fix IPv6 6to4 & NAT (#118928, <pb@bieringer.de>, <pekkas@netcore.fi>)
982    
983     * Fri Sep 10 2004 Karsten Hopp <karsten@redhat.com> - 7.79-1
984     - load ctc device config after /etc/sysconfig/network so that
985     GATEWAY doesn't get overwritten
986    
987     * Wed Sep 8 2004 Dan Walsh <dwalshg@redhat.com> - 7.78-2
988     - fix setting SELinux contexts on udev-created-in-initrd devices
989     - Let restorecon check if selinux is enabled.
990    
991     * Wed Sep 8 2004 Bill Nottingham <notting@redhat.com> - 7.78-1
992     - set SELinux contexts on udev-created-in-initrd devices, if necessary
993    
994     * Wed Sep 1 2004 Bill Nottingham <notting@redhat.com> - 7.77-1
995     - mount usbfs (#131347)
996     - start any automatic raid devices
997     - remove triggers for ancient releases, bulletproof remaining ones (#131356)
998    
999     * Wed Sep 1 2004 Jeremy Katz <katzj@redhat.com> - 7.76-1
1000     - udev uses UDEV_TMPFS now
1001    
1002     * Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 7.75-1
1003     - fix sysfs configuration of qeth and lcs network interfaces
1004     (eth, tr, hsi)
1005    
1006     * Mon Aug 30 2004 Karsten Hopp <karsten@redhat.de> 7.74-1
1007     - fix support for LCS portnumbers (mainframe)
1008    
1009     * Fri Aug 27 2004 Jason Vas Dias <jvdias@redhat.com> 7.73-1
1010     - Add support for running the DHCPv6 client to ifup
1011     - (new DHCPV6C=yes/no ifcfg-${IF} variable) + update sysconfig.txt
1012    
1013     * Fri Aug 27 2004 Bill Nottingham <notting@redhat.com> 7.72-1
1014     - flip the kernel conflict to a Requires:
1015    
1016     * Thu Aug 26 2004 Karsten Hopp <karsten@redhat.de> 7.71-1
1017     - ifcfg-iucv/ctc: drop REMIP and use GATEWAY instead
1018    
1019     * Thu Aug 26 2004 Bill Nottingham <notting@redhat.com> 7.70-1
1020     - autoload hardware modules on startup
1021     - minor fsck cleanup (#115028, <leonard-rh-bugzilla@den.ottolander.nl>)
1022     - ifup: support STP bridging (#123324)
1023     - rc.sysinit: do a SELinux relabel if forced
1024     - rc.sysinit: remove devfs compat and the remaining 2.4 compat
1025     - ifup-wireless: support multiple keys (#127957)
1026     - fix firmware loading (#129155, <bnocera@redhat.com>)
1027    
1028     * Tue Aug 24 2004 Karsten Hopp <karsten@redhat.de> 7.68-1
1029     - execute zfcfconf.sh if available (mainframe)
1030    
1031     * Mon Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.67-1
1032     - fix change_resolv_conf: if pre-existing /etc/resolv.conf
1033     - non-existent or empty, replace with new file contents.
1034    
1035     * Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
1036     - Allow users to use generic /etc/dhclient.conf if per-device
1037     - /etc/dhclient-${DEVICE}.conf is non-existent or empty
1038    
1039     * Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
1040     - Preserve "options" settings in resolv.conf (bug 125712)
1041    
1042     * Fri Aug 20 2004 Jeremy Katz <katzj@redhat.com> - 7.65-1
1043     - look at /etc/udev/udev.conf, not /etc/sysconfig/udev (#130431)
1044    
1045     * Fri Aug 20 2004 Bill Nottingham <notting@redhat.com> 7.64-1
1046     - rc.d/rc.sysinit: check for dev file too (#130350)
1047    
1048     * Thu Aug 19 2004 Than Ngo <than@redhat.com> 7.63-1
1049     - allow CBCP with own number (#125710)
1050    
1051     * Thu Aug 19 2004 Bill Nottingham <notting@redhat.com> 7.62-1
1052     - fix up resolv.conf munging (#129921)
1053     - use rngd if available
1054     - run start_udev if necessary (#120605)
1055     - readonly root updates (#129893, <markmc@redhat.com>)
1056     - ifup-wireless: quote key (#129930)
1057     - remove rawdevices (#130048)
1058     - handle binfmt_misc in rc.sysinit for the case where it's built in (#129954)
1059     - remove mkkerneldoth
1060     - don't remove linguas in lang.* (part of #9733)
1061     - fix nfs unmounting (#129765)
1062     - fix URL (#129433)
1063    
1064     * Tue Aug 11 2004 Jason Vas Dias <jvdias@redhat.com> 7.61-1
1065     - fix for bug 120093: add PERSISTENT_DHCLIENT option to ifcfg files
1066    
1067     * Tue Aug 3 2004 Karsten Hopp <karsten@redhat.de> 7.60-1
1068     - write peerid into sysfs for IUCV devices (mainframe)
1069    
1070     * Tue Aug 3 2004 Bill Nottingham <notting@redhat.com>
1071     - don't remove /dev/mapper/control - nash will do it if it has to (#127115)
1072    
1073     * Fri Jul 30 2004 Jason Vas Dias <jvdias@redhat.com> 7.60-1
1074     - fix for bug 125712: add 'change_resolv.conf' function
1075    
1076     * Tue Jul 27 2004 Bill Nottingham <notting@redhat.com>
1077     - rc.d/init.d/network: don't bring interfaces down twice (#127487)
1078    
1079     * Wed Jul 14 2004 Bill Nottingham <notting@redhat.com>
1080     - fix bonding + no IP (#127285)
1081     - wrap second LVM initialization in vgscan check to avoid extraneous messages (#127639)
1082    
1083     * Wed Jul 7 2004 Bill Nottingham <notting@redhat.com>
1084     - move random stuff to rc.sysinit/halt; move all swap to after this.
1085     prereq of bug #123278
1086    
1087     * Fri Jul 2 2004 Bill Nottingham <notting@redhat.com> 7.59-1
1088     - set context on ICE directory after making it (#127099, <concert@europe.com>)
1089     - don't mount GFS filesystems in rc.sysinit
1090    
1091     * Tue Jun 29 2004 Bill Nottingham <notting@redhat.com> 7.58-1
1092     - rc.d/rc.sysinit: hack: make ICE directory on boot (#86480)
1093     - set devicetype for xDSL (#126194)
1094     - ignore locking failures when starting lvm volumes (#126192, <radu@primit.ro>)
1095     - unset LC_MESSAGES for rhgb (#126020, <ynakai@redhat.com>)
1096     - bonding fixes
1097     - setsysfont: remove error (#100559)
1098     - remove duplicate setting of network routes (#125450)
1099     - vlan fixes (#107504, <hrunting@texas.net>)
1100     - ifup-aliases: remove bogus route setting (#120908)
1101    
1102     * Tue May 25 2004 Bill Nottingham <notting@redhat.com> 7.57-1
1103     - readonly root fixes (<alexl@redhat.com>)
1104    
1105     * Tue May 25 2004 Karsten Hopp <karsten@redhat.de> 7.56-1
1106     - special TYPE for qeth devices to differenciate them from ethX
1107    
1108     * Mon May 24 2004 Bill Nottingham <notting@redhat.com>
1109     - fix pppd vs. ppp typo in conflicts (#123680)
1110    
1111     * Fri May 21 2004 Bill Nottingham <notting@redhat.com>
1112     - fix bridging confusing module order (#122848, <luto@myrealbox.com>)
1113     - rc.d/rc.sysinit: don't mount cifs (#122501)
1114    
1115     * Tue May 18 2004 Karsten Hopp <karsten@redhat.de> 7.55-1
1116     - add support for ccwgroup devices on mainframe
1117    
1118     * Thu May 13 2004 Than Ngo <than@redhat.com> 7.54-1
1119     - add patch to enable PIE build of usernetctl
1120    
1121     * Fri May 7 2004 Jeremy Katz <katzj@redhat.com> - 7.53-1
1122     - little lvm tweak (#121963)
1123    
1124     * Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.52-1
1125     - ipv4 addresses are ints, not longs (#122479)
1126    
1127     * Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.51-1
1128     - get rid of LVM error when no volumes are defined (#121197)
1129     - fix selinux short-circuit test (#121143, <michal@harddata.com>)
1130     - /dev/mapper/control is a special file, check it accordingly (#121963)
1131     - support ETHTOOL_OPTS on bonding slaves (#119430, <hrunting@texas.net>)
1132     - handle multiple spaces correctly in rc.sysinit, network-functions
1133     (#118583, <pallas@kadan.cz>)
1134     - cleanup fd leaks, mem leaks, other bogosities
1135     (#119987, <linux_4ever@yahoo.com>)
1136     - rc.d/init.d/network: remove ipv6 bogosity (#114128)
1137     - translation updates
1138    
1139     * Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> 7.50-1
1140     - fix LVM issues in rc.sysinit (#120458, #119975)
1141     - deal with fixed racoon parser
1142     - translation updates from translators
1143     - fix USB loading (#120911)
1144    
1145     * Fri Mar 26 2004 Bill Nottingham <notting@redhat.com> 7.49-1
1146     - use alsa for mixer saving in halt
1147     - don't umount /proc in halt (#118880)
1148     - various translation updates from translators
1149    
1150     * Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.48-1
1151     - disable enforcing in emergency mode for now, relabel some commonly
1152     mislabeled files on boot
1153    
1154     * Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.47-1
1155     - translation: catch more input strings (#106285, <mitr@volny.cz>)
1156     - remove autologin from prefdm (#108969)
1157     - return to rhgb after ./unconfigured (#109807, <jkeating@j2solutions.net>)
1158     - handle iso15 in setsysfont (#110243)
1159     - clean up samba & vmware in rc.sysinit (#113104)
1160     - some sysconfig.txt documentation (#110427, #118063)
1161     - fix bug in umount-on-halt (#113088, <giardina@airlab.elet.polimi.it>)
1162     - handle CIFS in netfs (#115691)
1163     - make sure hotplug isn't stuck unset (#116666, <aoliva@redhat.com>)
1164     - handle network fs better in rc.sysinit (#111290)
1165     - nomodules applies to usb/firewire too (#113278)
1166     - ipsec fix (#116922, <felipe_alfaro@linuxmail.org>)
1167     - make sure rc exits cleanly (#117827, <enrico.scholz@informatik.tu-chemnitz.de>)
1168     - fsck root FS from initrd, for dynamic majors (#117575, <sct@redhat.com>)
1169    
1170     * Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com>
1171     - Use ':' instead of '.' as separator for chown.
1172    
1173     * Mon Feb 2 2004 Bill Nottingham <notting@redhat.com> 7.46-1
1174     - some more rc.sysinit tweaks and refactoring
1175    
1176     * Fri Jan 30 2004 Bill Nottingham <notting@redhat.com> 7.45-1
1177     - fix rc.sysinit typo
1178     - rc.d/init.d/network: clear out environment (#113937, #111584)
1179    
1180     * Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 7.44-1
1181     - NFSv4 support (<chucklever@bigfoot.com>, <steved@redhat.com>)
1182     - handle 2.6-style 'install ethX ...' lines correctly
1183     - mount sysfs by default
1184     - time to clean up the cruft. remove:
1185     - boot-time depmod
1186     - linking of /boot/System.map to /boot/System.map-`uname -r`
1187     - /var/log/ksyms.X
1188     - libredhat-kernel support
1189    
1190     * Fri Jan 16 2004 Dan Walsh <dwalsh@redhat.com> 7.43-2
1191     - Remove selinux run_init code from service script. It is no longer needed.
1192    
1193     * Fri Dec 5 2003 Jeremy Katz <katzj@redhat.com> 7.43-1
1194     - basic lvm2 support
1195    
1196     * Tue Oct 28 2003 Bill Nottingham <notting@redhat.com> 7.42-1
1197     - show rhgb details on service failures
1198    
1199     * Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 7.41-1
1200     - tweak some rhgb interactions (#100894, #107725)
1201     - fix dvorak keymap loading (#106854)
1202    
1203     * Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.40-1
1204     - add better fix to support nickname (#105785)
1205    
1206     * Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.39-1
1207     - add support nickname (#105785)
1208    
1209     * Fri Oct 17 2003 Bill Nottingham <notting@redhat.com> 7.38-1
1210     - rhgb updates, now pass 'rhgb' to use it, instead of passing 'nogui'
1211     to disable it
1212    
1213     * Fri Oct 10 2003 Bill Nottingham <notting@redhat.com> 7.37-1
1214     - bridging updates (#104421, <dwmw2@redhat.com>)
1215    
1216     * Wed Oct 8 2003 Bill Nottingham <notting@redhat.com> 7.36-1
1217     - mount /dev/pts before starting rhgb
1218    
1219     * Wed Oct 1 2003 Bill Nottingham <notting@redhat.com> 7.35-1
1220     - load acpi modules on startup if necessary
1221     - fix typo in ipsec comments & sysconfig.txt
1222    
1223     * Mon Sep 15 2003 Than Ngo <than@redhat.com> 7.34-1
1224     - use upsdrvctl to start the shutdown process
1225    
1226     * Mon Sep 15 2003 Bill Nottingham <notting@redhat.com> 7.33-1
1227     - ipsec fixes (#104227, <harald@redhat.com>)
1228     - ppp fixes (#104128, #97845, #85447)
1229    
1230     * Thu Sep 11 2003 Bill Nottingham <notting@redhat.com> 7.32-1
1231     - fix ip calls for some device names (#104187)
1232     - ipsec fixes
1233    
1234     * Fri Sep 5 2003 Bill Nottingham <notting@redhat.com> 7.31-1
1235     - fix bonding + dhcp (#91399)
1236     - fix typo (#103781)
1237     - sysconfig/network-scripts/ifup: fix use of local
1238    
1239     - fix shutdown with NFS root (#100556, <Julian.Blake@cern.ch>)
1240     - remove /var/run/confirm when done with /etc/rc (#100898)
1241     - ipcalc: fix some memory handling (#85478, <miked@ed.ac.uk>)
1242     - handle sorting > 10 network devices (#98209)
1243     - unset ONPARENT after use (#101384)
1244     - random other fixes
1245     - bridging support (<dwmw2@redhat.com>)
1246    
1247     * Fri Aug 15 2003 Bill Nottingham <notting@redhat.com> 7.30-1
1248     - IPv6 updates (#86210, #91375, <pekkas@netcore.fi>)
1249    
1250     * Fri Aug 8 2003 Bill Nottingham <notting@redhat.com> 7.29-1
1251     - setsysfont: don't echo to /dev/console (#102004)
1252     - fix ethernet device renaming deadlock (#101566)
1253     - consoletype: don't return 'vt' on vioconsole (#90465)
1254     - ifup: fix short-circuit (#101445)
1255    
1256     * Fri Jul 18 2003 Nalin Dahyabhai <nalin@redhat.com>
1257     - ifup-routes: pass the interface name to handle_file() so that we don't try
1258     to use the routes file's name as an interface name
1259    
1260     * Wed Jul 9 2003 Bill Nottingham <notting@redhat.com> 7.28-1
1261     - switch from $CONFIG.keys to keys-$CONFIG
1262    
1263     * Tue Jul 8 2003 Bill Nottingham <notting@redhat.com> 7.27-1
1264     - add a check to consoletype for the current foreground console
1265     - use it when running unicode_start (#98753)
1266    
1267     * Wed Jul 2 2003 Bill Nottingham <notting@redhat.com> 7.26-1
1268     - ipsec support (see sysconfig.txt, ifup-ipsec)
1269     - read $CONFIG.keys, for non-world-readable keys
1270     - allow default window size for routes to be set with WINDOW= (#98112)
1271     - support setting device options with ethtool opts
1272     - fix s390 bootup spew (#98078)
1273     - support renaming interfaces with nameif based on hwaddr
1274    
1275     * Mon Jun 23 2003 Bill Nottingham <notting@redhat.com> 7.25-1
1276     - fix DNS punching in the case of other rules for the DNS server
1277     (#97686, <martin@zepler.org>)
1278     - initlog, ppp-watch, and usernetctl tweaks (<linux_4ever@yahoo.com>)
1279     - fix grep for mingetty (#97188)
1280     - fix rhgb-client bad syntax
1281     - change network device searching, use correct naming, fix route issues
1282     (<harald@redhat.com>)
1283     - other random tweaks
1284    
1285     * Fri May 23 2003 Bill Nottingham <notting@redhat.com> 7.24-1
1286     - now even still yet more tweaks for graphical boot
1287    
1288     * Thu May 22 2003 Bill Nottingham <notting@redhat.com> 7.23-1
1289     - even still yet more tweaks for graphical boot
1290    
1291     * Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.22-1
1292     - still yet more tweaks for graphical boot
1293    
1294     * Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.21-1
1295     - yet more tweaks for graphical boot
1296    
1297     * Fri May 2 2003 Bill Nottingham <notting@redhat.com> 7.20-1
1298     - more tweaks for graphical boot
1299    
1300     * Wed Apr 30 2003 Bill Nottingham <notting@redhat.com> 7.18-1
1301     - some tweaks for graphical boot
1302    
1303     * Mon Apr 21 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1304     - initscripts-s390.patch: remove not needed parts about PNP=
1305     - inittab.390: sync with normal version
1306     - rc.sysinit: remove two further calls to /sbin/consoletype with $CONSOLETYPE
1307    
1308     * Fri Apr 18 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1309     - sysconfig/init.s390: set LOGLEVEL=3 as for other archs
1310     - rc.d/init.d/network, rc.d/rc: change confirmation mode to
1311     not use an environment variable
1312     - rc.d/init.d/functions: make strstr() even shorter, remove old
1313     "case" version that has been already commented out
1314     - rc.d/rc.sysinit:
1315     - no need to set NETWORKING=no, it is not used/exported
1316     - do not export BOOTUP
1317     - delete two "sleep 1" calls that wants to add time to go
1318     into confirmation mode. There is enough time to press a
1319     key anyway or use "confirm" in /proc/cmdline.
1320     - read /proc/cmdline into a variable
1321     - use strstr() to search in /proc/cmdline
1322     - add "forcefsck" as possible option in /proc/cmdline
1323     - while removing lock files, no need to call `basename`
1324     - add unamer=`uname -r` and reduce number of forks
1325     - do not fork new bash to create /var/log/ksyms.0
1326    
1327     * Thu Apr 03 2003 Karsten Hopp <karsten@redhat.de> 7.15-1
1328     - Mainframe has no /dev/ttyX devices and no mingetty, don't
1329     initialize them. This gave error messages during startup
1330    
1331     * Mon Mar 17 2003 Nalin Dahyabhai <nalin@redhat.com>
1332     - init.d/network: don't advertise "probe: true" in the header if we don't
1333     recognize "probe" as an argument
1334    
1335     * Wed Mar 12 2003 Bill Nottingham <notting@redhat.com> 7.14-1
1336     * - do not handle changed chain name; change was reverted
1337    
1338     * Tue Feb 25 2003 Bill Nottingham <notting@redhat.com> 7.13-1
1339     - handle 7.x SYSFONTACM settings in setsysfont (#84183)
1340    
1341     * Mon Feb 24 2003 Bill Nottingham <notting@redhat.com> 7.12-1
1342     - handle changed chain name
1343     - init vts used in all cases
1344    
1345     * Fri Feb 21 2003 Bill Nottingham <notting@redhat.com> 7.10-1
1346     - handle LANGUAGE specially for zh_CN.GB18030 and gdm (#84773)
1347    
1348     * Thu Feb 20 2003 Bill Nottingham <notting@redhat.com> 7.09-1
1349     - initialize two ttys past # of mingettys (for GDM)
1350     - fix zeroconf route
1351     - redhat-config-network writes $NAME.route for some static routes
1352     (e.g., ppp); handle that (#84193)
1353    
1354     * Tue Feb 18 2003 Bill Nottingham <notting@redhat.com> 7.08-1
1355     - load keybdev & mousedev even if hid is already loaded/static
1356     - run fewer scripts through action (#49670, #75279, #81531)
1357    
1358     * Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 7.07-1
1359     - fix nicknames & profiles (#82246)
1360     - fix check_device_down (#83780, <pzb@datstacks.com>)
1361     - vlan fixes (<tis@foobar.fi>)
1362     - fix groff macros (#83531, <tsekine@sdri.co.jp>)
1363     - various updated translations
1364     - fix checkpid for multiple pids (#83401)
1365    
1366     * Fri Jan 31 2003 Bill Nottingham <notting@redhat.com> 7.06-1
1367     - 802.1Q VLAN support (<tis@foobar.fi>, #82593)
1368     - update translations
1369    
1370     * Thu Jan 30 2003 Bill Nottingham <notting@redhat.com> 7.05-1
1371     - fix syntax error in rc.sysinit when there are fsck errors
1372     - fix zh_TW display on console (#82235)
1373    
1374     * Wed Jan 15 2003 Bill Nottingham <notting@redhat.com> 7.04-1
1375     - tweak some translatable strings
1376     - fix for rc.sysinit on machines that pass arguments to mingetty
1377     (<nalin@redhat.com>)
1378    
1379     * Tue Jan 14 2003 Bill Nottingham <notting@redhat.com> 7.03-1
1380     - move system font setting sooner (<milan.kerslager@pslib.cz>)
1381     - fix link checking for dhcp, use both ethtool and mii-tool
1382     - fix CJK text on the console, and locale-archive held open
1383     on shutdown
1384     - IPv6 updates <pekkas@netcore.fi>, <pb@bieringer.de>
1385     - speedup tweaks (<drepper@redhat.com>)
1386     - use glib2 for ppp-watch (#78690, <kisch@mindless.com>)
1387     - add zeroconf route (#81738)
1388     - fix ifup-ppp for dial-on-demand, and onboot (<goeran@uddeborg.pp.se>)
1389     - tweak raidtab parsing, don't worry about not-in-fstab RAID devices
1390     (#71087, #78467, <aja@mit.edu>)
1391     - don't automatically bring up aliases if 'ONPARENT=no' is set (#78992)
1392     - getkey cleanups/tweaks (#76071, <ben@enchantedforest.org>)
1393     - rework halt_get_remaining (#76831, <michal@harddata.com>)
1394     - ipcalc: fix calculation of /32 addresses (#76646)
1395     - various other tweaks and fixes
1396    
1397     * Fri Dec 20 2002 Bill Nottingham <notting@redhat.com> 7.01-1
1398     - %%config(noreplace) inittab
1399    
1400     * Tue Dec 17 2002 Nalin Dahyabhai <nalin@redhat.com>
1401     - add a "nofirewire" option to /etc/rc.sysinit, analogous to "nousb"
1402    
1403     * Tue Dec 17 2002 Bill Nottingham <notting@redhat.com> 7.00-1
1404     - tweaks for potential GUI bootup
1405     - loop checking for network link state, don't unilterally wait five
1406     seconds
1407    
1408     * Fri Dec 14 2002 Karsten Hopp <karsten@redhat.de> 6.99-1
1409     - remove call to /sbin/update for S/390, too
1410    
1411     * Wed Dec 11 2002 Bill Nottingham <notting@redhat.com> 6.98-1
1412     - remove call to /sbin/update
1413     - fix netprofile
1414    
1415     * Mon Dec 2 2002 Bill Nottingham <notting@redhat.com> 6.97-1
1416     - IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
1417     - devlabel support (<Gary_Lerhaupt@Dell.com>)
1418     - do lazy NFS umounts
1419    
1420     * Tue Nov 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1421     - correctly remove non-packaged files for mainframe
1422    
1423     * Tue Nov 12 2002 Bill Nottingham <notting@redhat.com> 6.96-1
1424     - fix various static-routes brokeness (#74317, #74318, #74320, #76619,
1425     #75604)
1426     - fix handling of SYSFONTACM in setsysfont (#75662)
1427     - fix lang.csh for CJK (#76908, <ynakai@redhat.com>)
1428     - IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
1429     - other minor tweaks
1430    
1431     * Mon Sep 16 2002 Than Ngo <than@redhat.com>
1432     - owns directory /etc/ppp/peers (bug #74037)
1433    
1434     * Wed Sep 4 2002 Bill Nottingham <notting@redhat.com> 6.95-1
1435     - fix syntax error in duplicate route removal section of ifup
1436    
1437     * Wed Sep 4 2002 Nalin Dahyabhai <nalin@redhat.com> 6.94-1
1438     - fix syntax error calling unicode_start when SYSFONTACM isn't set
1439    
1440     * Mon Sep 2 2002 Bill Nottingham <notting@redhat.com>
1441     - fix calling of unicode_start in lang.{sh,csh}
1442     - ipv6 tweak
1443    
1444     * Wed Aug 28 2002 Bill Nottingham <notting@redhat.com>
1445     - don't infinite loop on ifdown
1446     - remove disabling of DMA; this can cause problems
1447     - move swap startup to after LVM (#66588)
1448    
1449     * Tue Aug 20 2002 Bill Nottingham <notting@redhat.com>
1450     - don't cycle through eth0-eth9 on dhcp link check (#68127)
1451     - don't retry indefinitely on ppp startup
1452     - activate network profile passed on kernel commandline via netprofile=
1453     - fix iptables invocations again
1454     - translation refresh
1455    
1456     * Wed Aug 14 2002 Bill Nottingham <notting@redhat.com>
1457     - fix silly typo in rc.sysinit
1458     - increase timeout for link to 5 seconds (#70545)
1459    
1460     * Tue Aug 13 2002 Bill Nottingham <notting@redhat.com>
1461     - require /etc/redhat-release (#68903)
1462     - fix tty2-tty6 (sort of)
1463     - fix iptables invocations (#70807, #71201, #68368)
1464     - other minor tweaks
1465    
1466     * Wed Jul 24 2002 Bill Nottingham <notting@redhat.com>
1467     - fix unicode checks in rc.sysinit, lang.{sh,csh} to handle UTF-8@euro
1468    
1469     * Tue Jul 16 2002 Bill Nottingham <notting@redhat.com>
1470     - use iptables, not ipchains
1471    
1472     * Tue Jul 16 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1473     - /sbin/service: set PATH before calling startup scripts
1474     HOME and TERM are also set during bootup, but they should not make
1475     a difference for well-written daemons.
1476    
1477     * Mon Jul 15 2002 Bill Nottingham <notting@redhat.com>
1478     - fix boot-time cleanup of /var
1479     - update po files
1480    
1481     * Thu Jul 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1482     - /etc/init.d/functions:
1483     daemon(): avoid starting another bash
1484     killproc(): avoid starting another bash for the default case
1485     - do not call "insmod -p" before loading the "st" module
1486    
1487     * Tue Jul 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1488     - allow an option for ups poweroff #68123
1489     - change grep for ONBOOT= #63903
1490     - allow building with a cross-compiler #64362,#64255
1491     - faster check in network-functions:check_default_route()
1492     - better checks for backup files
1493     - drastically reduce the number of consoletype invocations
1494     - do not export "GATEWAY" in network-functions
1495     - code cleanups in rc.sysinit
1496    
1497     * Fri Jul 05 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1498     - rc.sysinit: do not load raid modules unless /etc/raidtab exists
1499     - many cleanups for more consistent shell programming and also
1500     many smaller speedups within network scripts, no un-necessary sourcing
1501     of files etc
1502     - nearly re-code /etc/rc.d/rc
1503    
1504     * Thu Jun 27 2002 Bill Nottingham <notting@redhat.com>
1505     - a couple minor unicode tweaks in rc.sysinit
1506    
1507     * Wed Jun 26 2002 Bill Nottingham <notting@redhat.com>
1508     - move /proc/bus/usb mount, in case USB is in the initrd
1509    
1510     * Wed Jun 26 2002 Preston Brown <pbrown@redhat.com>
1511     - don't try to set wireless freq/channel when in Managed mode
1512    
1513     * Wed Jun 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1514     - start some sh coding cleanups
1515     - change to /etc/init.d/functions
1516     - eliminate some un-necessary PATH settings
1517     - eliminate some TEXTDOMAIN settings
1518    
1519     * Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 6.78-1
1520     - fix UTF-8 checks
1521    
1522     * Wed Jun 05 2002 Than Ngo <than@redhat.com> 6.77-1
1523     - fixed a bug in setting defaultgateway
1524    
1525     * Thu May 30 2002 Bill Nottingham <notting@redhat.com> 6.76-1
1526     - call unicode_start in lang.{sh,csh}, setsysfont when necessary
1527    
1528     * Tue May 28 2002 Bill Nottingham <notting@redhat.com> 6.75-1
1529     - add check for link for dhcp back in
1530    
1531     * Fri Apr 19 2002 Bill Nottingham <notting@redhat.com> 6.67-1
1532     - fix silly cut&paste bug in hdparm settings in initscripts
1533    
1534     * Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 6.65-1
1535     - Update translations
1536    
1537     * Sun Apr 14 2002 Bill Nottingham <notting@redhat.com> 6.64-1
1538     - make sure chatdbg is set before using it (#63448, <Bertil@Askelid.com>)
1539     - allow tweaking of more devices with hdparm (#53511), and
1540     tweak non-disk devices iff they explicitly have a config file
1541     for that device (#56575, #63415)
1542     - some translation updates
1543    
1544     * Fri Apr 12 2002 Bill Nottingham <notting@redhat.com> 6.63-1
1545     - ipcalc cleanups (#58410)
1546     - quit stripping binaries
1547     - do LVM init after RAID init too (#63238)
1548     - export all locale variables (#56142)
1549     - run sysctl -p after network init as well
1550    
1551     * Tue Apr 09 2002 Bill Nottingham <notting@redhat.com> 6.62-1
1552     - delete X/VNC locks on startup (#63035)
1553     - shut up DMA disabling, move it to after ide-scsi (#62873, #62956)
1554     - use full path to /sbin/ifconfig (#59457)
1555     - /sbin/service: change to root directory before staring/stopping;
1556     also sanitize environment
1557    
1558     * Tue Apr 02 2002 Bill Nottingham <notting@redhat.com> 6.61-1
1559     - when disabling DMA, don't use things in /usr
1560    
1561     * Thu Mar 28 2002 Bill Nottingham <notting@redhat.com> 6.60-1
1562     - disable DMA on CD-ROMs at bootup
1563    
1564     * Wed Mar 27 2002 Bill Nottingham <notting@redhat.com> 6.59-1
1565     - add local hook to halt
1566    
1567     * Fri Mar 15 2002 Than Ngo <than@redhat.com> 6.58-1
1568     - fix usernetctl for working with neat
1569    
1570     * Thu Mar 14 2002 Bill Nottingham <notting@redhat.com> 6.57-1
1571     - update translations
1572    
1573     * Tue Mar 12 2002 Bill Nottingham <notting@redhat.com> 6.56-1
1574     - use nameif for interfaces where we don't agree on HWADDR with the
1575     config file (<harald@redhat.com>)
1576     - LSB support tweaks
1577    
1578     * Tue Mar 12 2002 Mike A. Harris <mharris@redhat.com> 6.55-1
1579     - Removed process accounting stuff from rc.sysinit and halt scripts as it is
1580     now handled by the psacct initscript in the psacct package
1581    
1582     * Thu Feb 28 2002 Bill Nottingham <notting@redhat.com>
1583     - conflict with older psacct
1584    
1585     * Fri Feb 22 2002 Bill Nottingham <notting@redhat.com>
1586     - fix invocation of need_hostname (#58946), a couple other minor tweaks
1587    
1588     * Tue Feb 12 2002 Mike A. Harris <mharris@redhat.com>
1589     - rc.sysinit: changed /var/log/pacct to /var/account/pacct for FHS 2.2 compliance
1590    
1591     * Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
1592     - run /bin/setfont, not /usr/bin/setfont (kbd)
1593     - lots-o-random bugfixes/tweaks (see ChangeLog)
1594    
1595     * Thu Jan 17 2002 Michael K. Johnson <johnsonm@redhat.com>
1596     - Added support for libredhat-kernel.so.* symlink handling
1597    
1598     * Wed Nov 7 2001 Than Ngo <than@redhat.com>
1599     - fix bug in setting netmask on s390/s390x (bug #55421)
1600     nmbd daemon works now ;-)
1601    
1602     * Fri Nov 2 2001 Than Ngo <than@redhat.com>
1603     - fixed typo bug ifup-ippp
1604    
1605     * Mon Oct 29 2001 Than Ngo <than@redhat.com>
1606     - fix bug in channel bundling if MSN is missed
1607     - support DEBUG option
1608    
1609     * Wed Sep 19 2001 Than Ngo <than@redhat.com>
1610     - don't show user name by DSL connection
1611    
1612     * Sat Sep 8 2001 Bill Nottingham <notting@redhat.com>
1613     - don't run hwclock --adjust on a read-only filesystem
1614    
1615     * Thu Sep 6 2001 Than Ngo <than@redhat.com>
1616     * update initscripts-s390.patch for s390/s390x
1617    
1618     * Wed Sep 5 2001 Bill Nottingham <notting@redhat.com>
1619     - translation updates
1620     - quota and hwclock tweaks (<pbrown@redhat.com>)
1621    
1622     * Mon Sep 3 2001 Bill Nottingham <notting@redhat.com>
1623     - fix severe alias problems (#52882)
1624    
1625     * Mon Sep 3 2001 Than Ngo <than@redhat.com>
1626     - don't start pppbind if encapsulation is rawip (bug #52491)
1627    
1628     * Sun Sep 2 2001 Than Ngo <than@redhat.com>
1629     - add ISDN patches from pekkas@netcore.fi and pb@bieringer.de (bug #52491)
1630     - fix handling of ISDN LSZ Compresssion
1631    
1632     * Thu Aug 30 2001 Than Ngo <than@redhat.com>
1633     - po/de.po: fix typo bug, lo instead 1o
1634    
1635     * Wed Aug 29 2001 David Sainty <dsainty@redhat.com>
1636     - fix ifdown for multiple dhcpcd interfaces
1637    
1638     * Wed Aug 29 2001 Than Ngo <than@redhat.com>
1639     - fix ISDN dial on demand bug
1640     - fix typo bug in network-functions
1641    
1642     * Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com>
1643     - document /etc/sysconfig/authconfig
1644    
1645     * Tue Aug 28 2001 Bill Nottingham <notting@redhat.com> 6.31-1
1646     - message un-tweaks (<johnsonm@redhat.com>)
1647     - make getkey more useful, fix some of the autofsck stuff (<johnsonm@redhat.com>)
1648    
1649     * Mon Aug 27 2001 Bill Nottingham <notting@redhat.com>
1650     - autofsck support, archive modules/symbol info (<johnsonm@redhat.com>)
1651    
1652     * Mon Aug 27 2001 Than Ngo <than@redhat.com>
1653     - fix some typo bugs in ifup-ippp <ubeck@c3pdm.com>
1654    
1655     * Fri Aug 24 2001 Bill Nottingham <notting@redhat.com>
1656     - sort output of halt_get_remaining (#52180)
1657     - fix bad translation (#52503)
1658    
1659     * Wed Aug 22 2001 Bill Nottingham <notting@redhat.com>
1660     - fix ifup-wireless (#52135)
1661    
1662     * Wed Aug 22 2001 Than Ngo <than@redhat.com>
1663     - fix return code of isdnctrl (bug #52225)
1664    
1665     * Tue Aug 21 2001 Than Ngo <than@redhat.com>
1666     - fix Bringing up isdn device again. It works now correct.
1667    
1668     * Tue Aug 21 2001 Than Ngo <than@redhat.com>
1669     - fix shutdown/Bringing up isdn device
1670    
1671     * Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com>
1672     - fix syntax error in lang.csh
1673     - set codeset by echoing to /dev/tty instead of /proc/self/fd/15
1674    
1675     * Sun Aug 19 2001 Bill Nottingham <notting@redhat.com>
1676     - fix a broken call to check_device_down
1677     - make all loopback addresses have host scope, not global scope.
1678     Fixes #49374, possibly others
1679    
1680     * Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
1681     - add is_available() network function, use it; cleans up ugly modprobe
1682     error messages
1683     - update translation info
1684     - fix #51787
1685    
1686     * Wed Aug 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
1687     - adjust s390 patch
1688     - fix up ifup-ctc and mkkerneldoth.s390 (both are s390 specific)
1689    
1690     * Mon Aug 13 2001 Yukihiro Nakai <ynakai@redhat.com>
1691     - don't display Chinese Korean if we aren't on a pty
1692    
1693     * Sat Aug 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1694     - adjust s390 patches to current sources
1695    
1696     * Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
1697     - use GDM_LANG if it's set in lang.sh/lang.csh (#51432, <otaylor@redhat.com>)
1698    
1699     * Fri Aug 10 2001 Than Ngo <than@redhat.com>
1700     - don't set MSN if it' empty (it's now optional)
1701     - don't give login name as a cmdline-option (Bug #23066)
1702     - remove peer device file if ppp connection is down
1703     - fix channel bundling
1704    
1705     * Thu Aug 9 2001 Bill Nottingham <notting@redhat.com>
1706     - require SysVinit (#51335)
1707    
1708     * Wed Aug 8 2001 Bill Nottingham <notting@redhat.com>
1709     - tweak raittab grep slightly (#51231)
1710     - allow resetting of default route for DHCP addresses (#48994)
1711     - save resolv.conf in ifup-ppp for restoration by ifdown-post (#50759)
1712     - when munging firewall rules for dns, only allow dest ports 1025-65535 (#44038, #40833)
1713     - allow shell characters in ppp names (#43719)
1714     - allow setting DHCP arguments, just kill dhcpcd instead of using -k (#46492)
1715     - behave sanely if ifup called when dhcpcd is running (#49392, #51038)
1716    
1717     * Mon Aug 6 2001 Bill Nottingham <notting@redhat.com>
1718     - honor HOTPLUG=no if running under hotplug (#47483)
1719     - use awk, not grep, for modprobe -c checks (#49616)
1720     - don't print ugly messages for the case where the device doesn't exist,
1721     and there is no alias (i.e., PCMCIA ONBOOT=yes (#various))
1722     - run kbdconfig in /.unconfigured mode (#43941)
1723     - use a bigger buffer size argument to dmesg (#44024)
1724     - detach loopback devices on shutdown (#43919, #45826)
1725    
1726     * Thu Aug 2 2001 Bill Nottingham <notting@redhat.com>
1727     - fix halt_get_remaining() (#50720)
1728    
1729     * Tue Jul 31 2001 Bill Nottingham <notting@redhat.com>
1730     - mount all FS types r/o at halt (#50461)
1731     - don't use mii-tool at all (#various)
1732    
1733     * Thu Jul 26 2001 Bill Nottingham <notting@redhat.com>
1734     - don't use kbd commands in setsysfont now that we've switched back to
1735     console-tools (#50075)
1736     - sleep in check_link_down; some devices require it
1737     - only bring link down if check_link_down fails
1738    
1739     * Wed Jul 25 2001 Bill Nottingham <notting@redhat.com>
1740     - set link up before checking with mii-tool (#49949)
1741    
1742     * Tue Jul 24 2001 Bill Nottingham <notting@redhat.com>
1743     - update netdev stuff to use _netdev
1744     - IPv6 updates (<pekkas@netcore.fi>)
1745     - fix downing of devices with static IPs (#49777, #49783)
1746     - put ifcfg-lo back in the package
1747    
1748     * Fri Jul 20 2001 Preston Brown <pbrown@redhat.com> 6.06
1749     - updates for quota
1750    
1751     * Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
1752     - own some more directories
1753     - use -O nonetdev, require mount package that understands this
1754     - fix do_netreport when called as non-root
1755     - remove ip addresses from interfaces on ifdown
1756     - oops, fix ifup/ifdown
1757    
1758     * Mon Jul 16 2001 Than Ngo <than@redhat.com>
1759     - fix country_code for ISDN
1760    
1761     * Tue Jul 9 2001 Bill Nottingham <notting@redhat.com>
1762     - fix '--check'
1763     - prereq sh-utils (#43065)
1764     - fix some invocations of reboot/halt (#45966)
1765     - fix typo in ifup-wireless
1766     - don't muck with /etc/issue each boot
1767     - big IPv6 update (<pekkas@netcore.fi>)
1768    
1769     * Fri Jul 6 2001 Trond Eivind Glomsrød <teg@redhat.com>
1770     - Add new directories required by new network tool
1771    
1772     * Thu Jul 05 2001 Karsten Hopp <karsten@redhat.de>
1773     - disable hwclock on S390 (no such executable)
1774     - Fix up kernel versioning on binary-only modules (S390)
1775     - don't use newt scripts on S390 console
1776    
1777     * Sat Jul 01 2001 Trond Eivind Glomsrød <teg@redhat.com>
1778     - reenable pump, but make sure dhcpcd is the default. This
1779     way, upgrades of systems without dhcpcd has a better chance at
1780     working.
1781    
1782     * Thu Jun 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
1783     - Disable pump completely
1784    
1785     * Wed Jun 27 2001 Than Ngo <than@redhat.com>
1786     - fix pap/chap authentication for syncppp
1787     - support ippp options
1788    
1789     * Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
1790     - add ifup-wireless
1791    
1792     * Fri Jun 22 2001 Than Ngo <than@redhat.com>
1793     - add support xDSL
1794    
1795     * Thu Jun 21 2001 Bill Nottingham <notting@redhat.com>
1796     - more networking script fixes (#45364)
1797     - add stuff for unmounting /initrd
1798    
1799     * Thu Jun 21 2001 Than Ngo <than@redhat.com>
1800     - add support ISDN
1801    
1802     * Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
1803     - fix extremely broken new network scripts
1804    
1805     * Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
1806     - bump version to 5.89
1807     - make it build
1808    
1809     * Thu May 17 2001 Bill Nottingham <notting@redhat.com>
1810     - don't run ifup ppp0 if ppp-watch gets SIGINT (#40585, ak@cave.hop.stu.neva.ru)
1811     - fix do_netreport (#37716, #39603 <crlf@aeiou.pt>)
1812    
1813     * Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
1814     - copyright: GPL -> license: GPL
1815     - fix a syntax error in lang.csh
1816     - skip commented-out i18n configuration lines in lang.csh
1817    
1818     * Fri May 11 2001 Preston Brown <pbrown@redhat.com>
1819     - new network-scripts infrastructure; ifcfg-lo moved to /etc/sysconfig/networking
1820    
1821     * Wed May 2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.86-1
1822     - support kbd in setsysfont
1823     - bzip2 source
1824    
1825     * Wed Apr 25 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1826     - add further s390 changes:
1827     - ifup-iucv
1828     - mkkerneldoth.s390
1829    
1830     * Tue Apr 24 2001 Than Ngo <than@redhat.com>
1831     - add shutdown UPS into halt (bug #34312)
1832    
1833     * Sat Apr 7 2001 Preston Brown <pbrown@redhat.com>
1834     - broke out kernel.h updater from rc.sysinit into /sbin/mkkerneldoth
1835    
1836     * Fri Apr 6 2001 Bill Nottingham <notting@redhat.com>
1837     - be a little more careful in do_netreport (#34933)
1838    
1839     * Tue Apr 3 2001 Bill Nottingham <notting@redhat.com>
1840     - set umask explicitly to 022 in /etc/init.d/functions
1841    
1842     * Mon Apr 2 2001 Bill Nottingham <notting@redhat.com>
1843     - fix segfault in usernetctl (#34353)
1844    
1845     * Mon Mar 26 2001 Bill Nottingham <notting@redhat.com>
1846     - don't print errors in /etc/init.d/network if kernel.hotplug doesn't exist
1847    
1848     * Thu Mar 22 2001 Erik Troan <ewt@redhat.com>
1849     - take advantage of new swapon behaviors
1850    
1851     * Wed Mar 14 2001 Bill Nottingham <notting@redhat.com>
1852     - add cipe interfaces last (#31597)
1853    
1854     * Tue Mar 13 2001 Bill Nottingham <notting@redhat.com>
1855     - fix typo in ifup (#31627)
1856     - update translation source
1857    
1858     * Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com>
1859     - fix typo in rc.sysinit
1860     - fix ifup-routes not setting DEVICE properly
1861    
1862     * Mon Mar 12 2001 Preston Brown <pbrown@redhat.com>
1863     - Work properly with new quota utilities
1864    
1865     * Mon Mar 5 2001 Bill Nottingham <notting@redhat.com>
1866     - IPv6 fixes (#30506)
1867     - make static-routes handling more sane and consistent (#29500, #29549)
1868     - handle multiple USB controllers *correctly*
1869    
1870     * Wed Feb 28 2001 Nalin Dahyabhai <nalin@redhat.com>
1871     - usernetctl, ppp-watch: cleanups
1872     - netreport: use O_NOFOLLOW
1873     - ifup-ppp: let ppp-watch watch over demand-dialed connections (#28927)
1874    
1875     * Tue Feb 27 2001 Bill Nottingham <notting@redhat.com>
1876     - don't run isapnp on isapnp-enabled 2.4 kernels (part of #29450)
1877     - disable hotplug during network initscript
1878     - don't munge wireless keys in ifup; that will be done with the
1879     PCMCIA wireless stuff
1880     - run sndconfig --mungepnp for non-native-isapnp soundcards
1881     - don't explicitly kill things in init.d/single, init will do it
1882     - don't explicitly load usb-storage; mount the usbdevfs before initializing
1883     host controller modules
1884    
1885     * Wed Feb 21 2001 Bill Nottingham <notting@redhat.com>
1886     - initialize multiple USB controllers if necessary
1887    
1888     * Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
1889     - close extra file descriptors before exec()ing commands in initlog
1890    
1891     * Mon Feb 19 2001 Bill Nottingham <notting@redhat.com>
1892     - fix some substitions in init.d/functions (fixes various killproc issues)
1893     - make sure ipv6 module alias is available if configured
1894     - fix initlog segfaults in popt when called with bogus stuff (#28140)
1895    
1896     * Thu Feb 15 2001 Nalin Dahyabhai <nalin@redhat.com>
1897     - make pidofproc() and killproc() try to use the PID associated with the full
1898     pathname first before killing the daemon by its basename (for daemons that
1899     share the same basename, i.e. "master" in postfix and cyrus-imapd) (#19016)
1900     - fix status() as well
1901    
1902     * Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
1903     - fix init.d/single to work around possible kernel problem
1904    
1905     * Tue Feb 13 2001 Bill Nottingham <notting@redhat.com>
1906     - fix unmounting of loopback stuff (#26439, #14672)
1907    
1908     * Mon Feb 12 2001 Bill Nottingham <notting@redhat.com>
1909     - fix ifup-post so that it will work right when not called from ifup
1910    
1911     * Sat Feb 10 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1912     - add all save changes for s390 s390x that won't break anything
1913     patches are from Oliver Paukstadt @ millenux.com
1914    
1915     * Fri Feb 9 2001 Bill Nottingham <notting@redhat.com>
1916     - muck with the font in lang.csh/lang.sh, but don't spit out errors (#26903)
1917    
1918     * Wed Feb 7 2001 Bill Nottingham <notting@redhat.com>
1919     - ipv6 sync ups (#26502, #25775)
1920     - fix hangs at shutdown (#25744)
1921     - fix ifup-ppp (#26323)
1922    
1923     * Tue Feb 6 2001 Bill Nottingham <notting@redhat.com>
1924     - modify firewall on ifup to allow any new DNS servers through (#25951)
1925     - don't muck with the font in lang.csh/lang.sh (#26349)
1926     - don't display Japanese if we aren't on a pty (#25041)
1927     - load ide-scsi if passed on /proc/cmdline
1928    
1929     * Mon Feb 5 2001 Trond Eivind Glomsrød <teg@redhat.com>
1930     - i18n updates
1931    
1932     * Fri Feb 2 2001 Bill Nottingham <notting@redhat.com>
1933     - actually *ship* the ipv6 (and plusb) files
1934    
1935     * Thu Feb 1 2001 Trond Eivind Glomsrød <teg@redhat.com>
1936     - i18n updates
1937    
1938     * Tue Jan 30 2001 Bill Nottingham <notting@redhat.com>
1939     - various init.d/functions cleanups (#10761, from <mjt@tls.msk.ru>)
1940     - in daemon(), only look at pidfile to determine if process is running
1941     (#17244, others)
1942     - ifup-ppp enhancements (#17388, from <ayn2@cornell.edu>)
1943     - ipv6 support (#23576, originally by Peter Bieringer <pb@bieringer.de>)
1944     - lots of other minor fixes (see ChangeLog)
1945    
1946     * Mon Jan 29 2001 Bill Nottingham <notting@redhat.com>
1947     - add plusb support (#18892, patch from <eric.ayers@compgen.com>)
1948     - don't ignore RETRYTIMEOUT when we never connect (#14071, patch from
1949     <ak@cave.hop.stu.neva.ru>)
1950    
1951     * Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
1952     - quiet LVM setup (#24841)
1953     - fix inability to shutdown cleanly (#24889)
1954    
1955     * Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
1956     - new i18n mechanism
1957    
1958     * Tue Jan 23 2001 Matt Wilson <msw@redhat.com>
1959     - fixed typo in init.d/network - missing | in pipeline
1960    
1961     * Mon Jan 22 2001 Bill Nottingham <notting@redhat.com>
1962     - do LVM setup through normal initscripts mechanisms
1963     - ignore backup files in /etc/sysconfig/network-scripts
1964     - lots of .po file updates
1965    
1966     * Tue Jan 2 2001 Bill Nottingham <notting@redhat.com>
1967     - initial i18n support - originally from Conectiva
1968    
1969     * Mon Dec 11 2000 Bill Nottingham <notting@redhat.com>
1970     - only load sound if persistent DMA buffers are necessary
1971     - fix lots of bugs: #18619, #21187, #21283, #12097
1972     - integrate MAXFAIL option for ppp-watch
1973     - don't load keymaps/fonts on a serial console
1974    
1975     * Tue Nov 21 2000 Karsten Hopp <karsten@redhat.de>
1976     - changed hdparm section in rc.sysinit to allow different
1977     parameters for each disk (if needed) by copying
1978     /etc/sysconfig/harddisks to /etc/sysconfig/harddiskhda (hdb,hdc..)
1979     - fix RFE #20967
1980    
1981     * Tue Oct 31 2000 Than Ngo <than@redhat.com>
1982     - fix the adding default route if GATEWAY=0.0.0.0
1983    
1984     * Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com>
1985     - handle "gw x.x.x.x" as the last pair of flags in ifup-routes (#18804)
1986     - fix top-level makefile install target
1987     - make usernetctl just fall-through if getuid() == 0
1988    
1989     * Sun Sep 3 2000 Florian La Roche <Florian.LaRoche@redhat.com>
1990     - /etc/init.d is already provided by chkconfig
1991    
1992     * Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
1993     - set "holdoff ${RETRYTIMEOUT} ktune" for demand-dialed PPP links
1994    
1995     * Tue Aug 22 2000 Bill Nottingham <notting@redhat.com>
1996     - update documentation (#15475)
1997    
1998     * Tue Aug 22 2000 Than Ngo <than@redhat.de>
1999     - add KDE2 support to prefdm
2000    
2001     * Mon Aug 21 2000 Bill Nottingham <notting@redhat.com>
2002     - add usleep after kill -KILL in pidofproc, works around lockd issues (#14847)
2003     - add some fallback logic to prefdm (#16464)
2004    
2005     * Fri Aug 18 2000 Bill Nottingham <notting@redhat.com>
2006     - don't load usb drivers if they're compiled statically
2007     - don't call ifdown-post twice for ppp (#15285)
2008    
2009     * Wed Aug 16 2000 Bill Nottingham <notting@redhat.com>
2010     - fix /boot/kernel.h generation (#16236, #16250)
2011    
2012     * Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com>
2013     - be more careful about creating files in netreport (#16164)
2014    
2015     * Sat Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
2016     - move documentation for the DEMAND and IDLETIMEOUT values to the right
2017     section of sysconfig.txt
2018    
2019     * Wed Aug 9 2000 Bill Nottingham <notting@redhat.com>
2020     - load agpgart if necessary (hack)
2021     - fix /boot/kernel.h stuff (jakub)
2022    
2023     * Mon Aug 7 2000 Bill Nottingham <notting@redhat.com>
2024     - remove console-tools requirement
2025     - in netfs, start portmap if needed
2026     - cosmetic cleanups, minor tweaks
2027     - don't probe USB controllers
2028    
2029     * Mon Aug 7 2000 Nalin Dahyabhai <nalin@redhat.com>
2030     - fix demand-dialing support for PPP devices
2031     - change updetach back to nodetach
2032    
2033     * Sun Aug 6 2000 Bill Nottingham <notting@redhat.com>
2034     - add RETRYCONNECT option for ifcfg-pppX files (kenn@linux.ie)
2035    
2036     * Wed Jul 26 2000 Bill Nottingham <notting@redhat.com>
2037     - fix unclean shutdown
2038    
2039     * Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
2040     - s/nill/null/g
2041    
2042     * Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
2043     - unmount usb filesystem on halt
2044     - run /sbin/ifup-pre-local if it exists
2045    
2046     * Tue Jul 18 2000 Trond Eivind Glomsrød <teg@redhat.com>
2047     - add "nousb" command line parameter
2048     - fix some warnings when mounting /proc/bus/usb
2049    
2050     * Sat Jul 15 2000 Matt Wilson <msw@redhat.com>
2051     - kill all the PreTransaction stuff
2052     - directory ownership cleanups, add more LSB symlinks
2053     - move all the stuff back in to /etc/rc.d/
2054    
2055     * Thu Jul 13 2000 Bill Nottingham <notting@redhat.com>
2056     - fix == tests in rc.sysinit
2057     - more %pretrans tweaks
2058    
2059     * Thu Jul 13 2000 Jeff Johnson <jbj@redhat.com>
2060     - test if /etc/rc.d is a symlink already in pre-transaction syscalls.
2061    
2062     * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
2063     - implement the %pre with RPM Magic(tm)
2064    
2065     * Sat Jul 8 2000 Bill Nottingham <notting@redhat.com>
2066     - fix it to not follow /etc/rc.d
2067    
2068     * Fri Jul 7 2000 Bill Nottingham <notting@redhat.com>
2069     - fix %pre, again
2070    
2071     * Thu Jul 6 2000 Bill Nottingham <notting@redhat.com>
2072     - tweak %pre back to a mv (rpm is fun!)
2073     - do USB initialization before fsck, so keyboard works if it fails
2074    
2075     * Mon Jul 3 2000 Bill Nottingham <notting@redhat.com>
2076     - rebuild; allow 'fastboot' kernel command line option to skip fsck
2077    
2078     * Mon Jul 03 2000 Nalin Dahyabhai <nalin@redhat.com>
2079     - fix demand-dialing with PPP
2080    
2081     * Sun Jul 02 2000 Trond Eivind Glomsrød <teg@redhat.com>
2082     - don't use tail
2083    
2084     * Thu Jun 28 2000 Trond Eivind Glomsrød <teg@redhat.com>
2085     - add support for USB controllers and HID devices
2086     (mice, keyboards)
2087    
2088     * Tue Jun 27 2000 Trond Eivind Glomsrød <teg@redhat.com>
2089     - add support for EIDE optimization
2090    
2091     * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
2092     - tweak %%pre
2093    
2094     * Wed Jun 21 2000 Preston Brown <pbrown@redhat.com>
2095     - noreplace for adjtime file
2096    
2097     * Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com>
2098     - ifup-ppp: add hooks for demand-dialing PPP
2099     - functions: use basename of process when looking for its PID file
2100    
2101     * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
2102     - move from /etc/rc.d/init.d -> /etc/init.d
2103    
2104     * Tue Jun 13 2000 Bill Nottingham <notting@redhat.com>
2105     - set soft limit, not hard, in daemon function
2106     - /var/shm -> /dev/shm
2107    
2108     * Thu Jun 08 2000 Preston Brown <pbrown@redhat.com>
2109     - use dhcpcd if pump fails.
2110     - use depmod -A (faster)
2111    
2112     * Sun Jun 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2113     - add autologin support to prefdm
2114    
2115     * Thu Jun 1 2000 Bill Nottingham <notting@redhat.com>
2116     - random networking fixes (alias routes, others)
2117     - conf.modules -> modules.conf
2118    
2119     * Thu May 11 2000 Nalin Dahyabhai <nalin@redhat.com>
2120     - fix incorrect grep invocation in rc.sysinit (bug #11267)
2121    
2122     * Wed Apr 19 2000 Bill Nottingham <notting@redhat.com>
2123     - fix lang.csh, again (oops)
2124     - use /poweroff, /halt to determine whether to poweroff
2125    
2126     * Thu Apr 14 2000 Bill Nottingham <notting@redhat.com>
2127     - fix testing of RESOLV_MODS (which shouldn't be used anyways)
2128    
2129     * Tue Apr 04 2000 Ngo Than <than@redhat.de>
2130     - fix overwrite problem of resolv.conf on ippp/ppp/slip connections
2131    
2132     * Mon Apr 3 2000 Bill Nottingham <notting@redhat.com>
2133     - fix typo in functions file
2134     - explicitly set --localtime when calling hwclock if necessary
2135    
2136     * Fri Mar 31 2000 Bill Nottingham <notting@redhat.com>
2137     - fix typo in /etc/rc.d/init.d/network that broke linuxconf (#10472)
2138    
2139     * Mon Mar 27 2000 Bill Nottingham <notting@redhat.com>
2140     - remove compatiblity chkconfig links
2141     - run 'netfs stop' on 'network stop' if necessary
2142    
2143     * Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2144     - Mount /var/shm if required (2.3.99, 2.4)
2145    
2146     * Mon Mar 20 2000 Bill Nottingham <notting@redhat.com>
2147     - don't create resolv.conf 0600
2148     - don't run ps as much (speed issues)
2149     - allow setting of MTU
2150     - other minor fixes
2151    
2152     * Sun Mar 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2153     - Start devfsd if installed and needed (Kernel 2.4...)
2154    
2155     * Wed Mar 8 2000 Bill Nottingham <notting@redhat.com>
2156     - check that network devices are up before bringing them down
2157    
2158     * Wed Mar 8 2000 Jakub Jelinek <jakub@redhat.com>
2159     - update sysconfig.txt
2160    
2161     * Tue Mar 7 2000 Bill Nottingham <notting@redhat.com>
2162     - rerun sysctl on network start (for restarts)
2163    
2164     * Mon Feb 28 2000 Bill Nottingham <notting@redhat.com>
2165     - don't read commented raid devices
2166    
2167     * Mon Feb 21 2000 Bill Nottingham <notting@redhat.com>
2168     - fix typo in resolv.conf munging
2169    
2170     * Thu Feb 17 2000 Bill Nottingham <notting@redhat.com>
2171     - sanitize repair prompt
2172     - initial support for isdn-config stuff
2173    
2174     * Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
2175     - add which as a package dependency (bug #9416)
2176    
2177     * Tue Feb 8 2000 Bill Nottingham <notting@redhat.com>
2178     - fixes for sound module loading
2179    
2180     * Mon Feb 7 2000 Nalin Dahyabhai <nalin@redhat.com>
2181     - check that LC_ALL/LINGUAS and LANG are set before referencing them in lang.csh
2182     - fix check for /var/*/news, work around for bug #9140
2183    
2184     * Fri Feb 4 2000 Nalin Dahyabhai <nalin@redhat.com>
2185     - fix bug #9102
2186    
2187     * Fri Feb 4 2000 Bill Nottingham <notting@redhat.com>
2188     - if LC_ALL/LINGUAS == LANG, don't set them
2189    
2190     * Wed Feb 2 2000 Bill Nottingham <notting@redhat.com>
2191     - fix problems with linuxconf static routes
2192    
2193     * Tue Feb 1 2000 Nalin Dahyabhai <nalin@redhat.com>
2194     - shvar cleaning
2195     - fix wrong default route ip in network-functions
2196    
2197     * Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
2198     - attempt to restore default route if PPP takes it over
2199     - man page fix for ipcalc
2200     - shvar cleaning
2201     - automate maintaining /boot/System.map symlinks
2202    
2203     * Mon Jan 31 2000 Bill Nottingham <notting@redhat.com>
2204     - fix hanging ppp-watch
2205     - fix issues with cleaning of /var/{run,lock}
2206    
2207     * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
2208     - fix pidof calls in pidofproc
2209    
2210     * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
2211     - fix ifup-ipx, don't munge resolv.conf if $DNS1 is already in it
2212    
2213     * Thu Jan 13 2000 Bill Nottingham <notting@redhat.com>
2214     - link popt statically
2215    
2216     * Mon Jan 10 2000 Bill Nottingham <notting@redhat.com>
2217     - don't try to umount /loopfs
2218    
2219     * Mon Dec 27 1999 Bill Nottingham <notting@redhat.com>
2220     - switch to using sysctl
2221    
2222     * Mon Dec 13 1999 Bill Nottingham <notting@redhat.com>
2223     - umount /proc *after* trying to turn off raid
2224    
2225     * Mon Dec 06 1999 Michael K. Johnson <johnsonm@redhat.com>
2226     - improvements in clone device handling
2227     - better signal handling in ppp-watch
2228     - yet another attempt to fix those rare PAP/CHAP problems
2229    
2230     * Sat Nov 28 1999 Bill Nottingham <notting@redhat.com>
2231     - impressive. Three new features, three new bugs.
2232    
2233     * Mon Nov 22 1999 Michael K. Johnson <johnsonm@redhat.com>
2234     - fix more possible failed CHAP authentication (with chat scripts)
2235     - fix ppp default route problem
2236     - added ppp-watch man page, fixed usernetctl man page
2237     - make ifup-ppp work again when called from netcfg and linuxconf
2238     - try to keep ppp-watch from filling up logs by respawning pppd too fast
2239     - handle all linuxconf-style alias files with linuxconf
2240    
2241     * Mon Nov 22 1999 Bill Nottingham <notting@redhat.com>
2242     - load mixer settings for monolithic sound
2243     - man page for ppp-watch
2244     - add ARP variable for ifup
2245     - some i18n fixes
2246    
2247     * Wed Nov 10 1999 Bill Nottingham <notting@redhat.com>
2248     - control stop-a separately from sysrq
2249    
2250     * Mon Nov 08 1999 Michael K. Johnson <johnsonm@redhat.com>
2251     - fix some failed CHAP authentication
2252     - fix extremely unlikely, but slightly possible kill-random-process
2253     bug in ppp-watch
2254     - allow DNS{1,2} in any ifcfg-* file, not just PPP, and
2255     add nameserver entries, don't just replace them
2256     - don't use /tmp/confirm, use /var/run/confirm instead
2257    
2258     * Tue Nov 2 1999 Bill Nottingham <notting@redhat.com>
2259     - fix lang.csh /tmp race oops
2260    
2261     * Wed Oct 27 1999 Bill Nottingham <notting@redhat.com>
2262     - we now ship hwclock on alpha.
2263    
2264     * Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com>
2265     - fix check for serial console, don't use -C argument to fsck
2266     on serial console.
2267    
2268     * Mon Oct 18 1999 Bill Nottingham <notting@redhat.com>
2269     - do something useful with linuxconf 'any' static routes.
2270    
2271     * Tue Oct 12 1999 Matt Wilson <msw@redhat.com>
2272     - added patch from Owen to source i18n configuration before starting prefdm
2273    
2274     * Mon Oct 11 1999 Bill Nottingham <notting@redhat.com>
2275     - support for linuxconf alias files
2276     - add support for Jensen clocks.
2277    
2278     * Tue Oct 5 1999 Bill Nottingham <notting@redhat.com>
2279     - assorted brown paper bag fixes
2280     - check for programs/files before executing/sourcing them
2281     - control stop-a like magic sysrq
2282    
2283     * Thu Sep 30 1999 Bill Nottingham <notting@redhat.com>
2284     - req. e2fsprogs >= 1.15
2285    
2286     * Fri Sep 24 1999 Bill Nottingham <notting@redhat.com>
2287     - munge C locale definitions to en_US
2288     - use fsck's completion bar
2289    
2290     * Thu Sep 23 1999 Michael K. Johnson <johnsonm@redhat.com>
2291     - ppp-watch now always kills pppd pgrp to make sure dialers are dead,
2292     and tries to hang up the modem
2293    
2294     * Tue Sep 21 1999 Bill Nottingham <notting@redhat.com>
2295     - add a DEFRAG_IPV4 option
2296    
2297     * Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
2298     - changed to more modern defaults for PPP connections
2299    
2300     * Mon Sep 20 1999 Bill Nottingham <notting@redhat.com>
2301     - kill processes for umount in halt, too.
2302     - fixes to remove /usr dependencies
2303    
2304     * Fri Sep 17 1999 Bill Nottingham <notting@redhat.com>
2305     - load/save mixer settings in rc.sysinit, halt
2306    
2307     * Mon Sep 13 1999 Michael K. Johnson <johnsonm@redhat.com>
2308     - add --remotename option to wvdial code
2309     - make sure we do not have an earlier version of wvdial that doesn't
2310     know how handle --remotename
2311     - make ppp-watch background itself after 30 seconds even if
2312     connection does not come up, at boot time only, so that a
2313     non-functional PPP connection cannot hang boot.
2314    
2315     * Sun Sep 12 1999 Bill Nottingham <notting@redhat.com>
2316     - a couple of /bin/sh -> /bin/bash fixes
2317     - fix swapoff silliness
2318    
2319     * Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
2320     - chkconfig --del in %preun, not %postun
2321     - use killall5 in halt
2322     - swapoff non-/etc/fstab swap
2323    
2324     * Wed Sep 08 1999 Michael K. Johnson <johnsonm@redhat.com>
2325     - ifdown now synchronous (modulo timeouts)
2326     - several unrelated cleanups, primarily in ifdown
2327    
2328     * Tue Sep 7 1999 Bill Nottingham <notting@redhat.com>
2329     - add an 'unconfigure' sort of thing
2330    
2331     * Mon Sep 06 1999 Michael K. Johnson <johnsonm@redhat.com>
2332     - added ppp-watch to make "ifup ppp*" synchronous
2333    
2334     * Fri Sep 3 1999 Bill Nottingham <notting@redhat.com>
2335     - require lsof
2336    
2337     * Wed Sep 1 1999 Bill Nottingham <notting@redhat.com>
2338     - add interactive prompt
2339    
2340     * Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
2341     - disable magic sysrq by default
2342    
2343     * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
2344     - new NFS unmounting from Bill Rugolsky <rugolsky@ead.dsa.com>
2345     - fix ifup-sl/dip confusion
2346     - more raid startup cleanup
2347     - make utmp group 22
2348    
2349     * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
2350     - pass hostname to pump
2351     - add lang.csh
2352    
2353     * Thu Aug 19 1999 Bill Nottingham <notting@redhat.com>
2354     - more wvdial updates
2355     - fix a *stupid* bug in process reading
2356    
2357     * Fri Aug 13 1999 Bill Nottingham <notting@redhat.com>
2358     - add new /boot/kernel.h boot kernel version file
2359     - new RAID startup
2360    
2361     * Fri Aug 13 1999 Michael K. Johnson <johnsonm@redhat.com>
2362     - use new linkname argument to pppd to make if{up,down}-ppp
2363     reliable -- requires ppp-2.3.9 or higher
2364    
2365     * Mon Aug 2 1999 Bill Nottingham <notting@redhat.com>
2366     - fix typo.
2367     - add 'make check'
2368    
2369     * Wed Jul 28 1999 Michael K. Johnson <johnsonm@redhat.com>
2370     - simple wvdial support for ppp connections
2371    
2372     * Mon Jul 26 1999 Bill Nottingham <notting@redhat.com>
2373     - stability fixes for initlog
2374     - initlog now has a config file
2375     - add alias speedup from dharris@drh.net
2376     - move netfs links
2377     - usleep updates
2378    
2379     * Thu Jul 8 1999 Bill Nottingham <notting@redhat.com>
2380     - remove timeconfig dependency
2381     - i18n fixes from nkbj@image.dk
2382     - move inputrc to setup package
2383    
2384     * Tue Jul 6 1999 Bill Nottingham <notting@redhat.com>
2385     - fix killall links, some syntax errors
2386    
2387     * Fri Jun 25 1999 Bill Nottingham <notting@redhat.com>
2388     - don't make module-info, System.map links
2389     - handle utmpx/wtmpx
2390     - fix lots of bugs in 4.21 release :)
2391    
2392     * Thu Jun 17 1999 Bill Nottingham <notting@redhat.com>
2393     - set clock as soon as possible
2394     - use INITLOG_ARGS everywhere
2395     - other random fixes in networking
2396    
2397     * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
2398     - oops, don't create /var/run/utmp and then remove it.
2399     - stomp RAID bugs flat. Sort of.
2400    
2401     * Mon May 24 1999 Bill Nottingham <notting@redhat.com>
2402     - clean out /var better
2403     - let everyone read /var/run/ppp*.dev
2404     - fix network startup so it doesn't depend on /usr
2405    
2406     * Tue May 11 1999 Bill Nottingham <notting@redhat.com>
2407     - various fixes to rc.sysinit
2408     - fix raid startup
2409     - allow for multi-processor /etc/issues
2410    
2411     * Sun Apr 18 1999 Matt Wilson <msw@redhat.com>
2412     - fixed typo - "Determing" to "Determining"
2413    
2414     * Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
2415     - updated inputrc so that home/end/del work on console, not just X
2416    
2417     * Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
2418     - fix more logic in initlog
2419     - fix for kernel versions in ifup-aliases
2420     - log to /var/log/boot.log
2421    
2422     * Wed Apr 07 1999 Bill Nottingham <notting@redhat.com>
2423     - fix daemon() function so you can specify pid to look for
2424    
2425     * Wed Apr 07 1999 Erik Troan <ewt@redhat.com>
2426     - changed utmp,wtmp to be group writeable and owned by group utmp
2427    
2428     * Tue Apr 06 1999 Bill Nottingham <notting@redhat.com>
2429     - fix loading of consolefonts/keymaps
2430     - three changelogs. three developers. one day. Woohoo!
2431    
2432     * Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com>
2433     - fixed ifup-ipx mix-up over . and _
2434    
2435     * Tue Apr 06 1999 Erik Troan <ewt@redhat.com>
2436     - run /sbin/ifup-local after bringing up an interface (if that file exists)
2437    
2438     * Mon Apr 5 1999 Bill Nottingham <notting@redhat.com>
2439     - load keymaps & console font early
2440     - fixes for channel bonding, strange messages with non-boot network interfaces
2441    
2442     * Sat Mar 27 1999 Cristian Gafton <gafton@redhat.com>
2443     - added sysvinitfiles as a documenattaion file
2444    
2445     * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
2446     - nfsfs -> netfs
2447    
2448     * Mon Mar 22 1999 Bill Nottingham <notting@redhat.com>
2449     - don't source /etc/sysconfig/init if $BOOTUP is already set
2450    
2451     * Fri Mar 19 1999 Bill Nottingham <notting@redhat.com>
2452     - don't run linuxconf if /usr isn't mounted
2453     - set macaddr before bootp
2454     - zero in the /var/run/utmpx file (gafton)
2455     - don't set hostname on ppp/slip (kills X)
2456    
2457     * Wed Mar 17 1999 Bill Nottingham <notting@redhat.com>
2458     - exit ifup if pump fails
2459     - fix stupid errors in reading commands from subprocess
2460    
2461     * Tue Mar 16 1999 Bill Nottingham <notting@redhat.com>
2462     - fix ROFS logging
2463     - make fsck produce more happy output
2464     - fix killproc logic
2465    
2466     * Mon Mar 15 1999 Bill Nottingham <notting@redhat.com>
2467     - doc updates
2468     - support for SYSFONTACM, other console-tools stuff
2469     - add net route for interface if it isn't there.
2470     - fix for a bash/bash2 issue
2471    
2472     * Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
2473     - pam_console lockfile cleanup added to rc.sysinit
2474    
2475     * Sun Mar 14 1999 Bill Nottingham <notting@redhat.com>
2476     - fixes in functions for 'action'
2477     - fixes for pump
2478    
2479     * Wed Mar 10 1999 Bill Nottingham <notting@redhat.com>
2480     - Mmm. Must always remove debugging code. before release. *thwap*
2481     - pump support
2482     - mount -a after mount -a -t nfs
2483    
2484     * Thu Feb 25 1999 Bill Nottingham <notting@redhat.com>
2485     - put preferred support back in
2486    
2487     * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
2488     - fix single-user mode (source functions, close if)
2489    
2490     * Wed Feb 10 1999 Bill Nottingham <notting@redhat.com>
2491     - turn off xdm in runlevel 5 (now a separate service)
2492    
2493     * Thu Feb 4 1999 Bill Nottingham <notting@redhat.com>
2494     - bugfixes (ifup-ppp, kill -TERM, force fsck, hwclock --adjust, setsysfont)
2495     - add initlog support. Now everything is logged (and bootup looks different)
2496    
2497     * Thu Nov 12 1998 Preston Brown <pbrown@redhat.com>
2498     - halt now passed the '-i' flag so that network interfaces disabled
2499    
2500     * Tue Nov 10 1998 Michael K. Johnson <johnsonm@redhat.com>
2501     - handle new linuxconf output for ipaliases
2502    
2503     * Mon Oct 15 1998 Erik Troan <ewt@redhat.com>
2504     - fixed raid start stuff
2505     - added raidstop to halt
2506    
2507     * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
2508     - handle LC_ALL
2509    
2510     * Mon Oct 12 1998 Preston Brown <pbrown@redhat.com>
2511     - adjusted setsysfont to always run setfont, even if only w/default font
2512    
2513     * Tue Oct 06 1998 Cristian Gafton <gafton@redhat.com>
2514     - rc.sysvinit should be working with all kernel versions now
2515     - requires e2fsprogs (for fsck)
2516     - set INPUTRC and LESSCHARSET on linux-lat
2517    
2518     * Wed Sep 16 1998 Jeff Johnson <jbj@redhat.com>
2519     - /etc/rc.d/rc: don't run /etc/rc.d/rcN.d/[KS]??foo.{rpmsave,rpmorig} scripts.
2520     - /etc/rc.d/rc.sysinit: raid startup (Nigel.Metheringham@theplanet.net).
2521     - /sbin/setsysfont: permit unicode fonts.
2522    
2523     * Mon Aug 17 1998 Erik Troan <ewt@redhat.com>
2524     - don't add 'Red Hat Linux' to /etc/issue; use /etc/redhat-release as is
2525    
2526     * Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com>
2527     - paranoia improvements to .rhkmvtag
2528     - if psacct with /sbin/accton, than turn off accounting
2529    
2530     * Tue Jul 7 1998 Jeff Johnson <jbj@redhat.com>
2531     - start/stop run levels changed.
2532     - ipx_configure/ipx_internal_net moved to /sbin.
2533    
2534     * Wed Jul 01 1998 Erik Troan <ewt@redhat.com>
2535     - usernetctl didn't understand "" around USERCTL attribute
2536    
2537     * Wed Jul 1 1998 Jeff Johnson <jbj@redhat.com>
2538     - Use /proc/version to find preferred modules.
2539     - Numerous buglets fixed.
2540    
2541     * Sun Jun 07 1998 Erik Troan <ewt@redhat.com>
2542     - rc.sysinit looks for bootfile= as well as BOOT_IMAGE to set
2543     /lib/modules/preferred symlink
2544    
2545     * Mon Jun 01 1998 Erik Troan <ewt@redhat.com>
2546     - ipcalc should *never* have been setgid anything
2547     - depmod isn't run properly for non-serial numbered kernels
2548    
2549     * Wed May 06 1998 Donnie Barnes <djb@redhat.com>
2550     - added system font and language setting
2551    
2552     * Mon May 04 1998 Michael K. Johnson <johnsonm@redhat.com>
2553     - Added missing files to packagelist.
2554    
2555     * Sat May 02 1998 Michael K. Johnson <johnsonm@redhat.com>
2556     - Added lots of linuxconf support. Should still work on systems that
2557     do not have linuxconf installed, but linuxconf gives enhanced support.
2558     - In concert with linuxconf, added IPX support. Updated docs to reflect it.
2559    
2560     * Fri May 01 1998 Erik Troan <ewt@redhat.com>
2561     - rc.sysinit uses preferred directory
2562    
2563     * Sun Apr 05 1998 Erik Troan <ewt@redhat.com>
2564     - updated rc.sysinit to deal with kernel versions with release numbers
2565    
2566     * Sun Mar 22 1998 Erik Troan <ewt@redhat.com>
2567     - use ipcalc to calculate the netmask if one isn't specified
2568    
2569     * Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
2570     - added and made use of ipcalc
2571    
2572     * Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
2573     - removed unnecessary dhcp log from /tmp
2574    
2575     * Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
2576     - if bootpc fails, take down the device
2577    
2578     * Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
2579     - added check for mktemp failure
2580    
2581     * Thu Feb 05 1998 Erik Troan <ewt@redhat.com>
2582     - fixed support for user manageable cloned devices
2583    
2584     * Mon Jan 12 1998 Michael K. Johnson <johnsonm@redhat.com>
2585     - /sbin/ isn't always in $PATH, so call /sbin/route in ifup-routes
2586    
2587     * Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
2588     - touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys
2589     - the logic for when /var/lock/subsys/kerneld is touched was backwards
2590    
2591     * Tue Dec 30 1997 Erik Troan <ewt@redhat.com>
2592     - tried to get /proc stuff right one more time (uses -t nonfs,proc now)
2593     - added support for /fsckoptions
2594     - changed 'yse' to 'yes' in KERNELD= line
2595    
2596     * Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
2597     - set domainname to "" if none is specified in /etc/sysconfig/network
2598     - fix /proc mounting to get it in /etc/mtab
2599    
2600     * Mon Dec 08 1997 Michael K. Johnson <johnsonm@redhat.com>
2601     - fixed inheritance for clone devices
2602    
2603     * Fri Nov 07 1997 Erik Troan <ewt@redhat.com>
2604     - added sound support to rc.sysinit
2605    
2606     * Fri Nov 07 1997 Michael K. Johnson <johnsonm@redhat.com>
2607     - Added missing "then" clause
2608    
2609     * Thu Nov 06 1997 Michael K. Johnson <johnsonm@redhat.com>
2610     - Fixed DEBUG option in ifup-ppp
2611     - Fixed PPP persistance
2612     - Only change IP forwarding if necessary
2613    
2614     * Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
2615     - removed the skeleton init script
2616     - added the ability to 'nice' daemons
2617    
2618     * Tue Oct 28 1997 Erik Troan <ewt@redhat.com>
2619     - touch /var/lock/subsys/kerneld if it's running, and after mounting /var
2620     - applied dhcp fix
2621    
2622     * Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
2623     - added status|restart to init scripts
2624    
2625     * Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
2626     - touch random seed file before chmod'ing it.
2627    
2628     * Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
2629     - run domainname if NISDOMAIN is set
2630    
2631     * Wed Oct 15 1997 Michael K. Johnson <johnsonm@redhat.com>
2632     - Make the random seed file mode 600.
2633    
2634     * Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
2635     - bring down ppp devices if ifdown-ppp is called while ifup-ppp is sleeping.
2636    
2637     * Mon Oct 13 1997 Erik Troan <ewt@redhat.com>
2638     - moved to new chkconfig conventions
2639    
2640     * Sat Oct 11 1997 Erik Troan <ewt@redhat.com>
2641     - fixed rc.sysinit for hwclock compatibility
2642    
2643     * Thu Oct 09 1997 Erik Troan <ewt@redhat.com>
2644     - run 'ulimit -c 0' before running scripts in daemon function
2645    
2646     * Wed Oct 08 1997 Donnie Barnes <djb@redhat.com>
2647     - added chkconfig support
2648     - made all rc*.d symlinks have missingok flag
2649    
2650     * Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
2651     - fixed network-scripts to allow full pathnames as config files
2652     - removed some old 3.0.3 pcmcia device handling
2653    
2654     * Wed Oct 01 1997 Michael K. Johnson <johnsonm@redhat.com>
2655     - /var/run/netreport needs to be group-writable now that /sbin/netreport
2656     is setguid instead of setuid.
2657    
2658     * Tue Sep 30 1997 Michael K. Johnson <johnsonm@redhat.com>
2659     - Added network-functions to spec file.
2660     - Added report functionality to usernetctl.
2661     - Fixed bugs I introduced into usernetctl while adding clone device support.
2662     - Clean up entire RPM_BUILD_ROOT directory in %clean.
2663    
2664     * Mon Sep 29 1997 Michael K. Johnson <johnsonm@redhat.com>
2665     - Clone device support in network scripts, rc scripts, and usernetctl.
2666     - Disassociate from controlling tty in PPP and SLIP startup scripts,
2667     since they act as daemons.
2668     - Spec file now provides start/stop symlinks, since they don't fit in
2669     the CVS archive.
2670    
2671     * Tue Sep 23 1997 Donnie Barnes <djb@redhat.com>
2672     - added mktemp support to ifup
2673    
2674     * Thu Sep 18 1997 Donnie Barnes <djb@redhat.com>
2675     - fixed some init.d/functions bugs for stopping httpd
2676    
2677     * Tue Sep 16 1997 Donnie Barnes <djb@redhat.com>
2678     - reworked status() to adjust for processes that change their argv[0] in
2679     the process table. The process must still have it's "name" in the argv[0]
2680     string (ala sendmail: blah blah).
2681    
2682     * Mon Sep 15 1997 Erik Troan <ewt@redhat.com>
2683     - fixed bug in FORWARD_IPV4 support
2684    
2685     * Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
2686     - added support for FORWARD_IPV4 variable
2687    
2688     * Thu Sep 11 1997 Donald Barnes <djb@redhat.com>
2689     - added status function to functions along with better killproc
2690     handling.
2691     - added /sbin/usleep binary (written by me) and man page
2692     - changed BuildRoot to /var/tmp instead of /tmp
2693    
2694     * Tue Jun 10 1997 Michael K. Johnson <johnsonm@redhat.com>
2695     - /sbin/netreport sgid rather than suid.
2696     - /var/run/netreport writable by group root.
2697    
2698     - /etc/ppp/ip-{up|down} no longer exec their local versions, so
2699     now ifup-post and ifdown-post will be called even if ip-up.local
2700     and ip-down.local exist.
2701    
2702     * Tue Jun 03 1997 Michael K. Johnson <johnsonm@redhat.com>
2703     - Added missing -f to [ invocation in ksyms check.
2704    
2705     * Fri May 23 1997 Michael K. Johnson <johnsonm@redhat.com>
2706     - Support for net event notification:
2707     Call /sbin/netreport to request that SIGIO be sent to you whenever
2708     a network interface changes status (won't work for brining up SLIP
2709     devices).
2710     Call /sbin/netreport -r to remove the notification request.
2711     - Added ifdown-post, and made all the ifdown scrips call it, and
2712     added /etc/ppp/ip-down script that calls /etc/ppp/ip-down.local
2713     if it exists, then calls ifdown-post.
2714     - Moved ifup and ifdown to /sbin
2715    
2716     * Tue Apr 15 1997 Michael K. Johnson <johnsonm@redhat.com>
2717     - usernetctl put back in ifdown
2718     - support for slaved interfaces
2719    
2720     * Wed Apr 02 1997 Erik Troan <ewt@redhat.com>
2721     - Created ifup-post from old ifup
2722     - PPP, PLIP, and generic ifup use ifup-post
2723    
2724     * Fri Mar 28 1997 Erik Troan <ewt@redhat.com>
2725     - Added DHCP support
2726     - Set hostname via reverse name lookup after configuring a networking
2727     device if the current hostname is (none) or localhost
2728    
2729     * Tue Mar 18 1997 Erik Troan <ewt@redhat.com>
2730     - Got rid of xargs dependency in halt script
2731     - Don't mount /proc twice (unmount it in between)
2732     - sulogin and filesystem unmounting only happened for a corrupt root
2733     filesystem -- it now happens when other filesystems are corrupt as well
2734    
2735     * Tue Mar 04 1997 Michael K. Johnson <johnsonm@redhat.com>
2736     - PPP fixes and additions
2737    
2738     * Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
2739     - Mount proc before trying to start kerneld so we can test for /proc/ksyms
2740     properly.
2741    
2742     * Wed Feb 26 1997 Michael K. Johnson <johnsonm@redhat.com>
2743     - Added MTU for PPP.
2744     - Put PPPOPTIONS at the end of the options string instead of at the
2745     beginning so that they override other options. Gives users more rope...
2746     - Don't do module-based stuff on non-module systems. Ignore errors if
2747     st module isn't there and we try to load it.
2748    
2749     * Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com>
2750     - Changed ifup-ppp and ifdown-ppp not to use doexec, because the argv[0]
2751     provided by doexec goes away when pppd gets swapped out.
2752     - ifup-ppp now sets remotename to the logical name of the device.
2753     This will BREAK current PAP setups on netcfg-managed interfaces,
2754     but we needed to do this to add a reasonable interface-specific
2755     PAP editor to netcfg.
2756    
2757     * Fri Feb 07 1997 Erik Troan <ewt@redhat.com>
2758     - Added usernetctl wrapper for user mode ifup and ifdown's and man page
2759     - Rewrote ppp and slip kill and retry code
2760     - Added doexec and man page

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