/[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.8 - (show annotations) (download)
Tue Nov 11 21:49:45 2014 UTC (9 years, 6 months ago) by vip-ire
Branch: MAIN
CVS Tags: initscripts-9_03_40-2_3_el6_sme
Changes since 1.7: +6 -1 lines
* Tue Nov 11 2014 Daniel Berteaud <daniel@firewall-services.com> - 9.03.40-2.3.sme
- Make slapd service an alias for ldap [SME: 8635]

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

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