/[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.18 - (hide annotations) (download)
Sat Sep 17 21:29:55 2011 UTC (12 years, 10 months ago) by slords
Branch: MAIN
CVS Tags: initscripts-8_45_38-2_el5_sme
Changes since 1.17: +15 -1 lines
* Sat Sep 17 2011 Shad L. Lords <slords@mail.com> 8.45.38-2.sme
- Exit with zero exit status for services not listed in configuration
  database to avoid failures in post scriptlets [SME: 1653]
- Merge in SME Server /sbin/e-smith/service wrapper so that only
  initscripts which exist in run-level 7 can be run. This ensures
  that the supervised service is run, if one exists, and protects
  against running "service httpd restart" [SME: 61, 1495]

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

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