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

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

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


Revision 1.1 - (hide annotations) (download)
Tue Feb 12 23:27:20 2013 UTC (11 years, 4 months ago) by slords
Branch: MAIN
CVS Tags: initscripts-9_03_31-2_el6_centos_1
Branch point for: upstream
Upstream import

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

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