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

Contents of /rpms/initscripts/sme9/initscripts.spec

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


Revision 1.5 - (show annotations) (download)
Sun Dec 15 01:17:14 2013 UTC (10 years, 5 months ago) by wellsi
Branch: MAIN
CVS Tags: initscripts-9_03_40-2_el6_sme
Changes since 1.4: +34 -10 lines
* Sat Dec 14 2013 Ian Wells <esmith@wellsi.com> - 9.03.40-2.sme
- Add hack for running rc7.d script during runlevel 4 [SME: 7217]
- Roll in CentOS Branding

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

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