/[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.3 - (hide annotations) (download)
Sat Mar 9 03:31:44 2013 UTC (11 years, 2 months ago) by slords
Branch: MAIN
CVS Tags: initscripts-9_03_38-1_el6_sme
Changes since 1.2: +41 -13 lines
* Fri Mar 8 2013 Shad L. Lords <slords@mail.com> - 9.03.38-1.el6.sme
- Add hack for running rc7.d script during runlevel 4 [SME: 7217]

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

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