/[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.9 - (hide annotations) (download)
Thu Jul 9 19:39:22 2015 UTC (8 years, 10 months ago) by vip-ire
Branch: MAIN
CVS Tags: initscripts-9_03_46-2_el6_sme_1
Changes since 1.8: +63 -24 lines
* Thu Jul 9 2015 Daniel Berteaud <daniel@firewall-services.com> - 9.03.46-2.sme.1
- Rebase on upstream 9.03.46 [SME: 8658]

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

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