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

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