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

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

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


Revision 1.1.2.1 - (hide annotations) (download)
Sat Mar 9 03:27:52 2013 UTC (11 years, 3 months ago) by slords
Branch: upstream
CVS Tags: initscripts-9_03_38-1_el6_centos
Changes since 1.1: +40 -12 lines
Upstream import

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

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