/[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.13 - (hide annotations) (download)
Wed Jun 15 05:16:09 2016 UTC (8 years ago) by vip-ire
Branch: MAIN
CVS Tags: initscripts-9_03_53-1_el6_sme_1
Changes since 1.12: +47 -15 lines
* Wed Jun 15 2016 Daniel Berteaud <daniel@firewall-services.com> - 9.03.53-1.sme.1
- Rebase on upstream 9.03.53-1 [SME: 9534]

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

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