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

Contents of /rpms/initscripts/sme8/initscripts.spec

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


Revision 1.19 - (show annotations) (download)
Fri Mar 9 02:27:35 2012 UTC (12 years, 5 months ago) by slords
Branch: MAIN
CVS Tags: initscripts-8_45_42-1_el5_sme
Changes since 1.18: +15 -7 lines
* Thu Mar 8 2012 Shad L. Lords <slords@mail.com> 8.45.42-1.sme
- Exit with zero exit status for services not listed in configuration
  database to avoid failures in post scriptlets [SME: 1653]
- Merge in SME Server /sbin/e-smith/service wrapper so that only
  initscripts which exist in run-level 7 can be run. This ensures
  that the supervised service is run, if one exists, and protects
  against running "service httpd restart" [SME: 61, 1495]

1 Summary: The inittab file and the /etc/init.d scripts.
2 Name: initscripts
3 Version: 8.45.42
4 # ppp-watch is GPLv2+, everything else is GPLv2
5 License: GPLv2 and GPLv2+
6 Group: System Environment/Base
7 Release: 1%{?dist}
8 Source: initscripts-%{version}.tar.bz2
9 # git source repository
10 Patch10: initscripts-centos-branding.patch
11
12 # SME specific patches
13 Patch1001: initscripts-8.45.38-smepatches.patch
14
15 URL: http://git.fedorahosted.org/git/initscripts.git
16 BuildRoot: /%{_tmppath}/%{name}-%{version}-%{release}-root
17 Requires: mingetty, /bin/awk, /bin/sed, mktemp, e2fsprogs >= 1.15
18 Requires: /sbin/sysctl, syslog
19 Requires: /sbin/fuser, /bin/grep
20 Requires: module-init-tools
21 Requires: util-linux >= 2.10s-11, mount >= 2.11l
22 Requires: bash >= 3.0, SysVinit >= 2.85-38
23 Requires: /sbin/ip, /sbin/arping, net-tools
24 Requires: /etc/redhat-release, dev
25 Requires: ethtool >= 1.8-2, /sbin/runuser
26 Requires: udev >= 078-1
27 Conflicts: mkinitrd < 4.0, kernel < 2.6.12
28 Conflicts: ypbind < 1.6-12, psacct < 6.3.2-12, kbd < 1.06-19, lokkit < 0.50-14
29 Conflicts: dhclient < 3.0.3-7
30 Conflicts: tcsh < 6.13-5
31 Conflicts: xorg-x11, glib2 < 2.11.1-2
32 Obsoletes: rhsound sapinit
33 Obsoletes: hotplug
34 Prereq: /sbin/chkconfig, /usr/sbin/groupadd, /bin/sed, coreutils
35 BuildRequires: glib2-devel popt gettext pkgconfig
36
37 %description
38 The initscripts package contains the basic system scripts used to boot
39 your CentOS system, change runlevels, and shut the system down
40 cleanly. Initscripts also contains the scripts that activate and
41 deactivate most network interfaces.
42
43 %prep
44 %setup -q
45 %patch10 -p1
46
47 # SME specific patches
48 %patch1001 -p1
49
50 %build
51 make
52
53 %install
54 rm -rf $RPM_BUILD_ROOT
55 make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install
56
57 %find_lang %{name}
58
59 %ifnarch s390 s390x
60 rm -f \
61 $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-ctc \
62 $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-iucv \
63 $RPM_BUILD_ROOT/etc/udev/rules.d/54-cu3088-fix.rules \
64 $RPM_BUILD_ROOT/etc/udev/rules.d/55-ccw.rules \
65 $RPM_BUILD_ROOT/lib/udev/ccw_init
66 %else
67 rm -f \
68 $RPM_BUILD_ROOT/etc/rc.d/rc.sysinit.s390init \
69 $RPM_BUILD_ROOT/etc/sysconfig/init.s390
70 %endif
71
72 %pre
73 /usr/sbin/groupadd -g 22 -r -f utmp
74
75 %post
76 touch /var/log/wtmp /var/run/utmp /var/log/btmp
77 chown root:utmp /var/log/wtmp /var/run/utmp /var/log/btmp
78 chmod 664 /var/log/wtmp /var/run/utmp
79 chmod 600 /var/log/btmp
80
81 /sbin/chkconfig --add netfs
82 /sbin/chkconfig --add network
83 /sbin/chkconfig --add netconsole
84 /sbin/chkconfig --add rawdevices
85
86
87 %preun
88 if [ $1 = 0 ]; then
89 /sbin/chkconfig --del netfs
90 /sbin/chkconfig --del network
91 /sbin/chkconfig --del netconsole
92 /sbin/chkconfig --del rawdevices
93 fi
94
95 %triggerun -- initscripts < 7.62
96 /sbin/chkconfig --del random
97 exit 0
98
99 %clean
100 rm -rf $RPM_BUILD_ROOT
101
102 %files -f %{name}.lang
103 %defattr(-,root,root)
104 %dir /etc/sysconfig/network-scripts
105 %config(noreplace) %verify(not md5 mtime size) /etc/adjtime
106 %config(noreplace) /etc/sysconfig/init
107 %config(noreplace) /etc/sysconfig/netconsole
108 %config(noreplace) /etc/sysconfig/readonly-root
109 /etc/sysconfig/network-scripts/ifdown
110 /sbin/ifdown
111 %config /etc/sysconfig/network-scripts/ifdown-post
112 /etc/sysconfig/network-scripts/ifup
113 /sbin/ifup
114 %dir /etc/sysconfig/console
115 %dir /etc/sysconfig/modules
116 %dir /etc/sysconfig/networking
117 %dir /etc/sysconfig/networking/devices
118 %dir /etc/sysconfig/networking/profiles
119 %dir /etc/sysconfig/networking/profiles/default
120 %config(noreplace) /etc/sysconfig/rawdevices
121 %config /etc/sysconfig/network-scripts/network-functions
122 %config /etc/sysconfig/network-scripts/network-functions-ipv6
123 %config /etc/sysconfig/network-scripts/init.ipv6-global
124 %config /etc/sysconfig/network-scripts/ifcfg-lo
125 %config /etc/sysconfig/network-scripts/ifup-ipx
126 %config /etc/sysconfig/network-scripts/ifup-post
127 %config /etc/sysconfig/network-scripts/ifdown-ppp
128 %config /etc/sysconfig/network-scripts/ifdown-sl
129 %config /etc/sysconfig/network-scripts/ifup-ppp
130 %config /etc/sysconfig/network-scripts/ifup-sl
131 %config /etc/sysconfig/network-scripts/ifup-routes
132 %config /etc/sysconfig/network-scripts/ifdown-routes
133 %config /etc/sysconfig/network-scripts/ifup-plip
134 %config /etc/sysconfig/network-scripts/ifup-plusb
135 %config /etc/sysconfig/network-scripts/ifup-bnep
136 %config /etc/sysconfig/network-scripts/ifdown-bnep
137 %config /etc/sysconfig/network-scripts/ifup-eth
138 %config /etc/sysconfig/network-scripts/ifdown-eth
139 %config /etc/sysconfig/network-scripts/ifup-ipv6
140 %config /etc/sysconfig/network-scripts/ifdown-ipv6
141 %config /etc/sysconfig/network-scripts/ifup-ipsec
142 %config /etc/sysconfig/network-scripts/ifdown-ipsec
143 %config /etc/sysconfig/network-scripts/ifup-sit
144 %config /etc/sysconfig/network-scripts/ifdown-sit
145 %config /etc/sysconfig/network-scripts/ifup-tunnel
146 %config /etc/sysconfig/network-scripts/ifdown-tunnel
147 %config /etc/sysconfig/network-scripts/ifup-aliases
148 %config /etc/sysconfig/network-scripts/ifup-ippp
149 %config /etc/sysconfig/network-scripts/ifdown-ippp
150 %config /etc/sysconfig/network-scripts/ifup-wireless
151 /etc/sysconfig/network-scripts/ifup-isdn
152 /etc/sysconfig/network-scripts/ifdown-isdn
153 /etc/sysconfig/network-scripts/net.hotplug
154 %ifarch s390 s390x
155 %config /etc/sysconfig/network-scripts/ifup-ctc
156 %config /etc/sysconfig/network-scripts/ifup-iucv
157 %endif
158 /etc/rwtab
159 %dir /etc/rwtab.d
160 /etc/udev/rules.d/*
161 %config /etc/X11/prefdm
162 %config(noreplace) /etc/inittab
163 %dir /etc/rc.d
164 %dir /etc/rc.d/rc[0-9].d
165 %config(missingok) /etc/rc.d/rc[0-9].d/*
166 /etc/rc[0-9].d
167 /etc/rc
168 %dir /etc/rc.d/init.d
169 /etc/rc.local
170 /etc/rc.sysinit
171 %config /etc/rc.d/init.d/*
172 %config /etc/rc.d/rc
173 %config(noreplace) /etc/rc.d/rc.local
174 %config /etc/rc.d/rc.sysinit
175 %config(noreplace) /etc/sysctl.conf
176 %config /etc/profile.d/lang.sh
177 %config /etc/profile.d/lang.csh
178 /usr/sbin/sys-unconfig
179 /sbin/setsysfont
180 /bin/doexec
181 /bin/ipcalc
182 /bin/usleep
183 %attr(4755,root,root) /usr/sbin/usernetctl
184 /sbin/consoletype
185 /sbin/fstab-decode
186 /sbin/genhostid
187 /sbin/getkey
188 %attr(2755,root,root) /sbin/netreport
189 /sbin/initlog
190 /lib/udev/rename_device
191 %ifarch s390 s390x
192 /lib/udev/ccw_init
193 %endif
194 /sbin/service
195 /sbin/ppp-watch
196 %{_mandir}/man*/*
197 %dir %attr(775,root,root) /var/run/netreport
198 %dir /etc/ppp
199 %dir /etc/ppp/peers
200 %config /etc/ppp/ip-up
201 %config /etc/ppp/ip-down
202 %config /etc/ppp/ip-up.ipv6to4
203 %config /etc/ppp/ip-down.ipv6to4
204 %config /etc/ppp/ipv6-up
205 %config /etc/ppp/ipv6-down
206 %config /etc/initlog.conf
207 %doc sysconfig.txt sysvinitfiles ChangeLog static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6
208 /var/lib/stateless
209 %ghost %attr(0600,root,utmp) /var/log/btmp
210 %ghost %attr(0664,root,utmp) /var/log/wtmp
211 %ghost %attr(0664,root,utmp) /var/run/utmp
212
213 %changelog
214 * Thu Mar 8 2012 Shad L. Lords <slords@mail.com> 8.45.42-1.sme
215 - Exit with zero exit status for services not listed in configuration
216 database to avoid failures in post scriptlets [SME: 1653]
217 - Merge in SME Server /sbin/e-smith/service wrapper so that only
218 initscripts which exist in run-level 7 can be run. This ensures
219 that the supervised service is run, if one exists, and protects
220 against running "service httpd restart" [SME: 61, 1495]
221
222 * Mon Dec 19 2011 Lukas Nykryn <lnykryn@redhat.com> 8.45.42-1
223 - changed exchange_mode to "main, aggressive" (#435274)
224
225 * Fri Dec 2 2011 Lukas Nykryn <lnykryn@redhat.com> 8.45.41-1
226 - fix check for dhcp6c pid (#568896)
227
228 * Tue Nov 22 2011 Lukas Nykryn <lnykryn@redhat.com> 8.45.40-1
229 - exit arping on first response (#744734)
230
231 * Tue Nov 01 2011 Petr Lautrbach <plautrba@redhat.com> 8.45.39-1
232 - suppress remove error message during boot (#679998)
233 - fix logic error with removing arp_ip_target (#745681)
234
235 * Fri Jun 24 2011 Bill Nottingham <notting@redhat.com> 8.45.38-2
236 - don't use existing LANG when in startx/xinit (#713988)
237
238 * Tue Jun 07 2011 Petr Lautrbach <plautrba@redhat.com> 8.45.38-1
239 - revert patch from #705236
240
241 * Tue Jun 07 2011 Petr Lautrbach <plautrba@redhat.com> 8.45.37-1
242 - add /etc/sysctl.d/ support
243 Resolves: rhbz#624385
244
245 * Wed Jun 01 2011 Harald Hoyer <harald@redhat.com> 8.45.36-1
246 - add net_log
247 Resolves: rhbz#507515
248 - do not umount mount points with nfs in the path
249 Resolves: rhbz#703203
250 - remove /var/run/subsys/rhsm on startup
251 Resolves: rhbz#705236
252
253 * Wed Apr 27 2011 Harald Hoyer <harald@redhat.com> 8.45.35-2
254 - fixed support "#" in interface names
255
256 * Tue Apr 19 2011 Harald Hoyer <harald@redhat.com> 8.45.35-1
257 - fix VLAN configs with non-numeric interface names
258 Resolves: rhbz#462095
259 - do not ignore IPv6 aliases
260 Resolves: rhbz#612877
261 - support vlan tag 0
262 Resolves: rhbz#624704
263 - clarify comment of checkpid()
264 Resolves: rhbz#637176
265 - specify DEVICETYPE for InfiniBand
266 Resolves: rhbz#648524
267 - fix grep in lang.csh
268 Resolves: rhbz#649995
269 - support "#" in interface names
270 Resolves: rhbz#664091
271 - fixed sysctl calls fail with VLANs
272 Resolves: rhbz#665601
273 - fixed loop for switched MACs
274 Resolves: rhbz#669728
275 - fixed dmraid output parsing
276 Resolves: rhbz#671386
277 - fixed MASTER in double quotes
278 Resolves: rhbz#674221
279 - don't do force/lazy umount for the first nfs umount
280 Resolves: rhbz#676851 rhbz#687890
281 - fixed DHCPv6 if no IPv4 address configured
282 Resolves: rhbz#684909
283 - disable link checking when PERSISTENT_DHCLIENT is set
284 Resolves: rhbz#685038
285 - no more noisy output for iscsid check during shutdown or reboot
286 Resolves: rhbz#687849
287 - clarified mount option in netfs
288 Resolves: rhbz#689898
289
290 * Tue Apr 12 2011 Harald Hoyer <harald@redhat.com> 8.45.34-1
291 - if $LANG is set, don't override it
292 Resolves: rhbz#692893
293 - fix arp_ip_target for ifup/ifdown
294 Resolves: rhbz#604669
295 - add udev rules for OSX Devices (1731/2)
296 Resolves: rhbz#653621
297
298 * Wed Oct 13 2010 Harald Hoyer <harald@redhat.com> 8.45.33-1
299 - don't turn of net on shutdown if iscsi is running
300 Resolves: rhbz#583218
301
302 * Mon Sep 13 2010 Harald Hoyer <harald@redhat.com> 8.45.32-1
303 - readded missing 54-cu3088-fix.rules
304 Related: rhbz#475721
305
306 * Mon Sep 13 2010 Harald Hoyer <harald@redhat.com> 8.45.31-1
307 - do not killall racoon with the full path
308 Resolves: rhbz#567295
309 - fixed the interactive startup keys in translation
310 Resolves: rhbz#566579
311 - do not clear the environment for daemon()
312 Resolves: rhbz#564093
313 - call unicode_start with $UNIMAP instead of $SYSFONTACM
314 Resolves: rhbz#557089
315 - fixed the network interface name grep in checks
316 Resolves: rhbz#538863
317 - make /var/lib/xend a bind mount for read-only root systems
318 Resolves: rhbz#526046
319 - do not try to activate individual dmraid subsets
320 Resolves: rhbz#524356
321 - create /var/run/utmp* /var/log/wtmp* with the correct selinux context
322 Resolves: rhbz#519748
323 - load the bonding driver, if bonding options are present in the ifcfg file
324 Resolves: rhbz#516569
325 - run quotacheck after the local filesystems have been mounted
326 Resolves: rhbz#499207
327 - add DHCP_HOSTNAME documentation to sysconfig.txt
328 Resolves: rhbz#498052
329 - remove /var/run/dovecot/* also (not only /var/run/dovecot/*/*)
330 Resolves: rhbz#492994
331
332 * Sat Jul 13 2009 Harald Hoyer <harald@redhat.com> 8.45.30-2
333 - fix raw path in initscript (#472891)
334 - remove deprecation comments (#472891)
335 - applied missing ipcalc patch for IPv6 address validation (#464268)
336 - Resolves: rhbz#472891 rhbz#464268
337
338 * Tue Jul 07 2009 Phil Knirsch <pknirsch@redhat.com> 8.45.29-3
339 - Final fixes for IP address validation (#464268)
340 - Added required 54-cu3088-fix.rules udev rules file (#475721)
341 - Resolves: #464268,#475721
342
343 * Tue Jun 16 2009 Harald Hoyer <harald@redhat.com> 8.45.29-1
344 - cleanup /var/run/libvirt (#505600)
345 - Resolves: rhbz#505600
346
347 * Thu May 14 2009 Harald Hoyer <harald@redhat.com> 8.45.28-1
348 - fixed "Determine reboot/halt via existing INIT_HALT environment variable. (#475006)
349 - Resolves: rhbz#475006
350
351 * Wed May 06 2009 Harald Hoyer <harald@redhat.com> 8.45.27-1
352 - undeprecate rawdevices (#472891)
353 - Resolves: rhbz#472891
354
355 * Mon May 04 2009 Harald Hoyer <harald@redhat.com> 8.45.26-1
356 - add md activation before lvm/device-mapper in netfs (#480627)
357 - fixed SUBCHANNEL grep for s390
358 - Move the bridge member handling later in the ifdown sequence (#463325, Sean E. Millichamp <sean@bruenor.org>)
359 - Allow changing of VLAN type even if the module is already loaded. (#495053, <pietro@bertera.it>)
360 - add gfs2 to rc.sysinit mount (#494963)
361 - support ETHTOOL_OPTS on bridge devices (#493255, <bbaetz@acm.org>)
362 - Add vlan support for s390 HSI interfaces. (#490584)
363 - Don't re-init an existing device, it causes errors. (#484411, <jpayne@redhat.com>)
364 - Remove arp_ip_target on ifdown for bonding devices. (#483711)
365 - Don't unmount the nfsd filesystem when unmounting nfs client mounts. (#481794, <sprabhu@redhat.com>)
366 - Bring up ipsec interfaces last. (#481733)
367 - Break deadlock by explicitly handling alias for CTC and IUCV (#475721)
368 - Determine reboot/halt via existing INIT_HALT environment variable. (#475006)
369 - Add some docs on BONDING_OPTS. (#472480)
370 - Don't say that we're shutting off crypto if we aren't actually doing it. (#471944)
371 - remove empty bridges (#463325)
372 - Add a address check capability for IPv4 and IPv6 addresses. (#464268)
373 - fail if HWADDR specified in ifcfg is not present in the system (#487718)
374 - fix ifdown of vlan iface which is a bridge member (#481557)
375 - add proper return codes for /etc/init.d/network (#481002)
376 - fixed brigde setup (bug #463014)
377 - Add an option for consoletype to always return 0. (#453798, <notting@redhat.com>)
378 - Use the pidfile before running pidof in status(). (#440658)
379 - Allow passing of arguments to dhcp6c (#437949, <pekkas@netcore.fi>)
380 - Remove /.suspended as well on boot (#270861)
381 - Allow use of either ESP only or AH only (#251494, <stijn.tintel@x-tend.be>)
382 - Resolves: rhbz#251494,rhbz#270861,rhbz#437949,rhbz#440658,rhbz#453798,
383 rhbz#463014,rhbz#463325,rhbz#464268,rhbz#471944,rhbz#472480,
384 rhbz#475006,rhbz#475721,rhbz#475770,rhbz#480627,rhbz#481002,
385 rhbz#481557,rhbz#481733,rhbz#481794,rhbz#483711,rhbz#484411,
386 rhbz#487718,rhbz#490584,rhbz#493255,rhbz#494963,rhbz#495053
387
388 * Wed Nov 12 2008 Harald Hoyer <harald@redhat.com> 8.45.25-1
389 - fixed SUBCHANNEL grep statement (bug #459044)
390 - Resolves: rhbz#459044
391
392 * Wed Nov 12 2008 Harald Hoyer <harald@redhat.com> 8.45.24-1
393 - fixed SUBCHANNEL grep statement (bug #459044)
394 - Resolves: rhbz#459044
395
396 * Wed Nov 12 2008 Harald Hoyer <harald@redhat.com> 8.45.23-1
397 - fixed SUBCHANNEL grep statement (bug #459044)
398 - Resolves: rhbz#459044
399
400 * Mon Nov 10 2008 Harald Hoyer <harald@redhat.com> 8.45.22-1
401 - refined SUBCHANNEL grep statement (bug #459044)
402 - blkid has a -l option to pick a single device. Use it. (#470027)
403 - don't mkswap on halt (#469823)
404 - fixed bonding arp_ip_target handling (#467954) (Darcy Sherwood)
405 - Resolves: rhbz#459044, rhbz#470027, rhbz#469823, rhbz#467954
406
407 * Tue Oct 14 2008 Harald Hoyer <harald@redhat.com> 8.45.21-1
408 - mount encrypted logical volumes during boot (#466115, Bill Nottingham)
409 - Resolves: #466115
410
411 * Tue Sep 16 2008 Harald Hoyer <harald@redhat.com> 8.45.20-1
412 - changes to init scripts to better support stateless (#433702, <ahecox@redhat.com>)
413 - call logger with full path (#447928, Mihai Vintila)
414 - add a udevsettle before mounting _netdev devices (#452866, <bmr@redhat.com>)
415 - reduce device initialization overhead for ccw devices (#437110, Glen Johnson)
416 - Resolves: rhbz#433702 rhbz#452866 rhbz#447928 rhbz#437110
417
418 * Mon Mar 3 2008 Bill Nottingham <notting@redhat.com> 8.45.19.EL-1
419 - also skip network shutdown if there is a '_rnetdev' root device (part of #435358, <pjones@redhat.com>)
420
421 * Thu Feb 07 2008 Bill Nottingham <notting@redhat.com>, Harald Hoyer <harald@redhat.com> 8.45.18.EL-1
422 - IKE_DHGROUP is now an option for IPsec configuration files, which allows
423 to set the dh group used during PHASE 1 of IPsec SA (#251506)
424 - arp_ip_target can now be used with a comma seperated IP list in BONDING_OPTS (#288151)
425 - genhostid now generates only 32 bit hostids on 64 bit systems (#306811)
426 - the check for the need of remounting the root file system read-writable
427 is now refined (#334171)
428 - quoted SUBCHANNELS and HWADDR options in network configuration files are
429 now handled properly (#351291)
430 - support for resuming from an encrypted swap has been added (#360071)
431 - rc.sysinit now executes the proper configuration tools, if /.unconfigured
432 is present (#426372)
433 - Resolves: rhbz#251506 rhbz#288151 rhbz#306811 rhbz#334171 rhbz#351291 rhbz#360071 rhbz#426372
434
435 * Tue Aug 7 2007 Bill Nottingham <notting@redhat.com> 8.45.17.EL-1
436 - fix netconsole service status (#223742)
437
438 * Fri Jun 22 2007 Bill Nottingham <notting@redhat.com> 8.45.16.EL-1
439 - init.d/network: add support for VLAN_PLUS_VID_NO_PAD vlans (#229285)
440 - network-functions: fix logic error in install_bonding_driver (#229643)
441 - add init script for netconsole (#223742)
442 - ifup-eth: set 'primary' later for bonding devices (#236897, <agospoda@redhat.com>)
443 - init.d/halt: don't shut down the network in kexec (#223932, <mchristi@redhat.com>)
444
445 * Mon Jan 15 2007 Bill Nottingham <notting@redhat.com> 8.45.14.EL-1
446 - set MACADDR, if specified, before bringing up bonding master/slaves (#218792)
447
448 * Thu Jan 4 2007 Bill Nottingham <notting@redhat.com> 8.45.13.EL-1
449 - release bonding slaves properly (#220525)
450
451 * Thu Dec 14 2006 Bill Nottingham <notting@redhat.com> 8.45.12.EL-1
452 - translation updates: ml, mr, zh_CN, zh_TW (#216097)
453
454 * Fri Dec 1 2006 Bill Nottingham <notting@redhat.com> 8.45.11.EL-1
455 - translation updates: bn, fr, hi, ko, ml, te, zh_CN, zh_TW (#216097)
456
457 * Tue Nov 28 2006 Bill Nottingham <notting@redhat.com> 8.45.10.EL-1
458 - add a step to rename any temporarily renamed devices (#208740, #204803, #214817)
459 - rc.sysinit: fix reversed dmraid test (#216490)
460 - translation updates (#216097)
461 - don't automatically reload modules on module reomvals (#211474)
462 - don't unmount network file systems (#217625)
463
464 * Fri Nov 3 2006 Bill Nottingham <notting@redhat.com> 8.45.9.EL-1
465 - fix ppc limits (#184820)
466 - handle sinhalese as well (#212438)
467
468 * Wed Nov 1 2006 Bill Nottingham <notting@redhat.com> 8.45.7.EL-1
469 - fix gdm in CJKI (#209579, #213196)
470 - rename_device: correctly ignore backup interface files
471 - mount tmpfs with -n (#213132)
472
473 * Mon Oct 30 2006 Bill Nottingham <notting@redhat.com> 8.45.6.EL-1
474 - further refinement of the SUBCHANNELS support (#204803)
475
476 * Fri Oct 27 2006 Bill Nottingham <notting@redhat.com> 8.45.5.EL-1
477 - fix handling of undisplayable locales on the console some more (#209579, #212438)
478 - use SUBCHANNEL as the primary identifier for s390 networking (#204803)
479
480 * Thu Oct 19 2006 Bill Nottingham <notting@redhat.com> 8.45.4.EL-1
481 - don't set CJKI as the language on virtual consoles (#209579)
482 - use dmraid.static in rc.sysinit (#211297)
483 - use sysfs interface for bonding, so multiple bonds work again (#202443, <agospoda@redhat.com>)
484
485 * Mon Oct 16 2006 Bill Nottingham <notting@redhat.com> 8.45.3.EL-1
486 - remove early-login code
487 - Handle "nodmraid" and "nompath" command line options (#209377, <pjones@redhat.com>)
488 - translation updates: da, fi, zh_CN, ja, ml, ms
489 - restorecon on moved dhclient lease file (#209853)
490 - set different limits for shmmax, etc. based on arch (#184820)
491
492 * Fri Oct 6 2006 Bill Nottingham <notting@redhat.com> 8.45-1
493 - lang.csh/lang.sh - do *not* stty iutf8; too much chaos with SIGTTOU
494 (reverts: #186961; fixes #209469)
495 - translation updates: ms
496
497 * Wed Oct 4 2006 Bill Nottingham <notting@redhat.com> 8.44-1
498 - separate tmpfs-usage for state from readonly-root
499 - set keymap correctly in non-utf8 locale (#167363)
500 - setsysfont: run unicode_stop if in non-unicode locale
501 - lang.csh/lang.sh: set iutf8 if appropriate (#186961)
502 - lang.csh/lang.sh: handle non-utf8 locales correctly (#200100)
503 - rc.sysinit: redirect stderr from setsysfont (#209204, indirectly)
504 - rwtab: fix iscsi file location (#208864)
505 - translation updates: el, da, as, or
506 - fix stateless updates (#206331, <law@redhat.com>)
507
508 * Wed Sep 27 2006 Bill Nottingham <notting@redhat.com> 8.43-1
509 - move ccwgroup initialization to a udev rule (should fix #199139,
510 #199655, #169161)
511 - init.d/functions: don't write to gdmfifo
512 - remove unused-since-RHL-7 consolechars code, update docs (#206106)
513 - stateless updates (#206331, <law@redhat.com>)
514 - translation updates (el, ms, hr, sl)
515
516 * Thu Sep 21 2006 Bill Nottingham <notting@redhat.com> 8.42-1
517 - run rc.sysinit, /etc/rc in monitor mode (part of #184340)
518 - use a better check for 'native' services (#190989, #110761, adapted
519 from <matthias@rpmforge.net>)
520
521 * Tue Sep 19 2006 Bill Nottingham <notting@redhat.com> 8.41-1
522 - fix network ipv6 hang (#207137, others)
523 - rc.sysinit: change blkid.tab path to /etc/blkid/blkid.tab
524 - rename_device: reset DEVPATH also when renaming (#206884, <phil@fifi.org>)
525 - sysconfig.txt: clarify onboot/onparent usage
526
527 * Fri Sep 15 2006 Bill Nottingham <notting@redhat.com> 8.40-1
528 - translation updates
529 - rename_device: use '__tmpXXXX' instead of 'devXXXX' as a temporary device
530 name to avoid any realistic namespace clashes
531 - rc.sysinit: set default affinity if specified on commandline (#203359)
532 - always pass path to '.' (#206035)
533 - run setsysfont, loadkeys always when /dev/tty{0,1} exist (#150769)
534 - allow going to a shell when system is shut down cleanly (from <dwalsh@redhat.com>)
535
536 * Tue Sep 5 2006 Bill Nottingham <notting@redhat.com> 8.39-1
537 - translation updates
538 - Handle partitions on multipath/dmraid better (<pjones@redhat.com>)
539 - make /dev/mapper/control ourselves (<pjones@redhat.com>)
540 - init.d/network: simplify 'status' call
541 - fix actual 169.254 networks (#203591)
542 - rc.sysinit: don't run vgscan (#191879)
543 - init.d/halt: don't umount /dev/root<foo> (<oblin@mandriva.com>)
544 - rc.sysinit: catch more dmraid errors (#200683)
545 - support 'tmp' option in /etc/crypttab (#201382, <mitr@redhat.com>,
546 <lv@lekv.de>)
547 - IPv6 updates (<pb@bieringer.de>, includes a fix for #143452)
548
549 * Tue Aug 1 2006 Bill Nottingham <notting@redhat.com> 8.38-1
550 - translation updates
551 - bring down bonding slaves on ifdown (#199706)
552 - support LINKDELAY for dhcp (#191137)
553 - netfs: run multipath on netdev devices (#180977)
554 - halt: use /proc/mounts instead of /etc/mtab (#198426, <mitr@redhat.com>)
555 - rc.sysinit: fix getkey race (#191453, <mitr@redhat.com>)
556 - spec cleanups (#188614, <kloczek@rudy.mif.pg.gda.pl>)
557 - support aliases on vlan (#193133, <mitr@redhat.com>)
558 - clean up ifcfg file handling (<mitr@redhat.com>, <michal@harddata.com>)
559 - GRE and IPIP tunnel support (#168990, <mitr@redhat.com>,
560 <razvan.vilt@linux360.ro>, <aaron.hope@unh.edu>, <sean@enertronllc.com>)
561 - rc.sysinit: don't format encrypted swap always (#127378)
562 - don't try to add routes to alias devices (#199825, #195656)
563
564 * Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.37-1
565 - update translations
566
567 * Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.36-1
568 - rework automatic swapon - only run if AUTOSWAP=yes, and fix errors
569 (#198695, #196179, #196208)
570 - redo single so it starts last in runlevel 1, and doesn't kill/start
571 services itself
572 - add configurable delay for killproc() (#198429, <jorton@redhat.com>)
573 - fix loop in rename_device (#199242, <markmc@redhat.com>)
574 - rc.sysinit: stateless updates (#197972, <law@redhat.com>)
575 - support for copying dhcp leases from initramfs (#198601, <markmc@redhat.com>)
576 - readonly-root: SELinux works now in the kernel, allow it
577 - init.d/network: don't bring down network if root is on a network device
578 - init.d/halt: don't use -i to halt; causes problems with iscsi
579 - add support for routing rule-$device (#132252, <mitr@redhat.com>)
580 - fix rhgb output (#192604, <tonynelson@georgeanelson.com>)
581 - fix crypttab options for LUKS (#197656, <mitr@redhat.com>)
582 - ipsec: various fixes & new features (#150682, #168972, <mitr@redhat.com>, <alex@milivojevic.org>)
583 - ipsec: add check for IKE_METHOD (#197576, <john_smyth@mail.ru>)
584 - rename_device: ignore alias devices, fix race (#186355)
585 - ifup/ifdown: don't mark as %config
586 - rwtab: some additions/cleanup
587
588 * Mon Jun 12 2006 Bill Nottingham <notting@redhat.com> 8.35-1
589 - readonly root enhancments (modified from <law@redhat.com>, #193164)
590 - encrypted swap, non-root filesystem support (#127378, <mitr@redhat.com, <redhat@flyn.org>)
591 - clarify killproc usage (#193711, <mitr@redhat.com>)
592 - document BRIDGE= (#192576, <mitr@redhat.com>)
593 - rc.sysinit: allow for sulogin instead of automatic relabeling (<dwalsh@rehdat.com>)
594
595 * Tue May 23 2006 Bill Nottingham <notting@redhat.com> 8.34-1
596 - link glib2 dynamically now that it's in /lib, conflict with older
597 versions
598 - handle cups specially when cleaning /var (#189168)
599 - remove ifdown-aliases (<mitr@redhat.com>)
600 - ifup-ipsec: fix key handling when only one of AH or ESP is used
601 (#166257, <mituc@iasi.rdsnet.ro>)
602 - IPv6 updates, including RFC 3041 support (<pb@bieringer.de>)
603 - routing fixes, add METRIC support for default routes (#124045, <mitr@redhat.com>)
604 - fix handling of mount points with white space (#186713, <mitr@redhat.com>)
605
606 * Thu Apr 20 2006 Bill Nottingham <notting@redhat.com> 8.33-1
607 - support for readonly root
608 - rc.sysinit: remove call to zfcpconf.sh - that should be udev rules
609 - ifup*: add NETWORKDELAY and LINKDELAY (#176851, <mitr@redhat.com>)
610 - rc.sysinit: remove obsolete initrd code (<pjones@redhat.com>)
611
612 * Mon Apr 10 2006 Bill Nottingham <notting@redhat.com> 8.32-1
613 - netfs: fix redirect (#187505)
614 - rc.sysinit add forcequotacheck (#168118, <mitr@redhat.com>)
615 - functions/pidof: various fixes (#182623, others <mitr@redhat.com>)
616 - add support for DHCP on bridges (#125259, <mitr@redhat.com>,
617 anders@kaseorg.com>)
618 - rc.sysinit: use pidof, not killall (#185429, <pjones@redhat.com>)
619 - ppp fixes (#129195, #163950, #92023, <mitr@redhat.com>, <avi@argo.co.il>)
620 - ifup/ifdown: unset $WINDOW (#174336, <mitr@redhat.com>)
621
622 * Fri Mar 17 2006 Bill Nottingham <notting@redhat.com> 8.31.2-1
623 - add udev helper to rename network devices on device creation
624
625 * Tue Mar 14 2006 Bill Nottingham <notting@redhat.com> 8.31.1-1
626 - fix context of /dev/pts (#185436)
627 - translation updates
628
629 * Sun Mar 5 2006 Bill Nottingham <notting@redhat.com> 8.31-1
630 - fix kexec support (<jmoyer@redhat.com>)
631 - translation updates
632
633 * Tue Feb 28 2006 Bill Nottingham <notting@redhat.com> 8.30-1
634 - hotplug: don't cause modules to be reloaded on ifdown/rmmod (#179809)
635 - fix endless loops in ifup/ifdown (#177792, #182466)
636 - fix enabling of enforcing SELinux mode after relabel (#181893)
637 - remove debugging code from ifup-bnep
638 - add /proc, /sys mounting back to rc.sysinit
639 Note: booting without an initrd is deprecated
640 - translation updates
641
642 * Tue Feb 14 2006 Peter Jones <pjones@redhat.com> 8.29-1
643 - scrub another possible error message from dmraid output
644
645 * Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.28-1
646 - kill nash-hotplug before starting udev (<pjones@redhat.com>)
647 - silence warnings on /dev/pts remount (<pjones@redhat.com>)
648 - more translation updates
649
650 * Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.27-1
651 - translation updates
652 - lang.sh: revert fix for #176832, it's broken
653 - ifup-aliases fixes (<pjones@redhat.com>,<mitr@redhat.com>)
654
655 * Tue Feb 7 2006 Bill Nottingham <notting@redhat.com> 8.26-1
656 - revert "rc.sysinit: don't mount usbfs, libusb no longer uses it" change
657 - add some ugly hacks to make sure net hotplug doesn't run after unclean
658 shutdown (#177795)
659 - don't mount /sys and /proc in rc.sysinit - the initrd already does
660 (<pjones@redhat.com>)
661 - halt: try to unmount tmpfs filesystems before swapoff (#174000,
662 <mitr@redhat.com>)
663
664 * Thu Feb 2 2006 Bill Nottingham <notting@redhat.com> 8.25-1
665 - ifup: don't run the arping check if the address is already on the device
666
667 * Wed Feb 1 2006 Bill Nottingham <notting@redhat.com> 8.24-1
668 - init.d/functions: fix sendmail startup
669 - sysconfig.txt: fix typos (<mitr@redhat.com>)
670
671 * Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 8.23-1
672 - rc.sysinit: do a better job of not activating already active dmraids
673
674 * Tue Jan 31 2006 Bill Nottingham <notting@redhat.com> 8.22-1
675 - remove references to /usr/X11R6/bin (#177938)
676 - rc.sysinit: fix SELinux message formatting (#178532)
677 - rc.sysinit: clean cvs as well (#178539, <ville.skytta@iki.fi>)
678 - init.d/halt: move halt.local so that it runs before / is remounted r/o (#179314)
679 - rc.sysinit: don't activate already active dmraids (<pjones@redhat.com>)
680 - rc.sysinit: don't mount usbfs, libusb no longer uses it
681 - init.d/functions: Add -p to status() (#134363, <mitr@redhat.com>)
682 - init.d/functions: Separate /var/run/*.pid handling and pidof calls
683 to private functions (#63440, <mitr@redhat.com>)
684 - init.d/functions: update for current LSB, including -p pidfile
685 (#99325, #134363, <mitr@redhat.com>, <tobias.burnus@physik.fu-berlin.de>)
686 - getkey: various cleanups, add man page (#54481, <mitr@redhat.com>)
687 - lang.sh: don't always call consoletype (<laroche@redhat.com>)
688
689 * Fri Jan 20 2006 Bill Nottingham <notting@redhat.com> 8.21-1
690 - move handling of network hotplug events here, add appropriate udev
691 rules, obsolete hotplug
692 - get rid of some path lookups (#178321, <mclasen@redhat.com>)
693 - get hwaddrs from sysfs as opposed to ip | sed
694 - translation updates
695 - lang.sh: don't run unicode_start for subshells (#176832)
696 - halt: ignore sysfs but not /sys<otherstuff> (#177612, <bnocera@redhat.com>)
697 - add service(8) man page (#44857) <mitr@redhat.com>
698
699 * Wed Dec 21 2005 Bill Nottingham <notting@redhat.com> 8.20-1
700 - remove kmodule. udev handles module loading now
701 - require appropriate udev
702
703 * Thu Dec 15 2005 Bill Nottingham <notting@redhat.com> 8.19-1
704 - Require syslog, for alternate implementations thereof (#172885)
705 - Fix fsck invocation for weeding out netdev devices (#175803)
706
707 * Fri Dec 2 2005 Bill Nottingham <notting@redhat.com> 8.18-1
708 - use new dhclient file paths, add appropriate conflict (#169164)
709
710 * Wed Oct 5 2005 Bill Nottingham <notting@redhat.com> 8.17-1
711 - make sure corefile limiting works for user processes as well
712 (#166511, <ville.skytta@iki.fi>)
713 - ifup-routes: handle no EOF in the route file (#156972)
714 - rc.sysinit: tweak mesage (#156972)
715 - ifdown-eth: clean up error message (#135167)
716 - rc.sysinit: call kpartx on multipath devices (#160227)
717 - ifup-eth: move wireless options before bridge options (#122801)
718 - ifup-wireless: silence error (#90601)
719 - init.d/functions: change translated string (#54682)
720
721 * Tue Sep 27 2005 Than Ngo <than@redhat.com> 8.16-1
722 - fix typo bug
723
724 * Mon Sep 26 2005 Than Ngo <than@redhat.com> 8.15-1
725 - support proper dial-in configuration, thanks to Peter Bieringer (#158380)
726
727 * Thu Sep 22 2005 Bill Nottingham <notting@redhat.com>
728 - kmodule: don't probe for uninteresting devices. speeds things up
729 - network-functions: deal with broken networks better (#168947)
730 - rc.sysinit: automatically reboot if labels are really out of date
731 (<dwalsh@redhat.com>)
732 - network-functions: throw out nameif error messages
733 - rc.sysinit: use multipath.static (#168321)
734 - rc.sysinit: use ignorelocking (#168195)
735
736 * Mon Sep 12 2005 Bill Nottingham <notting@redhat.com> 8.14-1
737 - fix usage of the module blacklist (#168020)
738
739 * Fri Sep 9 2005 Bill Nottingham <notting@redhat.com> 8.13-1
740 - fix on-boot relabelling (<dwalsh@redhat.com>)
741
742 * Mon Aug 22 2005 Bill Nottingham <notting@redhat.com> 8.12-1
743 - ifup-eth: fix interface renaming (#158774)
744 - rc.sysinit: use modprobe, not insmod (#159120, <tmus@tmus.dk>)
745 - remove workaround for the fonts-not-initialized-on-secondary-consoles
746 problem (fixed in 2.6.12-rc4 and later)
747 - setsysfont: correctly bracket systfontacm (#159706)
748 - rc.sysinit: always use udevsend, even if no modules (#160987)
749 - ifdown-aliases: add 'cd' to the proper dir (#161170)
750 - add diskdump restore support (<tuchida@redhat.com>),
751 conflict with appropriate diskdumputils
752 - rc.sysinit: dmraid/multipath support
753 - remove LVM1 support
754 - init.d/functions: handle odd quoting in args (#161316, <stransky@redhat.com>)
755 - ifup-wireless: set rate in quotes (#163123)
756 - handle lvm & fsck for network block devices (#148764,
757 <alewis@redhat.com>)
758 - initlog: fix invalid free calls, (#165033), (#163973,<dwalsh@redhat.com>)
759 - sysconfig.txt: remove hdparm docs, since the code isn't there (#162962)
760 - updated translations: ms, ja, ko, et, zh_CN, zh_TW, sr, ar
761
762 * Tue May 10 2005 Bill Nottingham <notting@redhat.com> 8.11-1
763 - fix mis-bringup of interfaces due to accidentally matched HWADDR
764 (a.k.a. ONBOOT=no not working) (#153669, #157252)
765 - support automatic relabeling later if rebooted w/o SELinux
766 (<dwalsh@redhat.com>)
767 - rc.sysinit: fix fixfiles invocation (#157182)
768 - btmp should be 0600 (#156900)
769 - translation updates: fr, bg, ru, mk, pa, es
770
771 * Fri Apr 29 2005 Bill Nottingham <notting@redhat.com> 8.10-1
772 - fix hang on stale GDM sockets (#156355)
773
774 * Wed Apr 27 2005 Bill Nottingham <notting@redhat.com> 8.09-1
775 - rc.sysinit: clean up screen sockets (#155969)
776 - functions: use pidof -c in various functions
777 - ifup-ppp: fix static routes with ppp demand dialing (#20142,
778 <ohrn+redhat@chalmers.se>)
779 - add btmp support (#155537)
780 - don't send dhcp hostname (revert of fix for #149667)
781 - more early-login modifications (<mclasen@redhat.com>)
782 - functions: fix echo (#155270)
783
784 * Mon Apr 18 2005 Karsten Hopp <karsten@redhat.de> 8.08-3
785 - fix ifup-routes script (#155195)
786
787 * Mon Apr 18 2005 Florian La Roche <laroche@redhat.com>
788 - fix strstr call in rc.sysinit
789
790 * Fri Apr 15 2005 Bill Nottingham <notting@redhat.com> 8.08-1
791 - update translation base
792 - automatically send hostname for DHCP if it's available and not
793 overridden (#149667)
794 - load user-defined module scripts from /etc/sysconfig/modules at
795 boot (#123927)
796 - halt: reverse sort the mount list, avoiding errors
797 (#147254, <jamesodhunt@hotmail.com>)
798 - ifup-wireless: add SECURITYMODE (#145407)
799 - network-functions: don't error out if hotplug doesn't exist (#140008)
800 - ifup: always return errors on trying to bring up nonexistent devices (#131461)
801 - ifup: fix error message (#143674)
802 - rc.sysinit: add a autorelabel boot target (#154496)
803 - prefdm: if something else is specified as $DISPLAYMANAGER, try that (#147304)
804 - remove support for the old firewall type
805 - network: optimize some (#138557, <drepper@redhat.com>)
806 - prefdm: fix prefdm arg handling (#154312, <khc@pm.waw.pl>)
807 - gdm early-login support (adapted from <rstrode@redhat.com>)
808 - ifup-routes: make sure commented lines are handled correctly (#154353,
809 #114548, <link@pobox.com>)
810 - some sysconfig.txt updates (<link@pobox.com>, <jvdias@redhat.com>)
811 - rc.sysinit: fix restorecon invocation (#153100)
812 - initlog: free some of the more egregious memory leaks (#85935)
813 - initlog: fix potential memory overread (#153685, <in-redhat@baka.org>)
814 - remove some conflicts, %post scripts, etc. that were only relelvant
815 for upgrades from pre-7.0
816 - other minor fixes, see ChangeLog
817
818 * Thu Mar 31 2005 Bill Nottingham <notting@redhat.com> 8.07-1
819 - bring back initlog for third-party scripts until a new framework is
820 in place
821
822 * Wed Mar 30 2005 Bill Nottingham <notting@redhat.com> 8.06-1
823 - handle alternate VLAN naming schemes (#115001, <kas@informatics.muni.cz>)
824 - ifup-ipsec: handle non-ascii keys (#150552)
825 - add proper ipsec route (#146169, #140654)
826 - add a restorecon for /tmp to rc.sysinit
827 - document ONHOTPLUG in sysconfig.txt
828 - fix mistranslation (#151120)
829 - don't return 1 for stopping a process if it isn't running at all
830 - don't explicitly set fwd polices for ipsec traffic. Let setkey
831 handle it.
832
833 * Mon Mar 7 2005 Bill Nottingham <notting@redhat.com> 8.05-1
834 - ipv6 cleanups (<pb@bieringer.de>)
835 - rc.sysinit: fix rngd check (#130350)
836 ... then turn it off entirely
837 - rc.sysinit: get rid of duplicate date printout (#149795)
838 - ifdown: handle being called on down devices better
839 - handle saved resolv.conf on all device types
840 - fix network-functions cleanup
841 - netfs: fix _netdev unmounting (#147610, <alewis@redhat.com>)
842 - dhcp release cleanups (<jvdias@redhat.com>)
843 - ifup-bnep: bluetooth update <dwmw2@infradead.org>
844 - more ipsec stuff (#147001, <ckjohnson@gwi.net>)
845
846 * Wed Jan 19 2005 Bill Nottingham <notting@redhat.com> 8.04-1
847 - split out ifup/ifdown general case to ifup/ifdown-eth;
848 add ifup/ifdown-bnep (<dwmw2@redhat.com>)
849 - ifup-ipsec: add fwd policies (#145507)
850 - fix multiple scsi_hostadapter loads (#145432)
851 - enable syncookies in sysctl.conf (#145201)
852
853 * Wed Jan 12 2005 Bill Nottingham <notting@redhat.com> 8.03-1
854 - use udevsend to handle hotplug events (requires recent udev)
855 - remove pump, dhcpcd support
856 - fix ONxxx (#136531, <cww@redhat.com>)
857 - fix various fgreps to not catch commented lines (#136531, expanded
858 from <cww@redhat.com>)
859 - set ETHTOOL_OPTS on addressless devices (#144682, <mpoole@redhat.com>)
860 - kill dhcp client even if BOOTOPROTO is now static (#127726, others)
861 - replace the use of route/ifconfig with ip in IPv6 code, remove support
862 for ipv6calc (<pb@bierenger.de>, <pekkas@netcore.fi>)
863 - fix quoting in daemon() (#144634)
864 - make sysctl be silent (#144483)
865
866 * Mon Jan 3 2005 Bill Nottingham <notting@redhat.com> 8.02-1
867 - remove initlog, minilogd
868 - add a flag to kmodule for use with kudzu's socket mode, use it
869 - change setting of IPv6 default route (#142308, <pb@bieringer.de>)
870 - netfs: don't unmount NFS root FS (#142169)
871
872 * Mon Dec 6 2004 Bill Nottingham <notting@redhat.com> 8.01-1
873 - further bootup noise reductions
874 - rc.d/rc.sysinit: do implicit unicode conversion on keymap
875
876 * Mon Nov 29 2004 Bill Nottingham <notting@redhat.com> 8.00-1
877 - fix previous fix (#139656)
878
879 * Wed Nov 24 2004 Bill Nottingham <notting@redhat.com> 7.99-1
880 - clear and repopulate mtab before mounting other filesystems (#139656)
881 - remove more devfs compat
882
883 * Tue Nov 23 2004 Bill Nottingham <notting@redhat.com> 7.98-1
884 - various kmodule speedups
885 - rc.d/init.d/netfs: don't mount GFS (#140281)
886 - fix various minilogd bogosities (#106338)
887
888 * Mon Nov 15 2004 Karsten Hopp <karsten@redhat.de> 7.97-1
889 - configure CTC protocol if CTCPROT is set (#133088)
890
891 * Mon Nov 15 2004 Bill Nottingham <notting@redhat.com>
892 - fix check_link_down to still check negotiation if link is
893 listed as "up" on entering (#110164, <dbaron@dbaron.org>)
894
895 * Thu Nov 11 2004 Karsten Hopp <karsten@redhat.de> 7.96-1
896 - parse OPTIONS for QETH, CTC, LCS interfaces (#136256, mainframe)
897
898 * Tue Nov 9 2004 Bill Nottingham <notting@redhat.com>
899 - fix typo (#134787, <bnocera@redhat.com>)
900
901 * Sun Nov 7 2004 Bill Nottingham <notting@redhat.com> 7.95-1
902 - various translation updates
903
904 * Tue Nov 2 2004 Bill Nottingham <notting@redhat.com>
905 - take an axe to rc.sysinit:
906 - remove delay on unclean startup
907 - remove hdparm code
908 - remove LVM1 code
909 - remove old raidtab code in favor of mdadm
910 - remove support for old isapnp tools
911 - move all block device mangling before fsck. run fsck *once*, not twice
912 - some more LC_ALL=C stuff
913
914 * Sun Oct 31 2004 Florian La Roche <laroche@redhat.com>
915 - /etc/rc.d/rc: use "LC_ALL=C grep" for small speedup
916 - /etc/rc.d/rc.sysinit:
917 - do not read udev.conf, this seems to be all in the start_udev script
918 - fix detection of "nomodules" kernel command line option
919 - read /proc/cmdline earlier and convert rhgb to use that, too
920 - load_module(): change redirection to /dev/null
921 - some checks for RHGB_STARTED="" looked strange
922 - /etc/sysconfig/network-scripts/ifup-ppp:
923 - remove a call to basename with shell builtins
924 - /etc/sysconfig/network-scripts/network-functions:
925 - remove some calls to basename/sed with shell builtins
926
927 * Wed Oct 27 2004 Bill Nottingham <notting@redhat.com> 7.93.2-1
928 - fix prefdm fallback to installed display managers (#137274)
929 - fix incorrect rhgb temporary path (#137391)
930
931 * Mon Oct 18 2004 Bill Nottingham <notting@redhat.com> 7.93-1
932 - translation updates
933 - fix handling of GATEWAYDEV (#133575, <pekkas@netcore.fi>)
934
935 * Sun Oct 17 2004 Bill Nottingham <notting@redhat.com> 7.91-1
936 - rc.d/rc.sysinit: remove devlabel call
937 - mdadm support, now that raidtools is gone (#126636, #88785)
938 - call ipv6to4 scripts in /etc/ppp/(ip-up|ip-down) (#124390, <dwmw2@redhat.com>)
939 - cleanup a couple of nits that could affect bug #134754
940 - make sure we return to rhgb after fsck (#133966, #112839, #134449)
941 - automatically reboot when fsck calls for it, instead of requiring
942 manual intervention (#117641 and duplicates)
943 - ifup-wireless: fix key for open vs. restricted (#135235, <dax@gurulabs.com>)
944 - translation updates
945
946 * Fri Oct 08 2004 Karsten Hopp <karsten@redhat.de> 7.90-1
947 - fix portname for LCS devices
948
949 * Fri Oct 08 2004 Bill Nottingham <notting@redhat.com>
950 - remove sysconfig/rawdevices, as initscript is removed
951
952 * Thu Oct 07 2004 Florian La Roche <Florian.LaRoche@redhat.de>
953 - change /etc/sysctl.conf to not allow source routed packets per default
954
955 * Fri Oct 6 2004 Bill Nottingham <notting@redhat.com> - 7.88-1
956 - fix requires
957
958 * Tue Oct 5 2004 Dan Walsh <dwalsh@redhat.com> - 7.87-1
959 - Change SELinux relabel to not remount /
960
961 * Mon Oct 4 2004 Bill Nottingham <notting@redhat.com>
962 - use runuser instead of su; require it
963 - init.d/halt: use right file name for random seed (#134432)
964
965 * Fri Oct 1 2004 Bill Nottingham <notting@redhat.com> - 7.86-1
966 - use /etc/hotplug/blacklist to blacklist modules in hardware init (#132719)
967 - filter indic locales on the console (#134198)
968
969 * Wed Sep 29 2004 Bill Nottingham <notting@redhat.com> - 7.85-1
970 - ifup, network-functions: fix worked-by-accident shell quoting
971 - lang.csh: remove setting of dspmbyte (#89549, <mitr@redhat.com>)
972 - SELinux fixes
973 - clean up prefdm
974 - init.d/functions: export LC_MESSAGES (#133786)
975 - allow daemon to coredump if requested (#130175)
976 - network-functions: be more liberal in what we accept for link types (#90602, #127984)
977 - fix overzealousness with -range aliases (#65415)
978 - rc.sysinit: use s-c-keyboard, not kbdconfig (#133929)
979 - fix checkpid logic, clean up potential errors (#134030)
980 - translation updates
981
982 * Wed Sep 22 2004 Bill Nottingham <notting@redhat.com> - 7.84-1
983 - only start udev once
984
985 * Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 7.83-1
986 - conflict with old udev
987 - use udev if it's present
988
989 * Tue Sep 21 2004 Bill Nottingham <notting@redhat.com>
990 - don't mount usbfs without usb. also, at least be consistent in filesystem type
991
992 * Fri Sep 17 2004 Bill Nottingham <notting@redhat.com> - 7.82-1
993 - fix handling of nonexistent devices (#132839)
994 - rhgb enhancements (<veillard@redhat.com>, #132665)
995 - initscripts.spec: require nash (#132513)
996 - translation updates
997
998 * Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 7.81-1
999 - load iucv device config after /etc/sysconfig/network so that
1000 GATEWAY doesn't get overwritten
1001
1002 * Fri Sep 10 2004 Bill Nottingham <notting@redhat.com> - 7.80-1
1003 - fix IPv6 6to4 & NAT (#118928, <pb@bieringer.de>, <pekkas@netcore.fi>)
1004
1005 * Fri Sep 10 2004 Karsten Hopp <karsten@redhat.com> - 7.79-1
1006 - load ctc device config after /etc/sysconfig/network so that
1007 GATEWAY doesn't get overwritten
1008
1009 * Wed Sep 8 2004 Dan Walsh <dwalshg@redhat.com> - 7.78-2
1010 - fix setting SELinux contexts on udev-created-in-initrd devices
1011 - Let restorecon check if selinux is enabled.
1012
1013 * Wed Sep 8 2004 Bill Nottingham <notting@redhat.com> - 7.78-1
1014 - set SELinux contexts on udev-created-in-initrd devices, if necessary
1015
1016 * Wed Sep 1 2004 Bill Nottingham <notting@redhat.com> - 7.77-1
1017 - mount usbfs (#131347)
1018 - start any automatic raid devices
1019 - remove triggers for ancient releases, bulletproof remaining ones (#131356)
1020
1021 * Wed Sep 1 2004 Jeremy Katz <katzj@redhat.com> - 7.76-1
1022 - udev uses UDEV_TMPFS now
1023
1024 * Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 7.75-1
1025 - fix sysfs configuration of qeth and lcs network interfaces
1026 (eth, tr, hsi)
1027
1028 * Mon Aug 30 2004 Karsten Hopp <karsten@redhat.de> 7.74-1
1029 - fix support for LCS portnumbers (mainframe)
1030
1031 * Fri Aug 27 2004 Jason Vas Dias <jvdias@redhat.com> 7.73-1
1032 - Add support for running the DHCPv6 client to ifup
1033 - (new DHCPV6C=yes/no ifcfg-${IF} variable) + update sysconfig.txt
1034
1035 * Fri Aug 27 2004 Bill Nottingham <notting@redhat.com> 7.72-1
1036 - flip the kernel conflict to a Requires:
1037
1038 * Thu Aug 26 2004 Karsten Hopp <karsten@redhat.de> 7.71-1
1039 - ifcfg-iucv/ctc: drop REMIP and use GATEWAY instead
1040
1041 * Thu Aug 26 2004 Bill Nottingham <notting@redhat.com> 7.70-1
1042 - autoload hardware modules on startup
1043 - minor fsck cleanup (#115028, <leonard-rh-bugzilla@den.ottolander.nl>)
1044 - ifup: support STP bridging (#123324)
1045 - rc.sysinit: do a SELinux relabel if forced
1046 - rc.sysinit: remove devfs compat and the remaining 2.4 compat
1047 - ifup-wireless: support multiple keys (#127957)
1048 - fix firmware loading (#129155, <bnocera@redhat.com>)
1049
1050 * Tue Aug 24 2004 Karsten Hopp <karsten@redhat.de> 7.68-1
1051 - execute zfcfconf.sh if available (mainframe)
1052
1053 * Mon Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.67-1
1054 - fix change_resolv_conf: if pre-existing /etc/resolv.conf
1055 - non-existent or empty, replace with new file contents.
1056
1057 * Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
1058 - Allow users to use generic /etc/dhclient.conf if per-device
1059 - /etc/dhclient-${DEVICE}.conf is non-existent or empty
1060
1061 * Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
1062 - Preserve "options" settings in resolv.conf (bug 125712)
1063
1064 * Fri Aug 20 2004 Jeremy Katz <katzj@redhat.com> - 7.65-1
1065 - look at /etc/udev/udev.conf, not /etc/sysconfig/udev (#130431)
1066
1067 * Fri Aug 20 2004 Bill Nottingham <notting@redhat.com> 7.64-1
1068 - rc.d/rc.sysinit: check for dev file too (#130350)
1069
1070 * Thu Aug 19 2004 Than Ngo <than@redhat.com> 7.63-1
1071 - allow CBCP with own number (#125710)
1072
1073 * Thu Aug 19 2004 Bill Nottingham <notting@redhat.com> 7.62-1
1074 - fix up resolv.conf munging (#129921)
1075 - use rngd if available
1076 - run start_udev if necessary (#120605)
1077 - readonly root updates (#129893, <markmc@redhat.com>)
1078 - ifup-wireless: quote key (#129930)
1079 - remove rawdevices (#130048)
1080 - handle binfmt_misc in rc.sysinit for the case where it's built in (#129954)
1081 - remove mkkerneldoth
1082 - don't remove linguas in lang.* (part of #9733)
1083 - fix nfs unmounting (#129765)
1084 - fix URL (#129433)
1085
1086 * Tue Aug 11 2004 Jason Vas Dias <jvdias@redhat.com> 7.61-1
1087 - fix for bug 120093: add PERSISTENT_DHCLIENT option to ifcfg files
1088
1089 * Tue Aug 3 2004 Karsten Hopp <karsten@redhat.de> 7.60-1
1090 - write peerid into sysfs for IUCV devices (mainframe)
1091
1092 * Tue Aug 3 2004 Bill Nottingham <notting@redhat.com>
1093 - don't remove /dev/mapper/control - nash will do it if it has to (#127115)
1094
1095 * Fri Jul 30 2004 Jason Vas Dias <jvdias@redhat.com> 7.60-1
1096 - fix for bug 125712: add 'change_resolv.conf' function
1097
1098 * Tue Jul 27 2004 Bill Nottingham <notting@redhat.com>
1099 - rc.d/init.d/network: don't bring interfaces down twice (#127487)
1100
1101 * Wed Jul 14 2004 Bill Nottingham <notting@redhat.com>
1102 - fix bonding + no IP (#127285)
1103 - wrap second LVM initialization in vgscan check to avoid extraneous messages (#127639)
1104
1105 * Wed Jul 7 2004 Bill Nottingham <notting@redhat.com>
1106 - move random stuff to rc.sysinit/halt; move all swap to after this.
1107 prereq of bug #123278
1108
1109 * Fri Jul 2 2004 Bill Nottingham <notting@redhat.com> 7.59-1
1110 - set context on ICE directory after making it (#127099, <concert@europe.com>)
1111 - don't mount GFS filesystems in rc.sysinit
1112
1113 * Tue Jun 29 2004 Bill Nottingham <notting@redhat.com> 7.58-1
1114 - rc.d/rc.sysinit: hack: make ICE directory on boot (#86480)
1115 - set devicetype for xDSL (#126194)
1116 - ignore locking failures when starting lvm volumes (#126192, <radu@primit.ro>)
1117 - unset LC_MESSAGES for rhgb (#126020, <ynakai@redhat.com>)
1118 - bonding fixes
1119 - setsysfont: remove error (#100559)
1120 - remove duplicate setting of network routes (#125450)
1121 - vlan fixes (#107504, <hrunting@texas.net>)
1122 - ifup-aliases: remove bogus route setting (#120908)
1123
1124 * Tue May 25 2004 Bill Nottingham <notting@redhat.com> 7.57-1
1125 - readonly root fixes (<alexl@redhat.com>)
1126
1127 * Tue May 25 2004 Karsten Hopp <karsten@redhat.de> 7.56-1
1128 - special TYPE for qeth devices to differenciate them from ethX
1129
1130 * Mon May 24 2004 Bill Nottingham <notting@redhat.com>
1131 - fix pppd vs. ppp typo in conflicts (#123680)
1132
1133 * Fri May 21 2004 Bill Nottingham <notting@redhat.com>
1134 - fix bridging confusing module order (#122848, <luto@myrealbox.com>)
1135 - rc.d/rc.sysinit: don't mount cifs (#122501)
1136
1137 * Tue May 18 2004 Karsten Hopp <karsten@redhat.de> 7.55-1
1138 - add support for ccwgroup devices on mainframe
1139
1140 * Thu May 13 2004 Than Ngo <than@redhat.com> 7.54-1
1141 - add patch to enable PIE build of usernetctl
1142
1143 * Fri May 7 2004 Jeremy Katz <katzj@redhat.com> - 7.53-1
1144 - little lvm tweak (#121963)
1145
1146 * Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.52-1
1147 - ipv4 addresses are ints, not longs (#122479)
1148
1149 * Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.51-1
1150 - get rid of LVM error when no volumes are defined (#121197)
1151 - fix selinux short-circuit test (#121143, <michal@harddata.com>)
1152 - /dev/mapper/control is a special file, check it accordingly (#121963)
1153 - support ETHTOOL_OPTS on bonding slaves (#119430, <hrunting@texas.net>)
1154 - handle multiple spaces correctly in rc.sysinit, network-functions
1155 (#118583, <pallas@kadan.cz>)
1156 - cleanup fd leaks, mem leaks, other bogosities
1157 (#119987, <linux_4ever@yahoo.com>)
1158 - rc.d/init.d/network: remove ipv6 bogosity (#114128)
1159 - translation updates
1160
1161 * Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> 7.50-1
1162 - fix LVM issues in rc.sysinit (#120458, #119975)
1163 - deal with fixed racoon parser
1164 - translation updates from translators
1165 - fix USB loading (#120911)
1166
1167 * Fri Mar 26 2004 Bill Nottingham <notting@redhat.com> 7.49-1
1168 - use alsa for mixer saving in halt
1169 - don't umount /proc in halt (#118880)
1170 - various translation updates from translators
1171
1172 * Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.48-1
1173 - disable enforcing in emergency mode for now, relabel some commonly
1174 mislabeled files on boot
1175
1176 * Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.47-1
1177 - translation: catch more input strings (#106285, <mitr@volny.cz>)
1178 - remove autologin from prefdm (#108969)
1179 - return to rhgb after ./unconfigured (#109807, <jkeating@j2solutions.net>)
1180 - handle iso15 in setsysfont (#110243)
1181 - clean up samba & vmware in rc.sysinit (#113104)
1182 - some sysconfig.txt documentation (#110427, #118063)
1183 - fix bug in umount-on-halt (#113088, <giardina@airlab.elet.polimi.it>)
1184 - handle CIFS in netfs (#115691)
1185 - make sure hotplug isn't stuck unset (#116666, <aoliva@redhat.com>)
1186 - handle network fs better in rc.sysinit (#111290)
1187 - nomodules applies to usb/firewire too (#113278)
1188 - ipsec fix (#116922, <felipe_alfaro@linuxmail.org>)
1189 - make sure rc exits cleanly (#117827, <enrico.scholz@informatik.tu-chemnitz.de>)
1190 - fsck root FS from initrd, for dynamic majors (#117575, <sct@redhat.com>)
1191
1192 * Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com>
1193 - Use ':' instead of '.' as separator for chown.
1194
1195 * Mon Feb 2 2004 Bill Nottingham <notting@redhat.com> 7.46-1
1196 - some more rc.sysinit tweaks and refactoring
1197
1198 * Fri Jan 30 2004 Bill Nottingham <notting@redhat.com> 7.45-1
1199 - fix rc.sysinit typo
1200 - rc.d/init.d/network: clear out environment (#113937, #111584)
1201
1202 * Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 7.44-1
1203 - NFSv4 support (<chucklever@bigfoot.com>, <steved@redhat.com>)
1204 - handle 2.6-style 'install ethX ...' lines correctly
1205 - mount sysfs by default
1206 - time to clean up the cruft. remove:
1207 - boot-time depmod
1208 - linking of /boot/System.map to /boot/System.map-`uname -r`
1209 - /var/log/ksyms.X
1210 - libredhat-kernel support
1211
1212 * Fri Jan 16 2004 Dan Walsh <dwalsh@redhat.com> 7.43-2
1213 - Remove selinux run_init code from service script. It is no longer needed.
1214
1215 * Fri Dec 5 2003 Jeremy Katz <katzj@redhat.com> 7.43-1
1216 - basic lvm2 support
1217
1218 * Tue Oct 28 2003 Bill Nottingham <notting@redhat.com> 7.42-1
1219 - show rhgb details on service failures
1220
1221 * Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 7.41-1
1222 - tweak some rhgb interactions (#100894, #107725)
1223 - fix dvorak keymap loading (#106854)
1224
1225 * Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.40-1
1226 - add better fix to support nickname (#105785)
1227
1228 * Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.39-1
1229 - add support nickname (#105785)
1230
1231 * Fri Oct 17 2003 Bill Nottingham <notting@redhat.com> 7.38-1
1232 - rhgb updates, now pass 'rhgb' to use it, instead of passing 'nogui'
1233 to disable it
1234
1235 * Fri Oct 10 2003 Bill Nottingham <notting@redhat.com> 7.37-1
1236 - bridging updates (#104421, <dwmw2@redhat.com>)
1237
1238 * Wed Oct 8 2003 Bill Nottingham <notting@redhat.com> 7.36-1
1239 - mount /dev/pts before starting rhgb
1240
1241 * Wed Oct 1 2003 Bill Nottingham <notting@redhat.com> 7.35-1
1242 - load acpi modules on startup if necessary
1243 - fix typo in ipsec comments & sysconfig.txt
1244
1245 * Mon Sep 15 2003 Than Ngo <than@redhat.com> 7.34-1
1246 - use upsdrvctl to start the shutdown process
1247
1248 * Mon Sep 15 2003 Bill Nottingham <notting@redhat.com> 7.33-1
1249 - ipsec fixes (#104227, <harald@redhat.com>)
1250 - ppp fixes (#104128, #97845, #85447)
1251
1252 * Thu Sep 11 2003 Bill Nottingham <notting@redhat.com> 7.32-1
1253 - fix ip calls for some device names (#104187)
1254 - ipsec fixes
1255
1256 * Fri Sep 5 2003 Bill Nottingham <notting@redhat.com> 7.31-1
1257 - fix bonding + dhcp (#91399)
1258 - fix typo (#103781)
1259 - sysconfig/network-scripts/ifup: fix use of local
1260
1261 - fix shutdown with NFS root (#100556, <Julian.Blake@cern.ch>)
1262 - remove /var/run/confirm when done with /etc/rc (#100898)
1263 - ipcalc: fix some memory handling (#85478, <miked@ed.ac.uk>)
1264 - handle sorting > 10 network devices (#98209)
1265 - unset ONPARENT after use (#101384)
1266 - random other fixes
1267 - bridging support (<dwmw2@redhat.com>)
1268
1269 * Fri Aug 15 2003 Bill Nottingham <notting@redhat.com> 7.30-1
1270 - IPv6 updates (#86210, #91375, <pekkas@netcore.fi>)
1271
1272 * Fri Aug 8 2003 Bill Nottingham <notting@redhat.com> 7.29-1
1273 - setsysfont: don't echo to /dev/console (#102004)
1274 - fix ethernet device renaming deadlock (#101566)
1275 - consoletype: don't return 'vt' on vioconsole (#90465)
1276 - ifup: fix short-circuit (#101445)
1277
1278 * Fri Jul 18 2003 Nalin Dahyabhai <nalin@redhat.com>
1279 - ifup-routes: pass the interface name to handle_file() so that we don't try
1280 to use the routes file's name as an interface name
1281
1282 * Wed Jul 9 2003 Bill Nottingham <notting@redhat.com> 7.28-1
1283 - switch from $CONFIG.keys to keys-$CONFIG
1284
1285 * Tue Jul 8 2003 Bill Nottingham <notting@redhat.com> 7.27-1
1286 - add a check to consoletype for the current foreground console
1287 - use it when running unicode_start (#98753)
1288
1289 * Wed Jul 2 2003 Bill Nottingham <notting@redhat.com> 7.26-1
1290 - ipsec support (see sysconfig.txt, ifup-ipsec)
1291 - read $CONFIG.keys, for non-world-readable keys
1292 - allow default window size for routes to be set with WINDOW= (#98112)
1293 - support setting device options with ethtool opts
1294 - fix s390 bootup spew (#98078)
1295 - support renaming interfaces with nameif based on hwaddr
1296
1297 * Mon Jun 23 2003 Bill Nottingham <notting@redhat.com> 7.25-1
1298 - fix DNS punching in the case of other rules for the DNS server
1299 (#97686, <martin@zepler.org>)
1300 - initlog, ppp-watch, and usernetctl tweaks (<linux_4ever@yahoo.com>)
1301 - fix grep for mingetty (#97188)
1302 - fix rhgb-client bad syntax
1303 - change network device searching, use correct naming, fix route issues
1304 (<harald@redhat.com>)
1305 - other random tweaks
1306
1307 * Fri May 23 2003 Bill Nottingham <notting@redhat.com> 7.24-1
1308 - now even still yet more tweaks for graphical boot
1309
1310 * Thu May 22 2003 Bill Nottingham <notting@redhat.com> 7.23-1
1311 - even still yet more tweaks for graphical boot
1312
1313 * Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.22-1
1314 - still yet more tweaks for graphical boot
1315
1316 * Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.21-1
1317 - yet more tweaks for graphical boot
1318
1319 * Fri May 2 2003 Bill Nottingham <notting@redhat.com> 7.20-1
1320 - more tweaks for graphical boot
1321
1322 * Wed Apr 30 2003 Bill Nottingham <notting@redhat.com> 7.18-1
1323 - some tweaks for graphical boot
1324
1325 * Mon Apr 21 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1326 - initscripts-s390.patch: remove not needed parts about PNP=
1327 - inittab.390: sync with normal version
1328 - rc.sysinit: remove two further calls to /sbin/consoletype with $CONSOLETYPE
1329
1330 * Fri Apr 18 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1331 - sysconfig/init.s390: set LOGLEVEL=3 as for other archs
1332 - rc.d/init.d/network, rc.d/rc: change confirmation mode to
1333 not use an environment variable
1334 - rc.d/init.d/functions: make strstr() even shorter, remove old
1335 "case" version that has been already commented out
1336 - rc.d/rc.sysinit:
1337 - no need to set NETWORKING=no, it is not used/exported
1338 - do not export BOOTUP
1339 - delete two "sleep 1" calls that wants to add time to go
1340 into confirmation mode. There is enough time to press a
1341 key anyway or use "confirm" in /proc/cmdline.
1342 - read /proc/cmdline into a variable
1343 - use strstr() to search in /proc/cmdline
1344 - add "forcefsck" as possible option in /proc/cmdline
1345 - while removing lock files, no need to call `basename`
1346 - add unamer=`uname -r` and reduce number of forks
1347 - do not fork new bash to create /var/log/ksyms.0
1348
1349 * Thu Apr 03 2003 Karsten Hopp <karsten@redhat.de> 7.15-1
1350 - Mainframe has no /dev/ttyX devices and no mingetty, don't
1351 initialize them. This gave error messages during startup
1352
1353 * Mon Mar 17 2003 Nalin Dahyabhai <nalin@redhat.com>
1354 - init.d/network: don't advertise "probe: true" in the header if we don't
1355 recognize "probe" as an argument
1356
1357 * Wed Mar 12 2003 Bill Nottingham <notting@redhat.com> 7.14-1
1358 * - do not handle changed chain name; change was reverted
1359
1360 * Tue Feb 25 2003 Bill Nottingham <notting@redhat.com> 7.13-1
1361 - handle 7.x SYSFONTACM settings in setsysfont (#84183)
1362
1363 * Mon Feb 24 2003 Bill Nottingham <notting@redhat.com> 7.12-1
1364 - handle changed chain name
1365 - init vts used in all cases
1366
1367 * Fri Feb 21 2003 Bill Nottingham <notting@redhat.com> 7.10-1
1368 - handle LANGUAGE specially for zh_CN.GB18030 and gdm (#84773)
1369
1370 * Thu Feb 20 2003 Bill Nottingham <notting@redhat.com> 7.09-1
1371 - initialize two ttys past # of mingettys (for GDM)
1372 - fix zeroconf route
1373 - redhat-config-network writes $NAME.route for some static routes
1374 (e.g., ppp); handle that (#84193)
1375
1376 * Tue Feb 18 2003 Bill Nottingham <notting@redhat.com> 7.08-1
1377 - load keybdev & mousedev even if hid is already loaded/static
1378 - run fewer scripts through action (#49670, #75279, #81531)
1379
1380 * Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 7.07-1
1381 - fix nicknames & profiles (#82246)
1382 - fix check_device_down (#83780, <pzb@datstacks.com>)
1383 - vlan fixes (<tis@foobar.fi>)
1384 - fix groff macros (#83531, <tsekine@sdri.co.jp>)
1385 - various updated translations
1386 - fix checkpid for multiple pids (#83401)
1387
1388 * Fri Jan 31 2003 Bill Nottingham <notting@redhat.com> 7.06-1
1389 - 802.1Q VLAN support (<tis@foobar.fi>, #82593)
1390 - update translations
1391
1392 * Thu Jan 30 2003 Bill Nottingham <notting@redhat.com> 7.05-1
1393 - fix syntax error in rc.sysinit when there are fsck errors
1394 - fix zh_TW display on console (#82235)
1395
1396 * Wed Jan 15 2003 Bill Nottingham <notting@redhat.com> 7.04-1
1397 - tweak some translatable strings
1398 - fix for rc.sysinit on machines that pass arguments to mingetty
1399 (<nalin@redhat.com>)
1400
1401 * Tue Jan 14 2003 Bill Nottingham <notting@redhat.com> 7.03-1
1402 - move system font setting sooner (<milan.kerslager@pslib.cz>)
1403 - fix link checking for dhcp, use both ethtool and mii-tool
1404 - fix CJK text on the console, and locale-archive held open
1405 on shutdown
1406 - IPv6 updates <pekkas@netcore.fi>, <pb@bieringer.de>
1407 - speedup tweaks (<drepper@redhat.com>)
1408 - use glib2 for ppp-watch (#78690, <kisch@mindless.com>)
1409 - add zeroconf route (#81738)
1410 - fix ifup-ppp for dial-on-demand, and onboot (<goeran@uddeborg.pp.se>)
1411 - tweak raidtab parsing, don't worry about not-in-fstab RAID devices
1412 (#71087, #78467, <aja@mit.edu>)
1413 - don't automatically bring up aliases if 'ONPARENT=no' is set (#78992)
1414 - getkey cleanups/tweaks (#76071, <ben@enchantedforest.org>)
1415 - rework halt_get_remaining (#76831, <michal@harddata.com>)
1416 - ipcalc: fix calculation of /32 addresses (#76646)
1417 - various other tweaks and fixes
1418
1419 * Fri Dec 20 2002 Bill Nottingham <notting@redhat.com> 7.01-1
1420 - %%config(noreplace) inittab
1421
1422 * Tue Dec 17 2002 Nalin Dahyabhai <nalin@redhat.com>
1423 - add a "nofirewire" option to /etc/rc.sysinit, analogous to "nousb"
1424
1425 * Tue Dec 17 2002 Bill Nottingham <notting@redhat.com> 7.00-1
1426 - tweaks for potential GUI bootup
1427 - loop checking for network link state, don't unilterally wait five
1428 seconds
1429
1430 * Fri Dec 14 2002 Karsten Hopp <karsten@redhat.de> 6.99-1
1431 - remove call to /sbin/update for S/390, too
1432
1433 * Wed Dec 11 2002 Bill Nottingham <notting@redhat.com> 6.98-1
1434 - remove call to /sbin/update
1435 - fix netprofile
1436
1437 * Mon Dec 2 2002 Bill Nottingham <notting@redhat.com> 6.97-1
1438 - IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
1439 - devlabel support (<Gary_Lerhaupt@Dell.com>)
1440 - do lazy NFS umounts
1441
1442 * Tue Nov 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1443 - correctly remove non-packaged files for mainframe
1444
1445 * Tue Nov 12 2002 Bill Nottingham <notting@redhat.com> 6.96-1
1446 - fix various static-routes brokeness (#74317, #74318, #74320, #76619,
1447 #75604)
1448 - fix handling of SYSFONTACM in setsysfont (#75662)
1449 - fix lang.csh for CJK (#76908, <ynakai@redhat.com>)
1450 - IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
1451 - other minor tweaks
1452
1453 * Mon Sep 16 2002 Than Ngo <than@redhat.com>
1454 - owns directory /etc/ppp/peers (bug #74037)
1455
1456 * Wed Sep 4 2002 Bill Nottingham <notting@redhat.com> 6.95-1
1457 - fix syntax error in duplicate route removal section of ifup
1458
1459 * Wed Sep 4 2002 Nalin Dahyabhai <nalin@redhat.com> 6.94-1
1460 - fix syntax error calling unicode_start when SYSFONTACM isn't set
1461
1462 * Mon Sep 2 2002 Bill Nottingham <notting@redhat.com>
1463 - fix calling of unicode_start in lang.{sh,csh}
1464 - ipv6 tweak
1465
1466 * Wed Aug 28 2002 Bill Nottingham <notting@redhat.com>
1467 - don't infinite loop on ifdown
1468 - remove disabling of DMA; this can cause problems
1469 - move swap startup to after LVM (#66588)
1470
1471 * Tue Aug 20 2002 Bill Nottingham <notting@redhat.com>
1472 - don't cycle through eth0-eth9 on dhcp link check (#68127)
1473 - don't retry indefinitely on ppp startup
1474 - activate network profile passed on kernel commandline via netprofile=
1475 - fix iptables invocations again
1476 - translation refresh
1477
1478 * Wed Aug 14 2002 Bill Nottingham <notting@redhat.com>
1479 - fix silly typo in rc.sysinit
1480 - increase timeout for link to 5 seconds (#70545)
1481
1482 * Tue Aug 13 2002 Bill Nottingham <notting@redhat.com>
1483 - require /etc/redhat-release (#68903)
1484 - fix tty2-tty6 (sort of)
1485 - fix iptables invocations (#70807, #71201, #68368)
1486 - other minor tweaks
1487
1488 * Wed Jul 24 2002 Bill Nottingham <notting@redhat.com>
1489 - fix unicode checks in rc.sysinit, lang.{sh,csh} to handle UTF-8@euro
1490
1491 * Tue Jul 16 2002 Bill Nottingham <notting@redhat.com>
1492 - use iptables, not ipchains
1493
1494 * Tue Jul 16 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1495 - /sbin/service: set PATH before calling startup scripts
1496 HOME and TERM are also set during bootup, but they should not make
1497 a difference for well-written daemons.
1498
1499 * Mon Jul 15 2002 Bill Nottingham <notting@redhat.com>
1500 - fix boot-time cleanup of /var
1501 - update po files
1502
1503 * Thu Jul 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1504 - /etc/init.d/functions:
1505 daemon(): avoid starting another bash
1506 killproc(): avoid starting another bash for the default case
1507 - do not call "insmod -p" before loading the "st" module
1508
1509 * Tue Jul 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1510 - allow an option for ups poweroff #68123
1511 - change grep for ONBOOT= #63903
1512 - allow building with a cross-compiler #64362,#64255
1513 - faster check in network-functions:check_default_route()
1514 - better checks for backup files
1515 - drastically reduce the number of consoletype invocations
1516 - do not export "GATEWAY" in network-functions
1517 - code cleanups in rc.sysinit
1518
1519 * Fri Jul 05 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1520 - rc.sysinit: do not load raid modules unless /etc/raidtab exists
1521 - many cleanups for more consistent shell programming and also
1522 many smaller speedups within network scripts, no un-necessary sourcing
1523 of files etc
1524 - nearly re-code /etc/rc.d/rc
1525
1526 * Thu Jun 27 2002 Bill Nottingham <notting@redhat.com>
1527 - a couple minor unicode tweaks in rc.sysinit
1528
1529 * Wed Jun 26 2002 Bill Nottingham <notting@redhat.com>
1530 - move /proc/bus/usb mount, in case USB is in the initrd
1531
1532 * Wed Jun 26 2002 Preston Brown <pbrown@redhat.com>
1533 - don't try to set wireless freq/channel when in Managed mode
1534
1535 * Wed Jun 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1536 - start some sh coding cleanups
1537 - change to /etc/init.d/functions
1538 - eliminate some un-necessary PATH settings
1539 - eliminate some TEXTDOMAIN settings
1540
1541 * Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 6.78-1
1542 - fix UTF-8 checks
1543
1544 * Wed Jun 05 2002 Than Ngo <than@redhat.com> 6.77-1
1545 - fixed a bug in setting defaultgateway
1546
1547 * Thu May 30 2002 Bill Nottingham <notting@redhat.com> 6.76-1
1548 - call unicode_start in lang.{sh,csh}, setsysfont when necessary
1549
1550 * Tue May 28 2002 Bill Nottingham <notting@redhat.com> 6.75-1
1551 - add check for link for dhcp back in
1552
1553 * Fri Apr 19 2002 Bill Nottingham <notting@redhat.com> 6.67-1
1554 - fix silly cut&paste bug in hdparm settings in initscripts
1555
1556 * Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 6.65-1
1557 - Update translations
1558
1559 * Sun Apr 14 2002 Bill Nottingham <notting@redhat.com> 6.64-1
1560 - make sure chatdbg is set before using it (#63448, <Bertil@Askelid.com>)
1561 - allow tweaking of more devices with hdparm (#53511), and
1562 tweak non-disk devices iff they explicitly have a config file
1563 for that device (#56575, #63415)
1564 - some translation updates
1565
1566 * Fri Apr 12 2002 Bill Nottingham <notting@redhat.com> 6.63-1
1567 - ipcalc cleanups (#58410)
1568 - quit stripping binaries
1569 - do LVM init after RAID init too (#63238)
1570 - export all locale variables (#56142)
1571 - run sysctl -p after network init as well
1572
1573 * Tue Apr 09 2002 Bill Nottingham <notting@redhat.com> 6.62-1
1574 - delete X/VNC locks on startup (#63035)
1575 - shut up DMA disabling, move it to after ide-scsi (#62873, #62956)
1576 - use full path to /sbin/ifconfig (#59457)
1577 - /sbin/service: change to root directory before staring/stopping;
1578 also sanitize environment
1579
1580 * Tue Apr 02 2002 Bill Nottingham <notting@redhat.com> 6.61-1
1581 - when disabling DMA, don't use things in /usr
1582
1583 * Thu Mar 28 2002 Bill Nottingham <notting@redhat.com> 6.60-1
1584 - disable DMA on CD-ROMs at bootup
1585
1586 * Wed Mar 27 2002 Bill Nottingham <notting@redhat.com> 6.59-1
1587 - add local hook to halt
1588
1589 * Fri Mar 15 2002 Than Ngo <than@redhat.com> 6.58-1
1590 - fix usernetctl for working with neat
1591
1592 * Thu Mar 14 2002 Bill Nottingham <notting@redhat.com> 6.57-1
1593 - update translations
1594
1595 * Tue Mar 12 2002 Bill Nottingham <notting@redhat.com> 6.56-1
1596 - use nameif for interfaces where we don't agree on HWADDR with the
1597 config file (<harald@redhat.com>)
1598 - LSB support tweaks
1599
1600 * Tue Mar 12 2002 Mike A. Harris <mharris@redhat.com> 6.55-1
1601 - Removed process accounting stuff from rc.sysinit and halt scripts as it is
1602 now handled by the psacct initscript in the psacct package
1603
1604 * Thu Feb 28 2002 Bill Nottingham <notting@redhat.com>
1605 - conflict with older psacct
1606
1607 * Fri Feb 22 2002 Bill Nottingham <notting@redhat.com>
1608 - fix invocation of need_hostname (#58946), a couple other minor tweaks
1609
1610 * Tue Feb 12 2002 Mike A. Harris <mharris@redhat.com>
1611 - rc.sysinit: changed /var/log/pacct to /var/account/pacct for FHS 2.2 compliance
1612
1613 * Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
1614 - run /bin/setfont, not /usr/bin/setfont (kbd)
1615 - lots-o-random bugfixes/tweaks (see ChangeLog)
1616
1617 * Thu Jan 17 2002 Michael K. Johnson <johnsonm@redhat.com>
1618 - Added support for libredhat-kernel.so.* symlink handling
1619
1620 * Wed Nov 7 2001 Than Ngo <than@redhat.com>
1621 - fix bug in setting netmask on s390/s390x (bug #55421)
1622 nmbd daemon works now ;-)
1623
1624 * Fri Nov 2 2001 Than Ngo <than@redhat.com>
1625 - fixed typo bug ifup-ippp
1626
1627 * Mon Oct 29 2001 Than Ngo <than@redhat.com>
1628 - fix bug in channel bundling if MSN is missed
1629 - support DEBUG option
1630
1631 * Wed Sep 19 2001 Than Ngo <than@redhat.com>
1632 - don't show user name by DSL connection
1633
1634 * Sat Sep 8 2001 Bill Nottingham <notting@redhat.com>
1635 - don't run hwclock --adjust on a read-only filesystem
1636
1637 * Thu Sep 6 2001 Than Ngo <than@redhat.com>
1638 * update initscripts-s390.patch for s390/s390x
1639
1640 * Wed Sep 5 2001 Bill Nottingham <notting@redhat.com>
1641 - translation updates
1642 - quota and hwclock tweaks (<pbrown@redhat.com>)
1643
1644 * Mon Sep 3 2001 Bill Nottingham <notting@redhat.com>
1645 - fix severe alias problems (#52882)
1646
1647 * Mon Sep 3 2001 Than Ngo <than@redhat.com>
1648 - don't start pppbind if encapsulation is rawip (bug #52491)
1649
1650 * Sun Sep 2 2001 Than Ngo <than@redhat.com>
1651 - add ISDN patches from pekkas@netcore.fi and pb@bieringer.de (bug #52491)
1652 - fix handling of ISDN LSZ Compresssion
1653
1654 * Thu Aug 30 2001 Than Ngo <than@redhat.com>
1655 - po/de.po: fix typo bug, lo instead 1o
1656
1657 * Wed Aug 29 2001 David Sainty <dsainty@redhat.com>
1658 - fix ifdown for multiple dhcpcd interfaces
1659
1660 * Wed Aug 29 2001 Than Ngo <than@redhat.com>
1661 - fix ISDN dial on demand bug
1662 - fix typo bug in network-functions
1663
1664 * Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com>
1665 - document /etc/sysconfig/authconfig
1666
1667 * Tue Aug 28 2001 Bill Nottingham <notting@redhat.com> 6.31-1
1668 - message un-tweaks (<johnsonm@redhat.com>)
1669 - make getkey more useful, fix some of the autofsck stuff (<johnsonm@redhat.com>)
1670
1671 * Mon Aug 27 2001 Bill Nottingham <notting@redhat.com>
1672 - autofsck support, archive modules/symbol info (<johnsonm@redhat.com>)
1673
1674 * Mon Aug 27 2001 Than Ngo <than@redhat.com>
1675 - fix some typo bugs in ifup-ippp <ubeck@c3pdm.com>
1676
1677 * Fri Aug 24 2001 Bill Nottingham <notting@redhat.com>
1678 - sort output of halt_get_remaining (#52180)
1679 - fix bad translation (#52503)
1680
1681 * Wed Aug 22 2001 Bill Nottingham <notting@redhat.com>
1682 - fix ifup-wireless (#52135)
1683
1684 * Wed Aug 22 2001 Than Ngo <than@redhat.com>
1685 - fix return code of isdnctrl (bug #52225)
1686
1687 * Tue Aug 21 2001 Than Ngo <than@redhat.com>
1688 - fix Bringing up isdn device again. It works now correct.
1689
1690 * Tue Aug 21 2001 Than Ngo <than@redhat.com>
1691 - fix shutdown/Bringing up isdn device
1692
1693 * Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com>
1694 - fix syntax error in lang.csh
1695 - set codeset by echoing to /dev/tty instead of /proc/self/fd/15
1696
1697 * Sun Aug 19 2001 Bill Nottingham <notting@redhat.com>
1698 - fix a broken call to check_device_down
1699 - make all loopback addresses have host scope, not global scope.
1700 Fixes #49374, possibly others
1701
1702 * Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
1703 - add is_available() network function, use it; cleans up ugly modprobe
1704 error messages
1705 - update translation info
1706 - fix #51787
1707
1708 * Wed Aug 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
1709 - adjust s390 patch
1710 - fix up ifup-ctc and mkkerneldoth.s390 (both are s390 specific)
1711
1712 * Mon Aug 13 2001 Yukihiro Nakai <ynakai@redhat.com>
1713 - don't display Chinese Korean if we aren't on a pty
1714
1715 * Sat Aug 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1716 - adjust s390 patches to current sources
1717
1718 * Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
1719 - use GDM_LANG if it's set in lang.sh/lang.csh (#51432, <otaylor@redhat.com>)
1720
1721 * Fri Aug 10 2001 Than Ngo <than@redhat.com>
1722 - don't set MSN if it' empty (it's now optional)
1723 - don't give login name as a cmdline-option (Bug #23066)
1724 - remove peer device file if ppp connection is down
1725 - fix channel bundling
1726
1727 * Thu Aug 9 2001 Bill Nottingham <notting@redhat.com>
1728 - require SysVinit (#51335)
1729
1730 * Wed Aug 8 2001 Bill Nottingham <notting@redhat.com>
1731 - tweak raittab grep slightly (#51231)
1732 - allow resetting of default route for DHCP addresses (#48994)
1733 - save resolv.conf in ifup-ppp for restoration by ifdown-post (#50759)
1734 - when munging firewall rules for dns, only allow dest ports 1025-65535 (#44038, #40833)
1735 - allow shell characters in ppp names (#43719)
1736 - allow setting DHCP arguments, just kill dhcpcd instead of using -k (#46492)
1737 - behave sanely if ifup called when dhcpcd is running (#49392, #51038)
1738
1739 * Mon Aug 6 2001 Bill Nottingham <notting@redhat.com>
1740 - honor HOTPLUG=no if running under hotplug (#47483)
1741 - use awk, not grep, for modprobe -c checks (#49616)
1742 - don't print ugly messages for the case where the device doesn't exist,
1743 and there is no alias (i.e., PCMCIA ONBOOT=yes (#various))
1744 - run kbdconfig in /.unconfigured mode (#43941)
1745 - use a bigger buffer size argument to dmesg (#44024)
1746 - detach loopback devices on shutdown (#43919, #45826)
1747
1748 * Thu Aug 2 2001 Bill Nottingham <notting@redhat.com>
1749 - fix halt_get_remaining() (#50720)
1750
1751 * Tue Jul 31 2001 Bill Nottingham <notting@redhat.com>
1752 - mount all FS types r/o at halt (#50461)
1753 - don't use mii-tool at all (#various)
1754
1755 * Thu Jul 26 2001 Bill Nottingham <notting@redhat.com>
1756 - don't use kbd commands in setsysfont now that we've switched back to
1757 console-tools (#50075)
1758 - sleep in check_link_down; some devices require it
1759 - only bring link down if check_link_down fails
1760
1761 * Wed Jul 25 2001 Bill Nottingham <notting@redhat.com>
1762 - set link up before checking with mii-tool (#49949)
1763
1764 * Tue Jul 24 2001 Bill Nottingham <notting@redhat.com>
1765 - update netdev stuff to use _netdev
1766 - IPv6 updates (<pekkas@netcore.fi>)
1767 - fix downing of devices with static IPs (#49777, #49783)
1768 - put ifcfg-lo back in the package
1769
1770 * Fri Jul 20 2001 Preston Brown <pbrown@redhat.com> 6.06
1771 - updates for quota
1772
1773 * Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
1774 - own some more directories
1775 - use -O nonetdev, require mount package that understands this
1776 - fix do_netreport when called as non-root
1777 - remove ip addresses from interfaces on ifdown
1778 - oops, fix ifup/ifdown
1779
1780 * Mon Jul 16 2001 Than Ngo <than@redhat.com>
1781 - fix country_code for ISDN
1782
1783 * Tue Jul 9 2001 Bill Nottingham <notting@redhat.com>
1784 - fix '--check'
1785 - prereq sh-utils (#43065)
1786 - fix some invocations of reboot/halt (#45966)
1787 - fix typo in ifup-wireless
1788 - don't muck with /etc/issue each boot
1789 - big IPv6 update (<pekkas@netcore.fi>)
1790
1791 * Fri Jul 6 2001 Trond Eivind Glomsrød <teg@redhat.com>
1792 - Add new directories required by new network tool
1793
1794 * Thu Jul 05 2001 Karsten Hopp <karsten@redhat.de>
1795 - disable hwclock on S390 (no such executable)
1796 - Fix up kernel versioning on binary-only modules (S390)
1797 - don't use newt scripts on S390 console
1798
1799 * Sat Jul 01 2001 Trond Eivind Glomsrød <teg@redhat.com>
1800 - reenable pump, but make sure dhcpcd is the default. This
1801 way, upgrades of systems without dhcpcd has a better chance at
1802 working.
1803
1804 * Thu Jun 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
1805 - Disable pump completely
1806
1807 * Wed Jun 27 2001 Than Ngo <than@redhat.com>
1808 - fix pap/chap authentication for syncppp
1809 - support ippp options
1810
1811 * Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
1812 - add ifup-wireless
1813
1814 * Fri Jun 22 2001 Than Ngo <than@redhat.com>
1815 - add support xDSL
1816
1817 * Thu Jun 21 2001 Bill Nottingham <notting@redhat.com>
1818 - more networking script fixes (#45364)
1819 - add stuff for unmounting /initrd
1820
1821 * Thu Jun 21 2001 Than Ngo <than@redhat.com>
1822 - add support ISDN
1823
1824 * Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
1825 - fix extremely broken new network scripts
1826
1827 * Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
1828 - bump version to 5.89
1829 - make it build
1830
1831 * Thu May 17 2001 Bill Nottingham <notting@redhat.com>
1832 - don't run ifup ppp0 if ppp-watch gets SIGINT (#40585, ak@cave.hop.stu.neva.ru)
1833 - fix do_netreport (#37716, #39603 <crlf@aeiou.pt>)
1834
1835 * Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
1836 - copyright: GPL -> license: GPL
1837 - fix a syntax error in lang.csh
1838 - skip commented-out i18n configuration lines in lang.csh
1839
1840 * Fri May 11 2001 Preston Brown <pbrown@redhat.com>
1841 - new network-scripts infrastructure; ifcfg-lo moved to /etc/sysconfig/networking
1842
1843 * Wed May 2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.86-1
1844 - support kbd in setsysfont
1845 - bzip2 source
1846
1847 * Wed Apr 25 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1848 - add further s390 changes:
1849 - ifup-iucv
1850 - mkkerneldoth.s390
1851
1852 * Tue Apr 24 2001 Than Ngo <than@redhat.com>
1853 - add shutdown UPS into halt (bug #34312)
1854
1855 * Sat Apr 7 2001 Preston Brown <pbrown@redhat.com>
1856 - broke out kernel.h updater from rc.sysinit into /sbin/mkkerneldoth
1857
1858 * Fri Apr 6 2001 Bill Nottingham <notting@redhat.com>
1859 - be a little more careful in do_netreport (#34933)
1860
1861 * Tue Apr 3 2001 Bill Nottingham <notting@redhat.com>
1862 - set umask explicitly to 022 in /etc/init.d/functions
1863
1864 * Mon Apr 2 2001 Bill Nottingham <notting@redhat.com>
1865 - fix segfault in usernetctl (#34353)
1866
1867 * Mon Mar 26 2001 Bill Nottingham <notting@redhat.com>
1868 - don't print errors in /etc/init.d/network if kernel.hotplug doesn't exist
1869
1870 * Thu Mar 22 2001 Erik Troan <ewt@redhat.com>
1871 - take advantage of new swapon behaviors
1872
1873 * Wed Mar 14 2001 Bill Nottingham <notting@redhat.com>
1874 - add cipe interfaces last (#31597)
1875
1876 * Tue Mar 13 2001 Bill Nottingham <notting@redhat.com>
1877 - fix typo in ifup (#31627)
1878 - update translation source
1879
1880 * Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com>
1881 - fix typo in rc.sysinit
1882 - fix ifup-routes not setting DEVICE properly
1883
1884 * Mon Mar 12 2001 Preston Brown <pbrown@redhat.com>
1885 - Work properly with new quota utilities
1886
1887 * Mon Mar 5 2001 Bill Nottingham <notting@redhat.com>
1888 - IPv6 fixes (#30506)
1889 - make static-routes handling more sane and consistent (#29500, #29549)
1890 - handle multiple USB controllers *correctly*
1891
1892 * Wed Feb 28 2001 Nalin Dahyabhai <nalin@redhat.com>
1893 - usernetctl, ppp-watch: cleanups
1894 - netreport: use O_NOFOLLOW
1895 - ifup-ppp: let ppp-watch watch over demand-dialed connections (#28927)
1896
1897 * Tue Feb 27 2001 Bill Nottingham <notting@redhat.com>
1898 - don't run isapnp on isapnp-enabled 2.4 kernels (part of #29450)
1899 - disable hotplug during network initscript
1900 - don't munge wireless keys in ifup; that will be done with the
1901 PCMCIA wireless stuff
1902 - run sndconfig --mungepnp for non-native-isapnp soundcards
1903 - don't explicitly kill things in init.d/single, init will do it
1904 - don't explicitly load usb-storage; mount the usbdevfs before initializing
1905 host controller modules
1906
1907 * Wed Feb 21 2001 Bill Nottingham <notting@redhat.com>
1908 - initialize multiple USB controllers if necessary
1909
1910 * Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
1911 - close extra file descriptors before exec()ing commands in initlog
1912
1913 * Mon Feb 19 2001 Bill Nottingham <notting@redhat.com>
1914 - fix some substitions in init.d/functions (fixes various killproc issues)
1915 - make sure ipv6 module alias is available if configured
1916 - fix initlog segfaults in popt when called with bogus stuff (#28140)
1917
1918 * Thu Feb 15 2001 Nalin Dahyabhai <nalin@redhat.com>
1919 - make pidofproc() and killproc() try to use the PID associated with the full
1920 pathname first before killing the daemon by its basename (for daemons that
1921 share the same basename, i.e. "master" in postfix and cyrus-imapd) (#19016)
1922 - fix status() as well
1923
1924 * Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
1925 - fix init.d/single to work around possible kernel problem
1926
1927 * Tue Feb 13 2001 Bill Nottingham <notting@redhat.com>
1928 - fix unmounting of loopback stuff (#26439, #14672)
1929
1930 * Mon Feb 12 2001 Bill Nottingham <notting@redhat.com>
1931 - fix ifup-post so that it will work right when not called from ifup
1932
1933 * Sat Feb 10 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1934 - add all save changes for s390 s390x that won't break anything
1935 patches are from Oliver Paukstadt @ millenux.com
1936
1937 * Fri Feb 9 2001 Bill Nottingham <notting@redhat.com>
1938 - muck with the font in lang.csh/lang.sh, but don't spit out errors (#26903)
1939
1940 * Wed Feb 7 2001 Bill Nottingham <notting@redhat.com>
1941 - ipv6 sync ups (#26502, #25775)
1942 - fix hangs at shutdown (#25744)
1943 - fix ifup-ppp (#26323)
1944
1945 * Tue Feb 6 2001 Bill Nottingham <notting@redhat.com>
1946 - modify firewall on ifup to allow any new DNS servers through (#25951)
1947 - don't muck with the font in lang.csh/lang.sh (#26349)
1948 - don't display Japanese if we aren't on a pty (#25041)
1949 - load ide-scsi if passed on /proc/cmdline
1950
1951 * Mon Feb 5 2001 Trond Eivind Glomsrød <teg@redhat.com>
1952 - i18n updates
1953
1954 * Fri Feb 2 2001 Bill Nottingham <notting@redhat.com>
1955 - actually *ship* the ipv6 (and plusb) files
1956
1957 * Thu Feb 1 2001 Trond Eivind Glomsrød <teg@redhat.com>
1958 - i18n updates
1959
1960 * Tue Jan 30 2001 Bill Nottingham <notting@redhat.com>
1961 - various init.d/functions cleanups (#10761, from <mjt@tls.msk.ru>)
1962 - in daemon(), only look at pidfile to determine if process is running
1963 (#17244, others)
1964 - ifup-ppp enhancements (#17388, from <ayn2@cornell.edu>)
1965 - ipv6 support (#23576, originally by Peter Bieringer <pb@bieringer.de>)
1966 - lots of other minor fixes (see ChangeLog)
1967
1968 * Mon Jan 29 2001 Bill Nottingham <notting@redhat.com>
1969 - add plusb support (#18892, patch from <eric.ayers@compgen.com>)
1970 - don't ignore RETRYTIMEOUT when we never connect (#14071, patch from
1971 <ak@cave.hop.stu.neva.ru>)
1972
1973 * Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
1974 - quiet LVM setup (#24841)
1975 - fix inability to shutdown cleanly (#24889)
1976
1977 * Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
1978 - new i18n mechanism
1979
1980 * Tue Jan 23 2001 Matt Wilson <msw@redhat.com>
1981 - fixed typo in init.d/network - missing | in pipeline
1982
1983 * Mon Jan 22 2001 Bill Nottingham <notting@redhat.com>
1984 - do LVM setup through normal initscripts mechanisms
1985 - ignore backup files in /etc/sysconfig/network-scripts
1986 - lots of .po file updates
1987
1988 * Tue Jan 2 2001 Bill Nottingham <notting@redhat.com>
1989 - initial i18n support - originally from Conectiva
1990
1991 * Mon Dec 11 2000 Bill Nottingham <notting@redhat.com>
1992 - only load sound if persistent DMA buffers are necessary
1993 - fix lots of bugs: #18619, #21187, #21283, #12097
1994 - integrate MAXFAIL option for ppp-watch
1995 - don't load keymaps/fonts on a serial console
1996
1997 * Tue Nov 21 2000 Karsten Hopp <karsten@redhat.de>
1998 - changed hdparm section in rc.sysinit to allow different
1999 parameters for each disk (if needed) by copying
2000 /etc/sysconfig/harddisks to /etc/sysconfig/harddiskhda (hdb,hdc..)
2001 - fix RFE #20967
2002
2003 * Tue Oct 31 2000 Than Ngo <than@redhat.com>
2004 - fix the adding default route if GATEWAY=0.0.0.0
2005
2006 * Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com>
2007 - handle "gw x.x.x.x" as the last pair of flags in ifup-routes (#18804)
2008 - fix top-level makefile install target
2009 - make usernetctl just fall-through if getuid() == 0
2010
2011 * Sun Sep 3 2000 Florian La Roche <Florian.LaRoche@redhat.com>
2012 - /etc/init.d is already provided by chkconfig
2013
2014 * Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
2015 - set "holdoff ${RETRYTIMEOUT} ktune" for demand-dialed PPP links
2016
2017 * Tue Aug 22 2000 Bill Nottingham <notting@redhat.com>
2018 - update documentation (#15475)
2019
2020 * Tue Aug 22 2000 Than Ngo <than@redhat.de>
2021 - add KDE2 support to prefdm
2022
2023 * Mon Aug 21 2000 Bill Nottingham <notting@redhat.com>
2024 - add usleep after kill -KILL in pidofproc, works around lockd issues (#14847)
2025 - add some fallback logic to prefdm (#16464)
2026
2027 * Fri Aug 18 2000 Bill Nottingham <notting@redhat.com>
2028 - don't load usb drivers if they're compiled statically
2029 - don't call ifdown-post twice for ppp (#15285)
2030
2031 * Wed Aug 16 2000 Bill Nottingham <notting@redhat.com>
2032 - fix /boot/kernel.h generation (#16236, #16250)
2033
2034 * Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com>
2035 - be more careful about creating files in netreport (#16164)
2036
2037 * Sat Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
2038 - move documentation for the DEMAND and IDLETIMEOUT values to the right
2039 section of sysconfig.txt
2040
2041 * Wed Aug 9 2000 Bill Nottingham <notting@redhat.com>
2042 - load agpgart if necessary (hack)
2043 - fix /boot/kernel.h stuff (jakub)
2044
2045 * Mon Aug 7 2000 Bill Nottingham <notting@redhat.com>
2046 - remove console-tools requirement
2047 - in netfs, start portmap if needed
2048 - cosmetic cleanups, minor tweaks
2049 - don't probe USB controllers
2050
2051 * Mon Aug 7 2000 Nalin Dahyabhai <nalin@redhat.com>
2052 - fix demand-dialing support for PPP devices
2053 - change updetach back to nodetach
2054
2055 * Sun Aug 6 2000 Bill Nottingham <notting@redhat.com>
2056 - add RETRYCONNECT option for ifcfg-pppX files (kenn@linux.ie)
2057
2058 * Wed Jul 26 2000 Bill Nottingham <notting@redhat.com>
2059 - fix unclean shutdown
2060
2061 * Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
2062 - s/nill/null/g
2063
2064 * Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
2065 - unmount usb filesystem on halt
2066 - run /sbin/ifup-pre-local if it exists
2067
2068 * Tue Jul 18 2000 Trond Eivind Glomsrød <teg@redhat.com>
2069 - add "nousb" command line parameter
2070 - fix some warnings when mounting /proc/bus/usb
2071
2072 * Sat Jul 15 2000 Matt Wilson <msw@redhat.com>
2073 - kill all the PreTransaction stuff
2074 - directory ownership cleanups, add more LSB symlinks
2075 - move all the stuff back in to /etc/rc.d/
2076
2077 * Thu Jul 13 2000 Bill Nottingham <notting@redhat.com>
2078 - fix == tests in rc.sysinit
2079 - more %pretrans tweaks
2080
2081 * Thu Jul 13 2000 Jeff Johnson <jbj@redhat.com>
2082 - test if /etc/rc.d is a symlink already in pre-transaction syscalls.
2083
2084 * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
2085 - implement the %pre with RPM Magic(tm)
2086
2087 * Sat Jul 8 2000 Bill Nottingham <notting@redhat.com>
2088 - fix it to not follow /etc/rc.d
2089
2090 * Fri Jul 7 2000 Bill Nottingham <notting@redhat.com>
2091 - fix %pre, again
2092
2093 * Thu Jul 6 2000 Bill Nottingham <notting@redhat.com>
2094 - tweak %pre back to a mv (rpm is fun!)
2095 - do USB initialization before fsck, so keyboard works if it fails
2096
2097 * Mon Jul 3 2000 Bill Nottingham <notting@redhat.com>
2098 - rebuild; allow 'fastboot' kernel command line option to skip fsck
2099
2100 * Mon Jul 03 2000 Nalin Dahyabhai <nalin@redhat.com>
2101 - fix demand-dialing with PPP
2102
2103 * Sun Jul 02 2000 Trond Eivind Glomsrød <teg@redhat.com>
2104 - don't use tail
2105
2106 * Thu Jun 28 2000 Trond Eivind Glomsrød <teg@redhat.com>
2107 - add support for USB controllers and HID devices
2108 (mice, keyboards)
2109
2110 * Tue Jun 27 2000 Trond Eivind Glomsrød <teg@redhat.com>
2111 - add support for EIDE optimization
2112
2113 * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
2114 - tweak %%pre
2115
2116 * Wed Jun 21 2000 Preston Brown <pbrown@redhat.com>
2117 - noreplace for adjtime file
2118
2119 * Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com>
2120 - ifup-ppp: add hooks for demand-dialing PPP
2121 - functions: use basename of process when looking for its PID file
2122
2123 * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
2124 - move from /etc/rc.d/init.d -> /etc/init.d
2125
2126 * Tue Jun 13 2000 Bill Nottingham <notting@redhat.com>
2127 - set soft limit, not hard, in daemon function
2128 - /var/shm -> /dev/shm
2129
2130 * Thu Jun 08 2000 Preston Brown <pbrown@redhat.com>
2131 - use dhcpcd if pump fails.
2132 - use depmod -A (faster)
2133
2134 * Sun Jun 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2135 - add autologin support to prefdm
2136
2137 * Thu Jun 1 2000 Bill Nottingham <notting@redhat.com>
2138 - random networking fixes (alias routes, others)
2139 - conf.modules -> modules.conf
2140
2141 * Thu May 11 2000 Nalin Dahyabhai <nalin@redhat.com>
2142 - fix incorrect grep invocation in rc.sysinit (bug #11267)
2143
2144 * Wed Apr 19 2000 Bill Nottingham <notting@redhat.com>
2145 - fix lang.csh, again (oops)
2146 - use /poweroff, /halt to determine whether to poweroff
2147
2148 * Thu Apr 14 2000 Bill Nottingham <notting@redhat.com>
2149 - fix testing of RESOLV_MODS (which shouldn't be used anyways)
2150
2151 * Tue Apr 04 2000 Ngo Than <than@redhat.de>
2152 - fix overwrite problem of resolv.conf on ippp/ppp/slip connections
2153
2154 * Mon Apr 3 2000 Bill Nottingham <notting@redhat.com>
2155 - fix typo in functions file
2156 - explicitly set --localtime when calling hwclock if necessary
2157
2158 * Fri Mar 31 2000 Bill Nottingham <notting@redhat.com>
2159 - fix typo in /etc/rc.d/init.d/network that broke linuxconf (#10472)
2160
2161 * Mon Mar 27 2000 Bill Nottingham <notting@redhat.com>
2162 - remove compatiblity chkconfig links
2163 - run 'netfs stop' on 'network stop' if necessary
2164
2165 * Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2166 - Mount /var/shm if required (2.3.99, 2.4)
2167
2168 * Mon Mar 20 2000 Bill Nottingham <notting@redhat.com>
2169 - don't create resolv.conf 0600
2170 - don't run ps as much (speed issues)
2171 - allow setting of MTU
2172 - other minor fixes
2173
2174 * Sun Mar 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
2175 - Start devfsd if installed and needed (Kernel 2.4...)
2176
2177 * Wed Mar 8 2000 Bill Nottingham <notting@redhat.com>
2178 - check that network devices are up before bringing them down
2179
2180 * Wed Mar 8 2000 Jakub Jelinek <jakub@redhat.com>
2181 - update sysconfig.txt
2182
2183 * Tue Mar 7 2000 Bill Nottingham <notting@redhat.com>
2184 - rerun sysctl on network start (for restarts)
2185
2186 * Mon Feb 28 2000 Bill Nottingham <notting@redhat.com>
2187 - don't read commented raid devices
2188
2189 * Mon Feb 21 2000 Bill Nottingham <notting@redhat.com>
2190 - fix typo in resolv.conf munging
2191
2192 * Thu Feb 17 2000 Bill Nottingham <notting@redhat.com>
2193 - sanitize repair prompt
2194 - initial support for isdn-config stuff
2195
2196 * Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
2197 - add which as a package dependency (bug #9416)
2198
2199 * Tue Feb 8 2000 Bill Nottingham <notting@redhat.com>
2200 - fixes for sound module loading
2201
2202 * Mon Feb 7 2000 Nalin Dahyabhai <nalin@redhat.com>
2203 - check that LC_ALL/LINGUAS and LANG are set before referencing them in lang.csh
2204 - fix check for /var/*/news, work around for bug #9140
2205
2206 * Fri Feb 4 2000 Nalin Dahyabhai <nalin@redhat.com>
2207 - fix bug #9102
2208
2209 * Fri Feb 4 2000 Bill Nottingham <notting@redhat.com>
2210 - if LC_ALL/LINGUAS == LANG, don't set them
2211
2212 * Wed Feb 2 2000 Bill Nottingham <notting@redhat.com>
2213 - fix problems with linuxconf static routes
2214
2215 * Tue Feb 1 2000 Nalin Dahyabhai <nalin@redhat.com>
2216 - shvar cleaning
2217 - fix wrong default route ip in network-functions
2218
2219 * Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
2220 - attempt to restore default route if PPP takes it over
2221 - man page fix for ipcalc
2222 - shvar cleaning
2223 - automate maintaining /boot/System.map symlinks
2224
2225 * Mon Jan 31 2000 Bill Nottingham <notting@redhat.com>
2226 - fix hanging ppp-watch
2227 - fix issues with cleaning of /var/{run,lock}
2228
2229 * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
2230 - fix pidof calls in pidofproc
2231
2232 * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
2233 - fix ifup-ipx, don't munge resolv.conf if $DNS1 is already in it
2234
2235 * Thu Jan 13 2000 Bill Nottingham <notting@redhat.com>
2236 - link popt statically
2237
2238 * Mon Jan 10 2000 Bill Nottingham <notting@redhat.com>
2239 - don't try to umount /loopfs
2240
2241 * Mon Dec 27 1999 Bill Nottingham <notting@redhat.com>
2242 - switch to using sysctl
2243
2244 * Mon Dec 13 1999 Bill Nottingham <notting@redhat.com>
2245 - umount /proc *after* trying to turn off raid
2246
2247 * Mon Dec 06 1999 Michael K. Johnson <johnsonm@redhat.com>
2248 - improvements in clone device handling
2249 - better signal handling in ppp-watch
2250 - yet another attempt to fix those rare PAP/CHAP problems
2251
2252 * Sat Nov 28 1999 Bill Nottingham <notting@redhat.com>
2253 - impressive. Three new features, three new bugs.
2254
2255 * Mon Nov 22 1999 Michael K. Johnson <johnsonm@redhat.com>
2256 - fix more possible failed CHAP authentication (with chat scripts)
2257 - fix ppp default route problem
2258 - added ppp-watch man page, fixed usernetctl man page
2259 - make ifup-ppp work again when called from netcfg and linuxconf
2260 - try to keep ppp-watch from filling up logs by respawning pppd too fast
2261 - handle all linuxconf-style alias files with linuxconf
2262
2263 * Mon Nov 22 1999 Bill Nottingham <notting@redhat.com>
2264 - load mixer settings for monolithic sound
2265 - man page for ppp-watch
2266 - add ARP variable for ifup
2267 - some i18n fixes
2268
2269 * Wed Nov 10 1999 Bill Nottingham <notting@redhat.com>
2270 - control stop-a separately from sysrq
2271
2272 * Mon Nov 08 1999 Michael K. Johnson <johnsonm@redhat.com>
2273 - fix some failed CHAP authentication
2274 - fix extremely unlikely, but slightly possible kill-random-process
2275 bug in ppp-watch
2276 - allow DNS{1,2} in any ifcfg-* file, not just PPP, and
2277 add nameserver entries, don't just replace them
2278 - don't use /tmp/confirm, use /var/run/confirm instead
2279
2280 * Tue Nov 2 1999 Bill Nottingham <notting@redhat.com>
2281 - fix lang.csh /tmp race oops
2282
2283 * Wed Oct 27 1999 Bill Nottingham <notting@redhat.com>
2284 - we now ship hwclock on alpha.
2285
2286 * Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com>
2287 - fix check for serial console, don't use -C argument to fsck
2288 on serial console.
2289
2290 * Mon Oct 18 1999 Bill Nottingham <notting@redhat.com>
2291 - do something useful with linuxconf 'any' static routes.
2292
2293 * Tue Oct 12 1999 Matt Wilson <msw@redhat.com>
2294 - added patch from Owen to source i18n configuration before starting prefdm
2295
2296 * Mon Oct 11 1999 Bill Nottingham <notting@redhat.com>
2297 - support for linuxconf alias files
2298 - add support for Jensen clocks.
2299
2300 * Tue Oct 5 1999 Bill Nottingham <notting@redhat.com>
2301 - assorted brown paper bag fixes
2302 - check for programs/files before executing/sourcing them
2303 - control stop-a like magic sysrq
2304
2305 * Thu Sep 30 1999 Bill Nottingham <notting@redhat.com>
2306 - req. e2fsprogs >= 1.15
2307
2308 * Fri Sep 24 1999 Bill Nottingham <notting@redhat.com>
2309 - munge C locale definitions to en_US
2310 - use fsck's completion bar
2311
2312 * Thu Sep 23 1999 Michael K. Johnson <johnsonm@redhat.com>
2313 - ppp-watch now always kills pppd pgrp to make sure dialers are dead,
2314 and tries to hang up the modem
2315
2316 * Tue Sep 21 1999 Bill Nottingham <notting@redhat.com>
2317 - add a DEFRAG_IPV4 option
2318
2319 * Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
2320 - changed to more modern defaults for PPP connections
2321
2322 * Mon Sep 20 1999 Bill Nottingham <notting@redhat.com>
2323 - kill processes for umount in halt, too.
2324 - fixes to remove /usr dependencies
2325
2326 * Fri Sep 17 1999 Bill Nottingham <notting@redhat.com>
2327 - load/save mixer settings in rc.sysinit, halt
2328
2329 * Mon Sep 13 1999 Michael K. Johnson <johnsonm@redhat.com>
2330 - add --remotename option to wvdial code
2331 - make sure we do not have an earlier version of wvdial that doesn't
2332 know how handle --remotename
2333 - make ppp-watch background itself after 30 seconds even if
2334 connection does not come up, at boot time only, so that a
2335 non-functional PPP connection cannot hang boot.
2336
2337 * Sun Sep 12 1999 Bill Nottingham <notting@redhat.com>
2338 - a couple of /bin/sh -> /bin/bash fixes
2339 - fix swapoff silliness
2340
2341 * Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
2342 - chkconfig --del in %preun, not %postun
2343 - use killall5 in halt
2344 - swapoff non-/etc/fstab swap
2345
2346 * Wed Sep 08 1999 Michael K. Johnson <johnsonm@redhat.com>
2347 - ifdown now synchronous (modulo timeouts)
2348 - several unrelated cleanups, primarily in ifdown
2349
2350 * Tue Sep 7 1999 Bill Nottingham <notting@redhat.com>
2351 - add an 'unconfigure' sort of thing
2352
2353 * Mon Sep 06 1999 Michael K. Johnson <johnsonm@redhat.com>
2354 - added ppp-watch to make "ifup ppp*" synchronous
2355
2356 * Fri Sep 3 1999 Bill Nottingham <notting@redhat.com>
2357 - require lsof
2358
2359 * Wed Sep 1 1999 Bill Nottingham <notting@redhat.com>
2360 - add interactive prompt
2361
2362 * Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
2363 - disable magic sysrq by default
2364
2365 * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
2366 - new NFS unmounting from Bill Rugolsky <rugolsky@ead.dsa.com>
2367 - fix ifup-sl/dip confusion
2368 - more raid startup cleanup
2369 - make utmp group 22
2370
2371 * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
2372 - pass hostname to pump
2373 - add lang.csh
2374
2375 * Thu Aug 19 1999 Bill Nottingham <notting@redhat.com>
2376 - more wvdial updates
2377 - fix a *stupid* bug in process reading
2378
2379 * Fri Aug 13 1999 Bill Nottingham <notting@redhat.com>
2380 - add new /boot/kernel.h boot kernel version file
2381 - new RAID startup
2382
2383 * Fri Aug 13 1999 Michael K. Johnson <johnsonm@redhat.com>
2384 - use new linkname argument to pppd to make if{up,down}-ppp
2385 reliable -- requires ppp-2.3.9 or higher
2386
2387 * Mon Aug 2 1999 Bill Nottingham <notting@redhat.com>
2388 - fix typo.
2389 - add 'make check'
2390
2391 * Wed Jul 28 1999 Michael K. Johnson <johnsonm@redhat.com>
2392 - simple wvdial support for ppp connections
2393
2394 * Mon Jul 26 1999 Bill Nottingham <notting@redhat.com>
2395 - stability fixes for initlog
2396 - initlog now has a config file
2397 - add alias speedup from dharris@drh.net
2398 - move netfs links
2399 - usleep updates
2400
2401 * Thu Jul 8 1999 Bill Nottingham <notting@redhat.com>
2402 - remove timeconfig dependency
2403 - i18n fixes from nkbj@image.dk
2404 - move inputrc to setup package
2405
2406 * Tue Jul 6 1999 Bill Nottingham <notting@redhat.com>
2407 - fix killall links, some syntax errors
2408
2409 * Fri Jun 25 1999 Bill Nottingham <notting@redhat.com>
2410 - don't make module-info, System.map links
2411 - handle utmpx/wtmpx
2412 - fix lots of bugs in 4.21 release :)
2413
2414 * Thu Jun 17 1999 Bill Nottingham <notting@redhat.com>
2415 - set clock as soon as possible
2416 - use INITLOG_ARGS everywhere
2417 - other random fixes in networking
2418
2419 * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
2420 - oops, don't create /var/run/utmp and then remove it.
2421 - stomp RAID bugs flat. Sort of.
2422
2423 * Mon May 24 1999 Bill Nottingham <notting@redhat.com>
2424 - clean out /var better
2425 - let everyone read /var/run/ppp*.dev
2426 - fix network startup so it doesn't depend on /usr
2427
2428 * Tue May 11 1999 Bill Nottingham <notting@redhat.com>
2429 - various fixes to rc.sysinit
2430 - fix raid startup
2431 - allow for multi-processor /etc/issues
2432
2433 * Sun Apr 18 1999 Matt Wilson <msw@redhat.com>
2434 - fixed typo - "Determing" to "Determining"
2435
2436 * Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
2437 - updated inputrc so that home/end/del work on console, not just X
2438
2439 * Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
2440 - fix more logic in initlog
2441 - fix for kernel versions in ifup-aliases
2442 - log to /var/log/boot.log
2443
2444 * Wed Apr 07 1999 Bill Nottingham <notting@redhat.com>
2445 - fix daemon() function so you can specify pid to look for
2446
2447 * Wed Apr 07 1999 Erik Troan <ewt@redhat.com>
2448 - changed utmp,wtmp to be group writeable and owned by group utmp
2449
2450 * Tue Apr 06 1999 Bill Nottingham <notting@redhat.com>
2451 - fix loading of consolefonts/keymaps
2452 - three changelogs. three developers. one day. Woohoo!
2453
2454 * Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com>
2455 - fixed ifup-ipx mix-up over . and _
2456
2457 * Tue Apr 06 1999 Erik Troan <ewt@redhat.com>
2458 - run /sbin/ifup-local after bringing up an interface (if that file exists)
2459
2460 * Mon Apr 5 1999 Bill Nottingham <notting@redhat.com>
2461 - load keymaps & console font early
2462 - fixes for channel bonding, strange messages with non-boot network interfaces
2463
2464 * Sat Mar 27 1999 Cristian Gafton <gafton@redhat.com>
2465 - added sysvinitfiles as a documenattaion file
2466
2467 * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
2468 - nfsfs -> netfs
2469
2470 * Mon Mar 22 1999 Bill Nottingham <notting@redhat.com>
2471 - don't source /etc/sysconfig/init if $BOOTUP is already set
2472
2473 * Fri Mar 19 1999 Bill Nottingham <notting@redhat.com>
2474 - don't run linuxconf if /usr isn't mounted
2475 - set macaddr before bootp
2476 - zero in the /var/run/utmpx file (gafton)
2477 - don't set hostname on ppp/slip (kills X)
2478
2479 * Wed Mar 17 1999 Bill Nottingham <notting@redhat.com>
2480 - exit ifup if pump fails
2481 - fix stupid errors in reading commands from subprocess
2482
2483 * Tue Mar 16 1999 Bill Nottingham <notting@redhat.com>
2484 - fix ROFS logging
2485 - make fsck produce more happy output
2486 - fix killproc logic
2487
2488 * Mon Mar 15 1999 Bill Nottingham <notting@redhat.com>
2489 - doc updates
2490 - support for SYSFONTACM, other console-tools stuff
2491 - add net route for interface if it isn't there.
2492 - fix for a bash/bash2 issue
2493
2494 * Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
2495 - pam_console lockfile cleanup added to rc.sysinit
2496
2497 * Sun Mar 14 1999 Bill Nottingham <notting@redhat.com>
2498 - fixes in functions for 'action'
2499 - fixes for pump
2500
2501 * Wed Mar 10 1999 Bill Nottingham <notting@redhat.com>
2502 - Mmm. Must always remove debugging code. before release. *thwap*
2503 - pump support
2504 - mount -a after mount -a -t nfs
2505
2506 * Thu Feb 25 1999 Bill Nottingham <notting@redhat.com>
2507 - put preferred support back in
2508
2509 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
2510 - fix single-user mode (source functions, close if)
2511
2512 * Wed Feb 10 1999 Bill Nottingham <notting@redhat.com>
2513 - turn off xdm in runlevel 5 (now a separate service)
2514
2515 * Thu Feb 4 1999 Bill Nottingham <notting@redhat.com>
2516 - bugfixes (ifup-ppp, kill -TERM, force fsck, hwclock --adjust, setsysfont)
2517 - add initlog support. Now everything is logged (and bootup looks different)
2518
2519 * Thu Nov 12 1998 Preston Brown <pbrown@redhat.com>
2520 - halt now passed the '-i' flag so that network interfaces disabled
2521
2522 * Tue Nov 10 1998 Michael K. Johnson <johnsonm@redhat.com>
2523 - handle new linuxconf output for ipaliases
2524
2525 * Mon Oct 15 1998 Erik Troan <ewt@redhat.com>
2526 - fixed raid start stuff
2527 - added raidstop to halt
2528
2529 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
2530 - handle LC_ALL
2531
2532 * Mon Oct 12 1998 Preston Brown <pbrown@redhat.com>
2533 - adjusted setsysfont to always run setfont, even if only w/default font
2534
2535 * Tue Oct 06 1998 Cristian Gafton <gafton@redhat.com>
2536 - rc.sysvinit should be working with all kernel versions now
2537 - requires e2fsprogs (for fsck)
2538 - set INPUTRC and LESSCHARSET on linux-lat
2539
2540 * Wed Sep 16 1998 Jeff Johnson <jbj@redhat.com>
2541 - /etc/rc.d/rc: don't run /etc/rc.d/rcN.d/[KS]??foo.{rpmsave,rpmorig} scripts.
2542 - /etc/rc.d/rc.sysinit: raid startup (Nigel.Metheringham@theplanet.net).
2543 - /sbin/setsysfont: permit unicode fonts.
2544
2545 * Mon Aug 17 1998 Erik Troan <ewt@redhat.com>
2546 - don't add 'Red Hat Linux' to /etc/issue; use /etc/redhat-release as is
2547
2548 * Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com>
2549 - paranoia improvements to .rhkmvtag
2550 - if psacct with /sbin/accton, than turn off accounting
2551
2552 * Tue Jul 7 1998 Jeff Johnson <jbj@redhat.com>
2553 - start/stop run levels changed.
2554 - ipx_configure/ipx_internal_net moved to /sbin.
2555
2556 * Wed Jul 01 1998 Erik Troan <ewt@redhat.com>
2557 - usernetctl didn't understand "" around USERCTL attribute
2558
2559 * Wed Jul 1 1998 Jeff Johnson <jbj@redhat.com>
2560 - Use /proc/version to find preferred modules.
2561 - Numerous buglets fixed.
2562
2563 * Sun Jun 07 1998 Erik Troan <ewt@redhat.com>
2564 - rc.sysinit looks for bootfile= as well as BOOT_IMAGE to set
2565 /lib/modules/preferred symlink
2566
2567 * Mon Jun 01 1998 Erik Troan <ewt@redhat.com>
2568 - ipcalc should *never* have been setgid anything
2569 - depmod isn't run properly for non-serial numbered kernels
2570
2571 * Wed May 06 1998 Donnie Barnes <djb@redhat.com>
2572 - added system font and language setting
2573
2574 * Mon May 04 1998 Michael K. Johnson <johnsonm@redhat.com>
2575 - Added missing files to packagelist.
2576
2577 * Sat May 02 1998 Michael K. Johnson <johnsonm@redhat.com>
2578 - Added lots of linuxconf support. Should still work on systems that
2579 do not have linuxconf installed, but linuxconf gives enhanced support.
2580 - In concert with linuxconf, added IPX support. Updated docs to reflect it.
2581
2582 * Fri May 01 1998 Erik Troan <ewt@redhat.com>
2583 - rc.sysinit uses preferred directory
2584
2585 * Sun Apr 05 1998 Erik Troan <ewt@redhat.com>
2586 - updated rc.sysinit to deal with kernel versions with release numbers
2587
2588 * Sun Mar 22 1998 Erik Troan <ewt@redhat.com>
2589 - use ipcalc to calculate the netmask if one isn't specified
2590
2591 * Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
2592 - added and made use of ipcalc
2593
2594 * Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
2595 - removed unnecessary dhcp log from /tmp
2596
2597 * Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
2598 - if bootpc fails, take down the device
2599
2600 * Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
2601 - added check for mktemp failure
2602
2603 * Thu Feb 05 1998 Erik Troan <ewt@redhat.com>
2604 - fixed support for user manageable cloned devices
2605
2606 * Mon Jan 12 1998 Michael K. Johnson <johnsonm@redhat.com>
2607 - /sbin/ isn't always in $PATH, so call /sbin/route in ifup-routes
2608
2609 * Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
2610 - touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys
2611 - the logic for when /var/lock/subsys/kerneld is touched was backwards
2612
2613 * Tue Dec 30 1997 Erik Troan <ewt@redhat.com>
2614 - tried to get /proc stuff right one more time (uses -t nonfs,proc now)
2615 - added support for /fsckoptions
2616 - changed 'yse' to 'yes' in KERNELD= line
2617
2618 * Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
2619 - set domainname to "" if none is specified in /etc/sysconfig/network
2620 - fix /proc mounting to get it in /etc/mtab
2621
2622 * Mon Dec 08 1997 Michael K. Johnson <johnsonm@redhat.com>
2623 - fixed inheritance for clone devices
2624
2625 * Fri Nov 07 1997 Erik Troan <ewt@redhat.com>
2626 - added sound support to rc.sysinit
2627
2628 * Fri Nov 07 1997 Michael K. Johnson <johnsonm@redhat.com>
2629 - Added missing "then" clause
2630
2631 * Thu Nov 06 1997 Michael K. Johnson <johnsonm@redhat.com>
2632 - Fixed DEBUG option in ifup-ppp
2633 - Fixed PPP persistance
2634 - Only change IP forwarding if necessary
2635
2636 * Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
2637 - removed the skeleton init script
2638 - added the ability to 'nice' daemons
2639
2640 * Tue Oct 28 1997 Erik Troan <ewt@redhat.com>
2641 - touch /var/lock/subsys/kerneld if it's running, and after mounting /var
2642 - applied dhcp fix
2643
2644 * Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
2645 - added status|restart to init scripts
2646
2647 * Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
2648 - touch random seed file before chmod'ing it.
2649
2650 * Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
2651 - run domainname if NISDOMAIN is set
2652
2653 * Wed Oct 15 1997 Michael K. Johnson <johnsonm@redhat.com>
2654 - Make the random seed file mode 600.
2655
2656 * Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
2657 - bring down ppp devices if ifdown-ppp is called while ifup-ppp is sleeping.
2658
2659 * Mon Oct 13 1997 Erik Troan <ewt@redhat.com>
2660 - moved to new chkconfig conventions
2661
2662 * Sat Oct 11 1997 Erik Troan <ewt@redhat.com>
2663 - fixed rc.sysinit for hwclock compatibility
2664
2665 * Thu Oct 09 1997 Erik Troan <ewt@redhat.com>
2666 - run 'ulimit -c 0' before running scripts in daemon function
2667
2668 * Wed Oct 08 1997 Donnie Barnes <djb@redhat.com>
2669 - added chkconfig support
2670 - made all rc*.d symlinks have missingok flag
2671
2672 * Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
2673 - fixed network-scripts to allow full pathnames as config files
2674 - removed some old 3.0.3 pcmcia device handling
2675
2676 * Wed Oct 01 1997 Michael K. Johnson <johnsonm@redhat.com>
2677 - /var/run/netreport needs to be group-writable now that /sbin/netreport
2678 is setguid instead of setuid.
2679
2680 * Tue Sep 30 1997 Michael K. Johnson <johnsonm@redhat.com>
2681 - Added network-functions to spec file.
2682 - Added report functionality to usernetctl.
2683 - Fixed bugs I introduced into usernetctl while adding clone device support.
2684 - Clean up entire RPM_BUILD_ROOT directory in %clean.
2685
2686 * Mon Sep 29 1997 Michael K. Johnson <johnsonm@redhat.com>
2687 - Clone device support in network scripts, rc scripts, and usernetctl.
2688 - Disassociate from controlling tty in PPP and SLIP startup scripts,
2689 since they act as daemons.
2690 - Spec file now provides start/stop symlinks, since they don't fit in
2691 the CVS archive.
2692
2693 * Tue Sep 23 1997 Donnie Barnes <djb@redhat.com>
2694 - added mktemp support to ifup
2695
2696 * Thu Sep 18 1997 Donnie Barnes <djb@redhat.com>
2697 - fixed some init.d/functions bugs for stopping httpd
2698
2699 * Tue Sep 16 1997 Donnie Barnes <djb@redhat.com>
2700 - reworked status() to adjust for processes that change their argv[0] in
2701 the process table. The process must still have it's "name" in the argv[0]
2702 string (ala sendmail: blah blah).
2703
2704 * Mon Sep 15 1997 Erik Troan <ewt@redhat.com>
2705 - fixed bug in FORWARD_IPV4 support
2706
2707 * Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
2708 - added support for FORWARD_IPV4 variable
2709
2710 * Thu Sep 11 1997 Donald Barnes <djb@redhat.com>
2711 - added status function to functions along with better killproc
2712 handling.
2713 - added /sbin/usleep binary (written by me) and man page
2714 - changed BuildRoot to /var/tmp instead of /tmp
2715
2716 * Tue Jun 10 1997 Michael K. Johnson <johnsonm@redhat.com>
2717 - /sbin/netreport sgid rather than suid.
2718 - /var/run/netreport writable by group root.
2719
2720 - /etc/ppp/ip-{up|down} no longer exec their local versions, so
2721 now ifup-post and ifdown-post will be called even if ip-up.local
2722 and ip-down.local exist.
2723
2724 * Tue Jun 03 1997 Michael K. Johnson <johnsonm@redhat.com>
2725 - Added missing -f to [ invocation in ksyms check.
2726
2727 * Fri May 23 1997 Michael K. Johnson <johnsonm@redhat.com>
2728 - Support for net event notification:
2729 Call /sbin/netreport to request that SIGIO be sent to you whenever
2730 a network interface changes status (won't work for brining up SLIP
2731 devices).
2732 Call /sbin/netreport -r to remove the notification request.
2733 - Added ifdown-post, and made all the ifdown scrips call it, and
2734 added /etc/ppp/ip-down script that calls /etc/ppp/ip-down.local
2735 if it exists, then calls ifdown-post.
2736 - Moved ifup and ifdown to /sbin
2737
2738 * Tue Apr 15 1997 Michael K. Johnson <johnsonm@redhat.com>
2739 - usernetctl put back in ifdown
2740 - support for slaved interfaces
2741
2742 * Wed Apr 02 1997 Erik Troan <ewt@redhat.com>
2743 - Created ifup-post from old ifup
2744 - PPP, PLIP, and generic ifup use ifup-post
2745
2746 * Fri Mar 28 1997 Erik Troan <ewt@redhat.com>
2747 - Added DHCP support
2748 - Set hostname via reverse name lookup after configuring a networking
2749 device if the current hostname is (none) or localhost
2750
2751 * Tue Mar 18 1997 Erik Troan <ewt@redhat.com>
2752 - Got rid of xargs dependency in halt script
2753 - Don't mount /proc twice (unmount it in between)
2754 - sulogin and filesystem unmounting only happened for a corrupt root
2755 filesystem -- it now happens when other filesystems are corrupt as well
2756
2757 * Tue Mar 04 1997 Michael K. Johnson <johnsonm@redhat.com>
2758 - PPP fixes and additions
2759
2760 * Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
2761 - Mount proc before trying to start kerneld so we can test for /proc/ksyms
2762 properly.
2763
2764 * Wed Feb 26 1997 Michael K. Johnson <johnsonm@redhat.com>
2765 - Added MTU for PPP.
2766 - Put PPPOPTIONS at the end of the options string instead of at the
2767 beginning so that they override other options. Gives users more rope...
2768 - Don't do module-based stuff on non-module systems. Ignore errors if
2769 st module isn't there and we try to load it.
2770
2771 * Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com>
2772 - Changed ifup-ppp and ifdown-ppp not to use doexec, because the argv[0]
2773 provided by doexec goes away when pppd gets swapped out.
2774 - ifup-ppp now sets remotename to the logical name of the device.
2775 This will BREAK current PAP setups on netcfg-managed interfaces,
2776 but we needed to do this to add a reasonable interface-specific
2777 PAP editor to netcfg.
2778
2779 * Fri Feb 07 1997 Erik Troan <ewt@redhat.com>
2780 - Added usernetctl wrapper for user mode ifup and ifdown's and man page
2781 - Rewrote ppp and slip kill and retry code
2782 - Added doexec and man page

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