/[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.2 - (show annotations) (download)
Tue Feb 12 23:31:56 2013 UTC (11 years, 4 months ago) by slords
Branch: MAIN
CVS Tags: initscripts-9_03_31-2_el6_sme_2
Changes since 1.1: +6 -1 lines
* Tue Feb 12 2013 Shad L. Lords <slords@mail.com> - 9.03.31-2.1.el6.sme.2
- Add hack for running rc7.d script during runlevel 4 [SME: 7217]

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

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