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

Contents of /rpms/initscripts/sme7/initscripts.spec

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


Revision 1.5 - (show annotations) (download)
Fri Sep 12 03:13:31 2008 UTC (15 years, 9 months ago) by slords
Branch: MAIN
CVS Tags: initscripts-7_93_33-1_centos4_el4_sme
Changes since 1.4: +15 -1 lines
* Thu Sep 11 2008 Shad L. Lords <slords@mail.com> 7.93.33-1.centos4.sme
- Reapply SME Server patches [SME: 2043]
- 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 # $Id: initscripts.spec,v 1.3 2008/04/09 13:51:49 slords Exp $
2
3 Summary: The inittab file and the /etc/init.d scripts.
4 Name: initscripts
5 Version: 7.93.33
6 License: GPL
7 Group: System Environment/Base
8 Release: 1.centos4%{?dist}
9 Source: initscripts-%{version}.tar.bz2
10 URL: http://fedora.redhat.com/projects/additional-projects/initscripts/
11 Patch0: initscripts-s390.patch
12 Patch100: centos4-initscripts.patch
13 Patch1000: smeserver-initscripts-service.patch
14 BuildRoot: /%{_tmppath}/%{name}-%{version}-%{release}-root
15 Requires: mingetty, /bin/awk, /bin/sed, mktemp, e2fsprogs >= 1.15
16 Requires: /sbin/sysctl, sysklogd >= 1.3.31
17 Requires: setup >= 2.0.3, /sbin/fuser, /bin/grep
18 Requires: modutils >= 2.3.11-5
19 Requires: util-linux >= 2.10s-11, mount >= 2.11l
20 Requires: bash >= 3.0, SysVinit
21 Requires: /sbin/ip, /sbin/arping, net-tools
22 Requires: /etc/redhat-release, dev
23 Requires: ethtool >= 1.8-2, kernel >= 2.6, /sbin/nash, /sbin/runuser
24 Conflicts: mkinitrd < 4.0
25 Conflicts: timeconfig < 3.0, ppp < 2.3.9, wvdial < 1.40-3
26 Conflicts: ypbind < 1.6-12, psacct < 6.3.2-12, kbd < 1.06-19, lokkit < 0.50-14
27 Conflicts: udev < 0:032
28 Conflicts: tcsh < 6.13-5, diskdumputils < 1.1.0
29 Obsoletes: rhsound sapinit
30 Prereq: /sbin/chkconfig, /usr/sbin/groupadd, gawk, fileutils, sh-utils
31 BuildPrereq: glib2-devel popt gettext pkgconfig
32 BuildPrereq: kudzu-devel >= 1.1.80
33
34 %description
35 The initscripts package contains the basic system scripts used to boot
36 your CentOS system, change runlevels, and shut the system down
37 cleanly. Initscripts also contains the scripts that activate and
38 deactivate most network interfaces.
39
40
41 %prep
42 %setup -q
43 %ifarch s390 s390x
44 %patch0 -p1 -b .s390init
45 %endif
46
47 #added by CentOS
48 %patch100 -p1
49
50 %patch1000 -p1
51
52 %build
53 make
54
55 %install
56 rm -rf $RPM_BUILD_ROOT
57 make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install
58
59 # build file list of locale stuff in with lang tags
60 pushd %{buildroot}/%{_datadir}/locale
61 for foo in * ; do
62 echo "%lang($foo) %{_datadir}/locale/$foo/*/*" >> \
63 $RPM_BUILD_DIR/%{name}-%{version}/trans.list
64 done
65 popd
66
67 %ifnarch s390 s390x
68 rm -f \
69 $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-ctc \
70 $RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-iucv \
71 $RPM_BUILD_ROOT/etc/rc.d/rc.sysinit.orig
72 %else
73 rm -f \
74 $RPM_BUILD_ROOT/etc/rc.d/rc.sysinit.s390init \
75 $RPM_BUILD_ROOT/etc/sysconfig/init.s390
76 %endif
77
78 %pre
79 /usr/sbin/groupadd -g 22 -r -f utmp
80
81 %post
82 touch /var/log/wtmp
83 touch /var/run/utmp
84 chown root:utmp /var/log/wtmp /var/run/utmp
85 chmod 664 /var/log/wtmp /var/run/utmp
86
87 /sbin/chkconfig --add netfs
88 /sbin/chkconfig --add network
89 /sbin/chkconfig --add rawdevices
90
91 # handle serial installs semi gracefully
92 if [ $1 = 0 ]; then
93 if [ "$TERM" = "vt100" ]; then
94 tmpfile=`mktemp /etc/sysconfig/tmp.XXXXXX`
95 sed -e '/BOOTUP=color/BOOTUP=serial/' /etc/sysconfig/init > $tmpfile
96 mv -f $tmpfile /etc/sysconfig/init
97 fi
98 fi
99
100 # dup of timeconfig %post - here to avoid a dependency
101 if [ -L /etc/localtime ]; then
102 _FNAME=`ls -ld /etc/localtime | awk '{ print $11}' | sed 's/lib/share/'`
103 rm /etc/localtime
104 cp -f $_FNAME /etc/localtime
105 if ! grep -q "^ZONE=" /etc/sysconfig/clock ; then
106 echo "ZONE=\"$_FNAME"\" | sed -e "s|[^\"]*/usr/share/zoneinfo/||" >> /etc/sysconfig/clock
107 fi
108 fi
109
110 %preun
111 if [ $1 = 0 ]; then
112 /sbin/chkconfig --del netfs
113 /sbin/chkconfig --del network
114 /sbin/chkconfig --del rawdevices
115 fi
116
117 %triggerun -- initscripts <= 7.59
118 /sbin/chkconfig --del random
119 exit 0
120
121 %clean
122 rm -rf $RPM_BUILD_ROOT
123
124 %files -f trans.list
125 %defattr(-,root,root)
126 %dir /etc/sysconfig/network-scripts
127 %config(noreplace) %verify(not md5 mtime size) /etc/adjtime
128 %config(noreplace) /etc/sysconfig/init
129 /etc/sysconfig/network-scripts/ifdown
130 %config /sbin/ifdown
131 %config /etc/sysconfig/network-scripts/ifdown-post
132 /etc/sysconfig/network-scripts/ifup
133 %config /sbin/ifup
134 %dir /etc/sysconfig/console
135 %dir /etc/sysconfig/networking
136 %dir /etc/sysconfig/networking/devices
137 %dir /etc/sysconfig/networking/profiles
138 %dir /etc/sysconfig/networking/profiles/default
139 %config(noreplace) /etc/sysconfig/rawdevices
140 %config /etc/sysconfig/network-scripts/network-functions
141 %config /etc/sysconfig/network-scripts/network-functions-ipv6
142 %config /etc/sysconfig/network-scripts/init.ipv6-global
143 %config /etc/sysconfig/network-scripts/ifcfg-lo
144 %config /etc/sysconfig/network-scripts/ifup-ipx
145 %config /etc/sysconfig/network-scripts/ifup-post
146 %config /etc/sysconfig/network-scripts/ifdown-ppp
147 %config /etc/sysconfig/network-scripts/ifdown-sl
148 %config /etc/sysconfig/network-scripts/ifup-ppp
149 %config /etc/sysconfig/network-scripts/ifup-sl
150 %config /etc/sysconfig/network-scripts/ifup-routes
151 %config /etc/sysconfig/network-scripts/ifup-plip
152 %config /etc/sysconfig/network-scripts/ifup-plusb
153 %config /etc/sysconfig/network-scripts/ifup-ipv6
154 %config /etc/sysconfig/network-scripts/ifdown-ipv6
155 %config /etc/sysconfig/network-scripts/ifup-ipsec
156 %config /etc/sysconfig/network-scripts/ifdown-ipsec
157 %config /etc/sysconfig/network-scripts/ifup-sit
158 %config /etc/sysconfig/network-scripts/ifdown-sit
159 %config /etc/sysconfig/network-scripts/ifup-aliases
160 %config /etc/sysconfig/network-scripts/ifdown-aliases
161 %config /etc/sysconfig/network-scripts/ifup-ib
162 %config /etc/sysconfig/network-scripts/ifup-ippp
163 %config /etc/sysconfig/network-scripts/ifdown-ippp
164 %config /etc/sysconfig/network-scripts/ifup-wireless
165 /etc/sysconfig/network-scripts/ifup-isdn
166 /etc/sysconfig/network-scripts/ifdown-isdn
167 %ifarch s390 s390x
168 %config /etc/sysconfig/network-scripts/ifup-ctc
169 %config /etc/sysconfig/network-scripts/ifup-iucv
170 %endif
171 %config /etc/X11/prefdm
172 %config(noreplace) /etc/inittab
173 %dir /etc/rc.d
174 %dir /etc/rc.d/rc[0-9].d
175 %config(missingok) /etc/rc.d/rc[0-9].d/*
176 /etc/rc[0-9].d
177 /etc/rc
178 %dir /etc/rc.d/init.d
179 /etc/rc.local
180 /etc/rc.sysinit
181 %config /etc/rc.d/init.d/*
182 %config /etc/rc.d/rc
183 %config(noreplace) /etc/rc.d/rc.local
184 %config /etc/rc.d/rc.sysinit
185 %config(noreplace) /etc/sysctl.conf
186 %config /etc/profile.d/lang.sh
187 %config /etc/profile.d/lang.csh
188 /usr/sbin/sys-unconfig
189 /sbin/redhat-support-check
190 /sbin/setsysfont
191 /bin/doexec
192 /bin/ipcalc
193 /bin/usleep
194 %attr(4755,root,root) /usr/sbin/usernetctl
195 /sbin/consoletype
196 /sbin/genhostid
197 /sbin/getkey
198 /sbin/kmodule
199 %attr(2755,root,root) /sbin/netreport
200 /sbin/initlog
201 /sbin/minilogd
202 /sbin/service
203 /sbin/ppp-watch
204 %{_mandir}/man*/*
205 %dir %attr(775,root,root) /var/run/netreport
206 %dir /etc/ppp
207 %dir /etc/ppp/peers
208 %config /etc/ppp/ip-up
209 %config /etc/ppp/ip-down
210 %config /etc/ppp/ip-up.ipv6to4
211 %config /etc/ppp/ip-down.ipv6to4
212 %config /etc/ppp/ipv6-up
213 %config /etc/ppp/ipv6-down
214 %config /etc/initlog.conf
215 %doc sysconfig.txt sysvinitfiles ChangeLog static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6
216 %ghost %attr(0664,root,utmp) /var/log/wtmp
217 %ghost %attr(0664,root,utmp) /var/run/utmp
218
219 %changelog
220 * Thu Sep 11 2008 Shad L. Lords <slords@mail.com> 7.93.33-1.centos4.sme
221 - Reapply SME Server patches [SME: 2043]
222 - Exit with zero exit status for services not listed in configuration
223 database to avoid failures in post scriptlets [SME: 1653]
224 - Merge in SME Server /sbin/e-smith/service wrapper so that only
225 initscripts which exist in run-level 7 can be run. This ensures
226 that the supervised service is run, if one exists, and protects
227 against running "service httpd restart" [SME: 61, 1495]
228
229 * Wed Jun 25 2008 Bill Nottingham <notting@redhat.com> - 7.93.33-1
230 - the MAC addr patch does not work - pull it
231 - Reverts: rhbz#251415
232
233 * Mon Apr 14 2008 Harald Hoyer <harald@redhat.com> 7.93.32-1
234 - don't do something odd if we find a mac address that matches the user-set MACADDR (#251415) (notting)
235 - backport getkey race fixes from RHEL 5 (#313611) (mpoole)
236 - Fix genhostid for x86_64 (#311611) (notting)
237 - netfs: sort nfs mounts for unmounting (#251657) (notting)
238 - Resolves: rhbz#251657, rhbz#311611, rhbz#251415, rhbz#313611
239
240 * Mon Sep 10 2007 Bill Nottingham <notting@redhat.com> - 7.93.31.EL-2
241 - kmodule: use a better algorithm for finding modules (#270741)
242
243 * Thu Aug 02 2007 Harald Hoyer <harald@redhat.com> - 7.93.31.EL-1
244 - set the hwclock before udev starts (#230997)
245
246 * Fri Jun 22 2007 Bill Nottingham <notting@redhat.com> - 7.93.30.EL-1
247 - init.d/network, network-functions: don't fiddle with hotplug settings (#185569, #209307)
248 - init.d/network: add support for VLAN_PLUS_VID_NO_PAD vlans (#222975)
249
250 * Mon Feb 12 2007 Miloslav Trmac <mitr@redhat.com> - 7.93.29.EL-1
251 - Revert a backport of UTF-8 support for console keymaps
252 Related: #150769
253
254 * Tue Jan 30 2007 Miloslav Trmac <mitr@redhat.com> - 7.93.28.EL-1
255 - Fix MACADDR on bonding slaves
256 Resolves: #222711
257
258 * Mon Jan 15 2007 Miloslav Trmac <mitr@redhat.com> - 7.93.27.EL-1
259 - Do unmount network mounts, not doing so can prevent other unmounting other
260 filesystems
261 Reverts: #200915
262
263 * Tue Jan 2 2007 Miloslav Trmac <mitr@redhat.com> - 7.93.26.EL-1
264 - network-functions: source config before calling configure_ccwgroup_device
265 Resolves: #199139
266 - setsysfont, rc.sysinit: fix KEYTABLE, setsysfont when serial console is
267 present
268 Resolves: #150769
269 - netfs: call multipath, kpartx if necessary
270 Resolves: #180977
271 - rc.sysinit: run zfcpconf.sh earlier, so devices are available for LVM usage
272 Resolves: #189494
273 - init.d/functions: add configurable delay for killproc (<jorton@redhat.com>)
274 Resolves: #198468
275 - ifup: support aliases-on-vlan
276 Resolves: #193133
277 - rc.sysinit: don't use vgscan, only use vgchange
278 Resolves: #191879
279 - ifdown: run ifenslave -d on bonding devices
280 Resolves: #199706
281 - init.d/halt: don't try to unmount network mounts
282 Resolves: #200915
283 - ifdown, ifup-aliases: fix static routes for aliases
284 Resolves: #202948
285 - ifup: fix actual 169.254 networks
286 Resolves: #203591
287
288 * Fri Apr 21 2006 Miloslav Trmac <mitr@redhat.com> - 7.93.25.EL-1
289 - Document HOTPLUG (#189509)
290 - Prevent activation of network interfaces by hotplug during bootup (#183706)
291 - Add NETWORKDELAY and LINKDELAY (#176851)
292
293 * Thu Jan 12 2006 Bill Nottingham <notting@redhat.com>
294 - ignore sysfs but not /sys<otherstuff> (#177612, <bnocera@redhat.com>)
295
296 * Thu Dec 15 2005 Bill Nottingham <notting@redhat.com> 7.93.24.EL-1
297 - correct fix for #172804
298
299 * Fri Dec 2 2005 Bill Nottingham <notting@redhat.com> 7.93.23.EL-1
300 - fix quoting of environment variables (#174849)
301
302 * Wed Nov 30 2005 Bill Nottingham <notting@redhat.com> 7.93.22.EL-1
303 - add ifup-ib for Infiniband (#108827, <dledford@redhat.com>)
304
305 * Thu Nov 10 2005 Bill Nottingham <notting@redhat.com> 7.93.21.EL-1
306 - rc.sysinit: add call to kpartx for multipath devices (#168538)
307 - use multipath.static, not dynamic multipath (#168321)
308 - don't fsck netdev filesystems in rc.sysinit (#172804)
309
310 * Thu Oct 27 2005 Bill Nottingham <notting@redhat.com>
311 - fix use-after-free (#171912)
312
313 * Thu Aug 4 2005 Bill Nottingham <notting@redhat.com> 7.93.20.EL-1
314 - fix invalid free (#165033)
315
316 * Mon Aug 1 2005 Bill Nottingham <notting@redhat.com> 7.93.19.EL-1
317 - don't run multipath unless there's a multipath configuration
318
319 * Tue Jul 26 2005 Bill Nottingham <notting@redhat.com> 7.93.17.EL-1
320 - redhat-support-check: handle multi-core ia64 (#163783)
321
322 * Fri Jul 22 2005 Bill Nottingham <notting@redhat.com> 7.93.16.EL-1
323 - fix invalid free (#163973, <dwalsh@redhat.com>)
324
325 * Wed Jun 22 2005 Bill Nottingham <notting@redhat.com> 7.93.15.EL-1
326 - dmraid/dm-multipath support <jnomura@redhat.com>
327
328 * Thu Jun 9 2005 Bill Nottingham <notting@redhat.com> 7.93.14.EL-1
329 - prefdm: fix prefdm arg handling (#154312, <khc@pm.waw.pl>)
330 - sysconfig.txt: update route documentation (#154531, <link@pobox.com>)
331 - fix mistranslation (#151120)
332 - rc.sysinit: reinitialize LVM on top of RAID in the mdadm case (#149514)
333 - don't run rngd (#130350, essentially)
334 - init.d/functions: fix echo (#155270)
335 - initlog: free some of the more egregious memory leaks (#85935)
336 - initlog: fix potential memory overread (#153685, <in-redhat@baka.org>)
337 - add proper ipsec route (#146169, #140654)
338 - fix grep mismatching interfaces (#157252, #153669)
339 - handle alternate vlan naming schemes (#115001)
340 - netfs: handle lvm & fsck for network block devices (#148764, <alewis@redhat.com>)
341 - support for diskdump on swap partitions (#160223)
342 - ifup-routes: make sure commented lines are handled correctly (#154353,
343 #114548, <link@pobox.com>)
344
345 * Wed Apr 20 2005 Bill Nottingham <notting@redhat.com> 7.93.13.EL-2
346 - check number of siblings on AMD64 processors as well (#155331)
347
348 * Wed Feb 9 2005 Bill Nottingham <notting@redhat.com> 7.93.13.EL-1
349 - fix _netdev unmounting (#147610, <alewis@redhat.com>)
350
351 * Thu Feb 3 2005 Bill Nottingham <notting@redhat.com> 7.93.12.EL-1
352 - fix netfs w.r.t nfs root filesystem (#142169)
353 - fix multiple scsi_hostadapter loads (#145432)
354 - don't run the DDC probe in kmodule
355 - fix ONxxx (#136531, <cww@redhat.com>)
356 - fix various fgreps to not catch commented lines (#136531, expanded
357 from <cww@redhat.com>)
358 - kill dhcp client even if BOOTOPROTO is now static (#127726, others)
359 - set ETHTOOL_OPTS on addressless devices (#144682, <mpoole@redhat.com>)
360 - change setting of IPv6 default route (#142308, <pb@bieringer.de>)
361
362 * Wed Nov 24 2004 Bill Nottingham <notting@redhat.com> 7.93.11.EL-1
363 - don't mount GFS in netfs (#140281)
364 - fix various minilogd errors (#106338)
365
366 * Mon Nov 15 2004 Karsten Hopp <karsten@redhat.de> 7.93.10.EL-1
367 - configure the CTC protocol if CTCPROT is set (mainframe)
368
369 * Thu Nov 11 2004 Karsten Hopp <karsten@redhat.de> 7.93.9.EL-1
370 - parse OPTIONS for QETH, CTC and LCS (#136256, mainframe)
371
372 * Tue Nov 9 2004 Bill Nottingham <notting@redhat.com> 7.93.8.EL-1
373 - fix bonding + dhcp (#134787)
374
375 * Thu Nov 4 2004 Bill Nottingham <notting@redhat.com> 7.93.7.EL-1
376 - fix firmware uploading on boot (#137263)
377
378 * Mon Nov 1 2004 Bill Nottingham <notting@redhat.com> 7.93.6.EL-1
379 - fix some of the rhgb fsck code (<laroche@redhat.com>)
380 - fix module blacklisting to not mismatch (#137755)
381
382 * Fri Oct 29 2004 Bill Nottingham <notting@redhat.com> 7.93.5.EL-1
383 - speed up hardware init some
384
385 * Wed Oct 27 2004 Bill Nottingham <notting@redhat.com> 7.93.4.EL-1
386 - fix prefdm fallback to installed display managers (#137274)
387 - fix incorrect rhgb temp path (#137391)
388
389 * Tue Oct 19 2004 Bill Nottingham <notting@redhat.com> 7.93.2.EL-1
390 - fix #136421
391
392 * Mon Oct 18 2004 Bill Nottingham <notting@redhat.com> 7.93.1.EL-1
393 - add back rawdevices (#130048)
394
395 * Mon Oct 18 2004 Bill Nottingham <notting@redhat.com> 7.93-1
396 - translation updates
397 - fix handling of GATEWAYDEV (#133575, <pekkas@netcore.fi>)
398
399 * Sun Oct 17 2004 Bill Nottingham <notting@redhat.com> 7.91-1
400 - rc.d/rc.sysinit: remove devlabel call
401 - mdadm support, now that raidtools is gone (#126636, #88785)
402 - call ipv6to4 scripts in /etc/ppp/(ip-up|ip-down) (#124390, <dwmw2@redhat.com>)
403 - cleanup a couple of nits that could affect bug #134754
404 - make sure we return to rhgb after fsck (#133966, #112839, #134449)
405 - automatically reboot when fsck calls for it, instead of requiring
406 manual intervention (#117641 and duplicates)
407 - ifup-wireless: fix key for open vs. restricted (#135235, <dax@gurulabs.com>)
408 - translation updates
409
410 * Fri Oct 08 2004 Karsten Hopp <karsten@redhat.de> 7.90-1
411 - fix portname for LCS devices
412
413 * Fri Oct 08 2004 Bill Nottingham <notting@redhat.com>
414 - remove sysconfig/rawdevices, as initscript is removed
415
416 * Thu Oct 07 2004 Florian La Roche <Florian.LaRoche@redhat.de>
417 - change /etc/sysctl.conf to not allow source routed packets per default
418
419 * Fri Oct 6 2004 Bill Nottingham <notting@redhat.com> - 7.88-1
420 - fix requires
421
422 * Tue Oct 5 2004 Dan Walsh <dwalsh@redhat.com> - 7.87-1
423 - Change SELinux relabel to not remount /
424
425 * Mon Oct 4 2004 Bill Nottingham <notting@redhat.com>
426 - use runuser instead of su; require it
427 - init.d/halt: use right file name for random seed (#134432)
428
429 * Fri Oct 1 2004 Bill Nottingham <notting@redhat.com> - 7.86-1
430 - use /etc/hotplug/blacklist to blacklist modules in hardware init (#132719)
431 - filter indic locales on the console (#134198)
432
433 * Wed Sep 29 2004 Bill Nottingham <notting@redhat.com> - 7.85-1
434 - ifup, network-functions: fix worked-by-accident shell quoting
435 - lang.csh: remove setting of dspmbyte (#89549, <mitr@redhat.com>)
436 - SELinux fixes
437 - clean up prefdm
438 - init.d/functions: export LC_MESSAGES (#133786)
439 - allow daemon to coredump if requested (#130175)
440 - network-functions: be more liberal in what we accept for link types (#90602, #127984)
441 - fix overzealousness with -range aliases (#65415)
442 - rc.sysinit: use s-c-keyboard, not kbdconfig (#133929)
443 - fix checkpid logic, clean up potential errors (#134030)
444 - translation updates
445
446 * Wed Sep 22 2004 Bill Nottingham <notting@redhat.com> - 7.84-1
447 - only start udev once
448
449 * Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 7.83-1
450 - conflict with old udev
451 - use udev if it's present
452
453 * Tue Sep 21 2004 Bill Nottingham <notting@redhat.com>
454 - don't mount usbfs without usb. also, at least be consistent in filesystem type
455
456 * Fri Sep 17 2004 Bill Nottingham <notting@redhat.com> - 7.82-1
457 - fix handling of nonexistent devices (#132839)
458 - rhgb enhancements (<veillard@redhat.com>, #132665)
459 - initscripts.spec: require nash (#132513)
460 - translation updates
461
462 * Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 7.81-1
463 - load iucv device config after /etc/sysconfig/network so that
464 GATEWAY doesn't get overwritten
465
466 * Fri Sep 10 2004 Bill Nottingham <notting@redhat.com> - 7.80-1
467 - fix IPv6 6to4 & NAT (#118928, <pb@bieringer.de>, <pekkas@netcore.fi>)
468
469 * Fri Sep 10 2004 Karsten Hopp <karsten@redhat.com> - 7.79-1
470 - load ctc device config after /etc/sysconfig/network so that
471 GATEWAY doesn't get overwritten
472
473 * Wed Sep 8 2004 Dan Walsh <dwalshg@redhat.com> - 7.78-2
474 - fix setting SELinux contexts on udev-created-in-initrd devices
475 - Let restorecon check if selinux is enabled.
476
477 * Wed Sep 8 2004 Bill Nottingham <notting@redhat.com> - 7.78-1
478 - set SELinux contexts on udev-created-in-initrd devices, if necessary
479
480 * Wed Sep 1 2004 Bill Nottingham <notting@redhat.com> - 7.77-1
481 - mount usbfs (#131347)
482 - start any automatic raid devices
483 - remove triggers for ancient releases, bulletproof remaining ones (#131356)
484
485 * Wed Sep 1 2004 Jeremy Katz <katzj@redhat.com> - 7.76-1
486 - udev uses UDEV_TMPFS now
487
488 * Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 7.75-1
489 - fix sysfs configuration of qeth and lcs network interfaces
490 (eth, tr, hsi)
491
492 * Mon Aug 30 2004 Karsten Hopp <karsten@redhat.de> 7.74-1
493 - fix support for LCS portnumbers (mainframe)
494
495 * Fri Aug 27 2004 Jason Vas Dias <jvdias@redhat.com> 7.73-1
496 - Add support for running the DHCPv6 client to ifup
497 - (new DHCPV6C=yes/no ifcfg-${IF} variable) + update sysconfig.txt
498
499 * Fri Aug 27 2004 Bill Nottingham <notting@redhat.com> 7.72-1
500 - flip the kernel conflict to a Requires:
501
502 * Thu Aug 26 2004 Karsten Hopp <karsten@redhat.de> 7.71-1
503 - ifcfg-iucv/ctc: drop REMIP and use GATEWAY instead
504
505 * Thu Aug 26 2004 Bill Nottingham <notting@redhat.com> 7.70-1
506 - autoload hardware modules on startup
507 - minor fsck cleanup (#115028, <leonard-rh-bugzilla@den.ottolander.nl>)
508 - ifup: support STP bridging (#123324)
509 - rc.sysinit: do a SELinux relabel if forced
510 - rc.sysinit: remove devfs compat and the remaining 2.4 compat
511 - ifup-wireless: support multiple keys (#127957)
512 - fix firmware loading (#129155, <bnocera@redhat.com>)
513
514 * Tue Aug 24 2004 Karsten Hopp <karsten@redhat.de> 7.68-1
515 - execute zfcfconf.sh if available (mainframe)
516
517 * Mon Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.67-1
518 - fix change_resolv_conf: if pre-existing /etc/resolv.conf
519 - non-existent or empty, replace with new file contents.
520
521 * Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
522 - Allow users to use generic /etc/dhclient.conf if per-device
523 - /etc/dhclient-${DEVICE}.conf is non-existent or empty
524
525 * Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
526 - Preserve "options" settings in resolv.conf (bug 125712)
527
528 * Fri Aug 20 2004 Jeremy Katz <katzj@redhat.com> - 7.65-1
529 - look at /etc/udev/udev.conf, not /etc/sysconfig/udev (#130431)
530
531 * Fri Aug 20 2004 Bill Nottingham <notting@redhat.com> 7.64-1
532 - rc.d/rc.sysinit: check for dev file too (#130350)
533
534 * Thu Aug 19 2004 Than Ngo <than@redhat.com> 7.63-1
535 - allow CBCP with own number (#125710)
536
537 * Thu Aug 19 2004 Bill Nottingham <notting@redhat.com> 7.62-1
538 - fix up resolv.conf munging (#129921)
539 - use rngd if available
540 - run start_udev if necessary (#120605)
541 - readonly root updates (#129893, <markmc@redhat.com>)
542 - ifup-wireless: quote key (#129930)
543 - remove rawdevices (#130048)
544 - handle binfmt_misc in rc.sysinit for the case where it's built in (#129954)
545 - remove mkkerneldoth
546 - don't remove linguas in lang.* (part of #9733)
547 - fix nfs unmounting (#129765)
548 - fix URL (#129433)
549
550 * Tue Aug 11 2004 Jason Vas Dias <jvdias@redhat.com> 7.61-1
551 - fix for bug 120093: add PERSISTENT_DHCLIENT option to ifcfg files
552
553 * Tue Aug 3 2004 Karsten Hopp <karsten@redhat.de> 7.60-1
554 - write peerid into sysfs for IUCV devices (mainframe)
555
556 * Tue Aug 3 2004 Bill Nottingham <notting@redhat.com>
557 - don't remove /dev/mapper/control - nash will do it if it has to (#127115)
558
559 * Fri Jul 30 2004 Jason Vas Dias <jvdias@redhat.com> 7.60-1
560 - fix for bug 125712: add 'change_resolv.conf' function
561
562 * Tue Jul 27 2004 Bill Nottingham <notting@redhat.com>
563 - rc.d/init.d/network: don't bring interfaces down twice (#127487)
564
565 * Wed Jul 14 2004 Bill Nottingham <notting@redhat.com>
566 - fix bonding + no IP (#127285)
567 - wrap second LVM initialization in vgscan check to avoid extraneous messages (#127639)
568
569 * Wed Jul 7 2004 Bill Nottingham <notting@redhat.com>
570 - move random stuff to rc.sysinit/halt; move all swap to after this.
571 prereq of bug #123278
572
573 * Fri Jul 2 2004 Bill Nottingham <notting@redhat.com> 7.59-1
574 - set context on ICE directory after making it (#127099, <concert@europe.com>)
575 - don't mount GFS filesystems in rc.sysinit
576
577 * Tue Jun 29 2004 Bill Nottingham <notting@redhat.com> 7.58-1
578 - rc.d/rc.sysinit: hack: make ICE directory on boot (#86480)
579 - set devicetype for xDSL (#126194)
580 - ignore locking failures when starting lvm volumes (#126192, <radu@primit.ro>)
581 - unset LC_MESSAGES for rhgb (#126020, <ynakai@redhat.com>)
582 - bonding fixes
583 - setsysfont: remove error (#100559)
584 - remove duplicate setting of network routes (#125450)
585 - vlan fixes (#107504, <hrunting@texas.net>)
586 - ifup-aliases: remove bogus route setting (#120908)
587
588 * Tue May 25 2004 Bill Nottingham <notting@redhat.com> 7.57-1
589 - readonly root fixes (<alexl@redhat.com>)
590
591 * Tue May 25 2004 Karsten Hopp <karsten@redhat.de> 7.56-1
592 - special TYPE for qeth devices to differenciate them from ethX
593
594 * Mon May 24 2004 Bill Nottingham <notting@redhat.com>
595 - fix pppd vs. ppp typo in conflicts (#123680)
596
597 * Fri May 21 2004 Bill Nottingham <notting@redhat.com>
598 - fix bridging confusing module order (#122848, <luto@myrealbox.com>)
599 - rc.d/rc.sysinit: don't mount cifs (#122501)
600
601 * Tue May 18 2004 Karsten Hopp <karsten@redhat.de> 7.55-1
602 - add support for ccwgroup devices on mainframe
603
604 * Thu May 13 2004 Than Ngo <than@redhat.com> 7.54-1
605 - add patch to enable PIE build of usernetctl
606
607 * Fri May 7 2004 Jeremy Katz <katzj@redhat.com> - 7.53-1
608 - little lvm tweak (#121963)
609
610 * Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.52-1
611 - ipv4 addresses are ints, not longs (#122479)
612
613 * Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.51-1
614 - get rid of LVM error when no volumes are defined (#121197)
615 - fix selinux short-circuit test (#121143, <michal@harddata.com>)
616 - /dev/mapper/control is a special file, check it accordingly (#121963)
617 - support ETHTOOL_OPTS on bonding slaves (#119430, <hrunting@texas.net>)
618 - handle multiple spaces correctly in rc.sysinit, network-functions
619 (#118583, <pallas@kadan.cz>)
620 - cleanup fd leaks, mem leaks, other bogosities
621 (#119987, <linux_4ever@yahoo.com>)
622 - rc.d/init.d/network: remove ipv6 bogosity (#114128)
623 - translation updates
624
625 * Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> 7.50-1
626 - fix LVM issues in rc.sysinit (#120458, #119975)
627 - deal with fixed racoon parser
628 - translation updates from translators
629 - fix USB loading (#120911)
630
631 * Fri Mar 26 2004 Bill Nottingham <notting@redhat.com> 7.49-1
632 - use alsa for mixer saving in halt
633 - don't umount /proc in halt (#118880)
634 - various translation updates from translators
635
636 * Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.48-1
637 - disable enforcing in emergency mode for now, relabel some commonly
638 mislabeled files on boot
639
640 * Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.47-1
641 - translation: catch more input strings (#106285, <mitr@volny.cz>)
642 - remove autologin from prefdm (#108969)
643 - return to rhgb after ./unconfigured (#109807, <jkeating@j2solutions.net>)
644 - handle iso15 in setsysfont (#110243)
645 - clean up samba & vmware in rc.sysinit (#113104)
646 - some sysconfig.txt documentation (#110427, #118063)
647 - fix bug in umount-on-halt (#113088, <giardina@airlab.elet.polimi.it>)
648 - handle CIFS in netfs (#115691)
649 - make sure hotplug isn't stuck unset (#116666, <aoliva@redhat.com>)
650 - handle network fs better in rc.sysinit (#111290)
651 - nomodules applies to usb/firewire too (#113278)
652 - ipsec fix (#116922, <felipe_alfaro@linuxmail.org>)
653 - make sure rc exits cleanly (#117827, <enrico.scholz@informatik.tu-chemnitz.de>)
654 - fsck root FS from initrd, for dynamic majors (#117575, <sct@redhat.com>)
655
656 * Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com>
657 - Use ':' instead of '.' as separator for chown.
658
659 * Mon Feb 2 2004 Bill Nottingham <notting@redhat.com> 7.46-1
660 - some more rc.sysinit tweaks and refactoring
661
662 * Fri Jan 30 2004 Bill Nottingham <notting@redhat.com> 7.45-1
663 - fix rc.sysinit typo
664 - rc.d/init.d/network: clear out environment (#113937, #111584)
665
666 * Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 7.44-1
667 - NFSv4 support (<chucklever@bigfoot.com>, <steved@redhat.com>)
668 - handle 2.6-style 'install ethX ...' lines correctly
669 - mount sysfs by default
670 - time to clean up the cruft. remove:
671 - boot-time depmod
672 - linking of /boot/System.map to /boot/System.map-`uname -r`
673 - /var/log/ksyms.X
674 - libredhat-kernel support
675
676 * Fri Jan 16 2004 Dan Walsh <dwalsh@redhat.com> 7.43-2
677 - Remove selinux run_init code from service script. It is no longer needed.
678
679 * Fri Dec 5 2003 Jeremy Katz <katzj@redhat.com> 7.43-1
680 - basic lvm2 support
681
682 * Tue Oct 28 2003 Bill Nottingham <notting@redhat.com> 7.42-1
683 - show rhgb details on service failures
684
685 * Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 7.41-1
686 - tweak some rhgb interactions (#100894, #107725)
687 - fix dvorak keymap loading (#106854)
688
689 * Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.40-1
690 - add better fix to support nickname (#105785)
691
692 * Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.39-1
693 - add support nickname (#105785)
694
695 * Fri Oct 17 2003 Bill Nottingham <notting@redhat.com> 7.38-1
696 - rhgb updates, now pass 'rhgb' to use it, instead of passing 'nogui'
697 to disable it
698
699 * Fri Oct 10 2003 Bill Nottingham <notting@redhat.com> 7.37-1
700 - bridging updates (#104421, <dwmw2@redhat.com>)
701
702 * Wed Oct 8 2003 Bill Nottingham <notting@redhat.com> 7.36-1
703 - mount /dev/pts before starting rhgb
704
705 * Wed Oct 1 2003 Bill Nottingham <notting@redhat.com> 7.35-1
706 - load acpi modules on startup if necessary
707 - fix typo in ipsec comments & sysconfig.txt
708
709 * Mon Sep 15 2003 Than Ngo <than@redhat.com> 7.34-1
710 - use upsdrvctl to start the shutdown process
711
712 * Mon Sep 15 2003 Bill Nottingham <notting@redhat.com> 7.33-1
713 - ipsec fixes (#104227, <harald@redhat.com>)
714 - ppp fixes (#104128, #97845, #85447)
715
716 * Thu Sep 11 2003 Bill Nottingham <notting@redhat.com> 7.32-1
717 - fix ip calls for some device names (#104187)
718 - ipsec fixes
719
720 * Fri Sep 5 2003 Bill Nottingham <notting@redhat.com> 7.31-1
721 - fix bonding + dhcp (#91399)
722 - fix typo (#103781)
723 - sysconfig/network-scripts/ifup: fix use of local
724
725 - fix shutdown with NFS root (#100556, <Julian.Blake@cern.ch>)
726 - remove /var/run/confirm when done with /etc/rc (#100898)
727 - ipcalc: fix some memory handling (#85478, <miked@ed.ac.uk>)
728 - handle sorting > 10 network devices (#98209)
729 - unset ONPARENT after use (#101384)
730 - random other fixes
731 - bridging support (<dwmw2@redhat.com>)
732
733 * Fri Aug 15 2003 Bill Nottingham <notting@redhat.com> 7.30-1
734 - IPv6 updates (#86210, #91375, <pekkas@netcore.fi>)
735
736 * Fri Aug 8 2003 Bill Nottingham <notting@redhat.com> 7.29-1
737 - setsysfont: don't echo to /dev/console (#102004)
738 - fix ethernet device renaming deadlock (#101566)
739 - consoletype: don't return 'vt' on vioconsole (#90465)
740 - ifup: fix short-circuit (#101445)
741
742 * Fri Jul 18 2003 Nalin Dahyabhai <nalin@redhat.com>
743 - ifup-routes: pass the interface name to handle_file() so that we don't try
744 to use the routes file's name as an interface name
745
746 * Wed Jul 9 2003 Bill Nottingham <notting@redhat.com> 7.28-1
747 - switch from $CONFIG.keys to keys-$CONFIG
748
749 * Tue Jul 8 2003 Bill Nottingham <notting@redhat.com> 7.27-1
750 - add a check to consoletype for the current foreground console
751 - use it when running unicode_start (#98753)
752
753 * Wed Jul 2 2003 Bill Nottingham <notting@redhat.com> 7.26-1
754 - ipsec support (see sysconfig.txt, ifup-ipsec)
755 - read $CONFIG.keys, for non-world-readable keys
756 - allow default window size for routes to be set with WINDOW= (#98112)
757 - support setting device options with ethtool opts
758 - fix s390 bootup spew (#98078)
759 - support renaming interfaces with nameif based on hwaddr
760
761 * Mon Jun 23 2003 Bill Nottingham <notting@redhat.com> 7.25-1
762 - fix DNS punching in the case of other rules for the DNS server
763 (#97686, <martin@zepler.org>)
764 - initlog, ppp-watch, and usernetctl tweaks (<linux_4ever@yahoo.com>)
765 - fix grep for mingetty (#97188)
766 - fix rhgb-client bad syntax
767 - change network device searching, use correct naming, fix route issues
768 (<harald@redhat.com>)
769 - other random tweaks
770
771 * Fri May 23 2003 Bill Nottingham <notting@redhat.com> 7.24-1
772 - now even still yet more tweaks for graphical boot
773
774 * Thu May 22 2003 Bill Nottingham <notting@redhat.com> 7.23-1
775 - even still yet more tweaks for graphical boot
776
777 * Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.22-1
778 - still yet more tweaks for graphical boot
779
780 * Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.21-1
781 - yet more tweaks for graphical boot
782
783 * Fri May 2 2003 Bill Nottingham <notting@redhat.com> 7.20-1
784 - more tweaks for graphical boot
785
786 * Wed Apr 30 2003 Bill Nottingham <notting@redhat.com> 7.18-1
787 - some tweaks for graphical boot
788
789 * Mon Apr 21 2003 Florian La Roche <Florian.LaRoche@redhat.de>
790 - initscripts-s390.patch: remove not needed parts about PNP=
791 - inittab.390: sync with normal version
792 - rc.sysinit: remove two further calls to /sbin/consoletype with $CONSOLETYPE
793
794 * Fri Apr 18 2003 Florian La Roche <Florian.LaRoche@redhat.de>
795 - sysconfig/init.s390: set LOGLEVEL=3 as for other archs
796 - rc.d/init.d/network, rc.d/rc: change confirmation mode to
797 not use an environment variable
798 - rc.d/init.d/functions: make strstr() even shorter, remove old
799 "case" version that has been already commented out
800 - rc.d/rc.sysinit:
801 - no need to set NETWORKING=no, it is not used/exported
802 - do not export BOOTUP
803 - delete two "sleep 1" calls that wants to add time to go
804 into confirmation mode. There is enough time to press a
805 key anyway or use "confirm" in /proc/cmdline.
806 - read /proc/cmdline into a variable
807 - use strstr() to search in /proc/cmdline
808 - add "forcefsck" as possible option in /proc/cmdline
809 - while removing lock files, no need to call `basename`
810 - add unamer=`uname -r` and reduce number of forks
811 - do not fork new bash to create /var/log/ksyms.0
812
813 * Thu Apr 03 2003 Karsten Hopp <karsten@redhat.de> 7.15-1
814 - Mainframe has no /dev/ttyX devices and no mingetty, don't
815 initialize them. This gave error messages during startup
816
817 * Mon Mar 17 2003 Nalin Dahyabhai <nalin@redhat.com>
818 - init.d/network: don't advertise "probe: true" in the header if we don't
819 recognize "probe" as an argument
820
821 * Wed Mar 12 2003 Bill Nottingham <notting@redhat.com> 7.14-1
822 * - do not handle changed chain name; change was reverted
823
824 * Tue Feb 25 2003 Bill Nottingham <notting@redhat.com> 7.13-1
825 - handle 7.x SYSFONTACM settings in setsysfont (#84183)
826
827 * Mon Feb 24 2003 Bill Nottingham <notting@redhat.com> 7.12-1
828 - handle changed chain name
829 - init vts used in all cases
830
831 * Fri Feb 21 2003 Bill Nottingham <notting@redhat.com> 7.10-1
832 - handle LANGUAGE specially for zh_CN.GB18030 and gdm (#84773)
833
834 * Thu Feb 20 2003 Bill Nottingham <notting@redhat.com> 7.09-1
835 - initialize two ttys past # of mingettys (for GDM)
836 - fix zeroconf route
837 - redhat-config-network writes $NAME.route for some static routes
838 (e.g., ppp); handle that (#84193)
839
840 * Tue Feb 18 2003 Bill Nottingham <notting@redhat.com> 7.08-1
841 - load keybdev & mousedev even if hid is already loaded/static
842 - run fewer scripts through action (#49670, #75279, #81531)
843
844 * Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 7.07-1
845 - fix nicknames & profiles (#82246)
846 - fix check_device_down (#83780, <pzb@datstacks.com>)
847 - vlan fixes (<tis@foobar.fi>)
848 - fix groff macros (#83531, <tsekine@sdri.co.jp>)
849 - various updated translations
850 - fix checkpid for multiple pids (#83401)
851
852 * Fri Jan 31 2003 Bill Nottingham <notting@redhat.com> 7.06-1
853 - 802.1Q VLAN support (<tis@foobar.fi>, #82593)
854 - update translations
855
856 * Thu Jan 30 2003 Bill Nottingham <notting@redhat.com> 7.05-1
857 - fix syntax error in rc.sysinit when there are fsck errors
858 - fix zh_TW display on console (#82235)
859
860 * Wed Jan 15 2003 Bill Nottingham <notting@redhat.com> 7.04-1
861 - tweak some translatable strings
862 - fix for rc.sysinit on machines that pass arguments to mingetty
863 (<nalin@redhat.com>)
864
865 * Tue Jan 14 2003 Bill Nottingham <notting@redhat.com> 7.03-1
866 - move system font setting sooner (<milan.kerslager@pslib.cz>)
867 - fix link checking for dhcp, use both ethtool and mii-tool
868 - fix CJK text on the console, and locale-archive held open
869 on shutdown
870 - IPv6 updates <pekkas@netcore.fi>, <pb@bieringer.de>
871 - speedup tweaks (<drepper@redhat.com>)
872 - use glib2 for ppp-watch (#78690, <kisch@mindless.com>)
873 - add zeroconf route (#81738)
874 - fix ifup-ppp for dial-on-demand, and onboot (<goeran@uddeborg.pp.se>)
875 - tweak raidtab parsing, don't worry about not-in-fstab RAID devices
876 (#71087, #78467, <aja@mit.edu>)
877 - don't automatically bring up aliases if 'ONPARENT=no' is set (#78992)
878 - getkey cleanups/tweaks (#76071, <ben@enchantedforest.org>)
879 - rework halt_get_remaining (#76831, <michal@harddata.com>)
880 - ipcalc: fix calculation of /32 addresses (#76646)
881 - various other tweaks and fixes
882
883 * Fri Dec 20 2002 Bill Nottingham <notting@redhat.com> 7.01-1
884 - %%config(noreplace) inittab
885
886 * Tue Dec 17 2002 Nalin Dahyabhai <nalin@redhat.com>
887 - add a "nofirewire" option to /etc/rc.sysinit, analogous to "nousb"
888
889 * Tue Dec 17 2002 Bill Nottingham <notting@redhat.com> 7.00-1
890 - tweaks for potential GUI bootup
891 - loop checking for network link state, don't unilterally wait five
892 seconds
893
894 * Fri Dec 14 2002 Karsten Hopp <karsten@redhat.de> 6.99-1
895 - remove call to /sbin/update for S/390, too
896
897 * Wed Dec 11 2002 Bill Nottingham <notting@redhat.com> 6.98-1
898 - remove call to /sbin/update
899 - fix netprofile
900
901 * Mon Dec 2 2002 Bill Nottingham <notting@redhat.com> 6.97-1
902 - IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
903 - devlabel support (<Gary_Lerhaupt@Dell.com>)
904 - do lazy NFS umounts
905
906 * Tue Nov 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
907 - correctly remove non-packaged files for mainframe
908
909 * Tue Nov 12 2002 Bill Nottingham <notting@redhat.com> 6.96-1
910 - fix various static-routes brokeness (#74317, #74318, #74320, #76619,
911 #75604)
912 - fix handling of SYSFONTACM in setsysfont (#75662)
913 - fix lang.csh for CJK (#76908, <ynakai@redhat.com>)
914 - IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
915 - other minor tweaks
916
917 * Mon Sep 16 2002 Than Ngo <than@redhat.com>
918 - owns directory /etc/ppp/peers (bug #74037)
919
920 * Wed Sep 4 2002 Bill Nottingham <notting@redhat.com> 6.95-1
921 - fix syntax error in duplicate route removal section of ifup
922
923 * Wed Sep 4 2002 Nalin Dahyabhai <nalin@redhat.com> 6.94-1
924 - fix syntax error calling unicode_start when SYSFONTACM isn't set
925
926 * Mon Sep 2 2002 Bill Nottingham <notting@redhat.com>
927 - fix calling of unicode_start in lang.{sh,csh}
928 - ipv6 tweak
929
930 * Wed Aug 28 2002 Bill Nottingham <notting@redhat.com>
931 - don't infinite loop on ifdown
932 - remove disabling of DMA; this can cause problems
933 - move swap startup to after LVM (#66588)
934
935 * Tue Aug 20 2002 Bill Nottingham <notting@redhat.com>
936 - don't cycle through eth0-eth9 on dhcp link check (#68127)
937 - don't retry indefinitely on ppp startup
938 - activate network profile passed on kernel commandline via netprofile=
939 - fix iptables invocations again
940 - translation refresh
941
942 * Wed Aug 14 2002 Bill Nottingham <notting@redhat.com>
943 - fix silly typo in rc.sysinit
944 - increase timeout for link to 5 seconds (#70545)
945
946 * Tue Aug 13 2002 Bill Nottingham <notting@redhat.com>
947 - require /etc/redhat-release (#68903)
948 - fix tty2-tty6 (sort of)
949 - fix iptables invocations (#70807, #71201, #68368)
950 - other minor tweaks
951
952 * Wed Jul 24 2002 Bill Nottingham <notting@redhat.com>
953 - fix unicode checks in rc.sysinit, lang.{sh,csh} to handle UTF-8@euro
954
955 * Tue Jul 16 2002 Bill Nottingham <notting@redhat.com>
956 - use iptables, not ipchains
957
958 * Tue Jul 16 2002 Florian La Roche <Florian.LaRoche@redhat.de>
959 - /sbin/service: set PATH before calling startup scripts
960 HOME and TERM are also set during bootup, but they should not make
961 a difference for well-written daemons.
962
963 * Mon Jul 15 2002 Bill Nottingham <notting@redhat.com>
964 - fix boot-time cleanup of /var
965 - update po files
966
967 * Thu Jul 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
968 - /etc/init.d/functions:
969 daemon(): avoid starting another bash
970 killproc(): avoid starting another bash for the default case
971 - do not call "insmod -p" before loading the "st" module
972
973 * Tue Jul 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
974 - allow an option for ups poweroff #68123
975 - change grep for ONBOOT= #63903
976 - allow building with a cross-compiler #64362,#64255
977 - faster check in network-functions:check_default_route()
978 - better checks for backup files
979 - drastically reduce the number of consoletype invocations
980 - do not export "GATEWAY" in network-functions
981 - code cleanups in rc.sysinit
982
983 * Fri Jul 05 2002 Florian La Roche <Florian.LaRoche@redhat.de>
984 - rc.sysinit: do not load raid modules unless /etc/raidtab exists
985 - many cleanups for more consistent shell programming and also
986 many smaller speedups within network scripts, no un-necessary sourcing
987 of files etc
988 - nearly re-code /etc/rc.d/rc
989
990 * Thu Jun 27 2002 Bill Nottingham <notting@redhat.com>
991 - a couple minor unicode tweaks in rc.sysinit
992
993 * Wed Jun 26 2002 Bill Nottingham <notting@redhat.com>
994 - move /proc/bus/usb mount, in case USB is in the initrd
995
996 * Wed Jun 26 2002 Preston Brown <pbrown@redhat.com>
997 - don't try to set wireless freq/channel when in Managed mode
998
999 * Wed Jun 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1000 - start some sh coding cleanups
1001 - change to /etc/init.d/functions
1002 - eliminate some un-necessary PATH settings
1003 - eliminate some TEXTDOMAIN settings
1004
1005 * Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 6.78-1
1006 - fix UTF-8 checks
1007
1008 * Wed Jun 05 2002 Than Ngo <than@redhat.com> 6.77-1
1009 - fixed a bug in setting defaultgateway
1010
1011 * Thu May 30 2002 Bill Nottingham <notting@redhat.com> 6.76-1
1012 - call unicode_start in lang.{sh,csh}, setsysfont when necessary
1013
1014 * Tue May 28 2002 Bill Nottingham <notting@redhat.com> 6.75-1
1015 - add check for link for dhcp back in
1016
1017 * Fri Apr 19 2002 Bill Nottingham <notting@redhat.com> 6.67-1
1018 - fix silly cut&paste bug in hdparm settings in initscripts
1019
1020 * Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 6.65-1
1021 - Update translations
1022
1023 * Sun Apr 14 2002 Bill Nottingham <notting@redhat.com> 6.64-1
1024 - make sure chatdbg is set before using it (#63448, <Bertil@Askelid.com>)
1025 - allow tweaking of more devices with hdparm (#53511), and
1026 tweak non-disk devices iff they explicitly have a config file
1027 for that device (#56575, #63415)
1028 - some translation updates
1029
1030 * Fri Apr 12 2002 Bill Nottingham <notting@redhat.com> 6.63-1
1031 - ipcalc cleanups (#58410)
1032 - quit stripping binaries
1033 - do LVM init after RAID init too (#63238)
1034 - export all locale variables (#56142)
1035 - run sysctl -p after network init as well
1036
1037 * Tue Apr 09 2002 Bill Nottingham <notting@redhat.com> 6.62-1
1038 - delete X/VNC locks on startup (#63035)
1039 - shut up DMA disabling, move it to after ide-scsi (#62873, #62956)
1040 - use full path to /sbin/ifconfig (#59457)
1041 - /sbin/service: change to root directory before staring/stopping;
1042 also sanitize environment
1043
1044 * Tue Apr 02 2002 Bill Nottingham <notting@redhat.com> 6.61-1
1045 - when disabling DMA, don't use things in /usr
1046
1047 * Thu Mar 28 2002 Bill Nottingham <notting@redhat.com> 6.60-1
1048 - disable DMA on CD-ROMs at bootup
1049
1050 * Wed Mar 27 2002 Bill Nottingham <notting@redhat.com> 6.59-1
1051 - add local hook to halt
1052
1053 * Fri Mar 15 2002 Than Ngo <than@redhat.com> 6.58-1
1054 - fix usernetctl for working with neat
1055
1056 * Thu Mar 14 2002 Bill Nottingham <notting@redhat.com> 6.57-1
1057 - update translations
1058
1059 * Tue Mar 12 2002 Bill Nottingham <notting@redhat.com> 6.56-1
1060 - use nameif for interfaces where we don't agree on HWADDR with the
1061 config file (<harald@redhat.com>)
1062 - LSB support tweaks
1063
1064 * Tue Mar 12 2002 Mike A. Harris <mharris@redhat.com> 6.55-1
1065 - Removed process accounting stuff from rc.sysinit and halt scripts as it is
1066 now handled by the psacct initscript in the psacct package
1067
1068 * Thu Feb 28 2002 Bill Nottingham <notting@redhat.com>
1069 - conflict with older psacct
1070
1071 * Fri Feb 22 2002 Bill Nottingham <notting@redhat.com>
1072 - fix invocation of need_hostname (#58946), a couple other minor tweaks
1073
1074 * Tue Feb 12 2002 Mike A. Harris <mharris@redhat.com>
1075 - rc.sysinit: changed /var/log/pacct to /var/account/pacct for FHS 2.2 compliance
1076
1077 * Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
1078 - run /bin/setfont, not /usr/bin/setfont (kbd)
1079 - lots-o-random bugfixes/tweaks (see ChangeLog)
1080
1081 * Thu Jan 17 2002 Michael K. Johnson <johnsonm@redhat.com>
1082 - Added support for libredhat-kernel.so.* symlink handling
1083
1084 * Wed Nov 7 2001 Than Ngo <than@redhat.com>
1085 - fix bug in setting netmask on s390/s390x (bug #55421)
1086 nmbd daemon works now ;-)
1087
1088 * Fri Nov 2 2001 Than Ngo <than@redhat.com>
1089 - fixed typo bug ifup-ippp
1090
1091 * Mon Oct 29 2001 Than Ngo <than@redhat.com>
1092 - fix bug in channel bundling if MSN is missed
1093 - support DEBUG option
1094
1095 * Wed Sep 19 2001 Than Ngo <than@redhat.com>
1096 - don't show user name by DSL connection
1097
1098 * Sat Sep 8 2001 Bill Nottingham <notting@redhat.com>
1099 - don't run hwclock --adjust on a read-only filesystem
1100
1101 * Thu Sep 6 2001 Than Ngo <than@redhat.com>
1102 * update initscripts-s390.patch for s390/s390x
1103
1104 * Wed Sep 5 2001 Bill Nottingham <notting@redhat.com>
1105 - translation updates
1106 - quota and hwclock tweaks (<pbrown@redhat.com>)
1107
1108 * Mon Sep 3 2001 Bill Nottingham <notting@redhat.com>
1109 - fix severe alias problems (#52882)
1110
1111 * Mon Sep 3 2001 Than Ngo <than@redhat.com>
1112 - don't start pppbind if encapsulation is rawip (bug #52491)
1113
1114 * Sun Sep 2 2001 Than Ngo <than@redhat.com>
1115 - add ISDN patches from pekkas@netcore.fi and pb@bieringer.de (bug #52491)
1116 - fix handling of ISDN LSZ Compresssion
1117
1118 * Thu Aug 30 2001 Than Ngo <than@redhat.com>
1119 - po/de.po: fix typo bug, lo instead 1o
1120
1121 * Wed Aug 29 2001 David Sainty <dsainty@redhat.com>
1122 - fix ifdown for multiple dhcpcd interfaces
1123
1124 * Wed Aug 29 2001 Than Ngo <than@redhat.com>
1125 - fix ISDN dial on demand bug
1126 - fix typo bug in network-functions
1127
1128 * Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com>
1129 - document /etc/sysconfig/authconfig
1130
1131 * Tue Aug 28 2001 Bill Nottingham <notting@redhat.com> 6.31-1
1132 - message un-tweaks (<johnsonm@redhat.com>)
1133 - make getkey more useful, fix some of the autofsck stuff (<johnsonm@redhat.com>)
1134
1135 * Mon Aug 27 2001 Bill Nottingham <notting@redhat.com>
1136 - autofsck support, archive modules/symbol info (<johnsonm@redhat.com>)
1137
1138 * Mon Aug 27 2001 Than Ngo <than@redhat.com>
1139 - fix some typo bugs in ifup-ippp <ubeck@c3pdm.com>
1140
1141 * Fri Aug 24 2001 Bill Nottingham <notting@redhat.com>
1142 - sort output of halt_get_remaining (#52180)
1143 - fix bad translation (#52503)
1144
1145 * Wed Aug 22 2001 Bill Nottingham <notting@redhat.com>
1146 - fix ifup-wireless (#52135)
1147
1148 * Wed Aug 22 2001 Than Ngo <than@redhat.com>
1149 - fix return code of isdnctrl (bug #52225)
1150
1151 * Tue Aug 21 2001 Than Ngo <than@redhat.com>
1152 - fix Bringing up isdn device again. It works now correct.
1153
1154 * Tue Aug 21 2001 Than Ngo <than@redhat.com>
1155 - fix shutdown/Bringing up isdn device
1156
1157 * Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com>
1158 - fix syntax error in lang.csh
1159 - set codeset by echoing to /dev/tty instead of /proc/self/fd/15
1160
1161 * Sun Aug 19 2001 Bill Nottingham <notting@redhat.com>
1162 - fix a broken call to check_device_down
1163 - make all loopback addresses have host scope, not global scope.
1164 Fixes #49374, possibly others
1165
1166 * Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
1167 - add is_available() network function, use it; cleans up ugly modprobe
1168 error messages
1169 - update translation info
1170 - fix #51787
1171
1172 * Wed Aug 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
1173 - adjust s390 patch
1174 - fix up ifup-ctc and mkkerneldoth.s390 (both are s390 specific)
1175
1176 * Mon Aug 13 2001 Yukihiro Nakai <ynakai@redhat.com>
1177 - don't display Chinese Korean if we aren't on a pty
1178
1179 * Sat Aug 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1180 - adjust s390 patches to current sources
1181
1182 * Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
1183 - use GDM_LANG if it's set in lang.sh/lang.csh (#51432, <otaylor@redhat.com>)
1184
1185 * Fri Aug 10 2001 Than Ngo <than@redhat.com>
1186 - don't set MSN if it' empty (it's now optional)
1187 - don't give login name as a cmdline-option (Bug #23066)
1188 - remove peer device file if ppp connection is down
1189 - fix channel bundling
1190
1191 * Thu Aug 9 2001 Bill Nottingham <notting@redhat.com>
1192 - require SysVinit (#51335)
1193
1194 * Wed Aug 8 2001 Bill Nottingham <notting@redhat.com>
1195 - tweak raittab grep slightly (#51231)
1196 - allow resetting of default route for DHCP addresses (#48994)
1197 - save resolv.conf in ifup-ppp for restoration by ifdown-post (#50759)
1198 - when munging firewall rules for dns, only allow dest ports 1025-65535 (#44038, #40833)
1199 - allow shell characters in ppp names (#43719)
1200 - allow setting DHCP arguments, just kill dhcpcd instead of using -k (#46492)
1201 - behave sanely if ifup called when dhcpcd is running (#49392, #51038)
1202
1203 * Mon Aug 6 2001 Bill Nottingham <notting@redhat.com>
1204 - honor HOTPLUG=no if running under hotplug (#47483)
1205 - use awk, not grep, for modprobe -c checks (#49616)
1206 - don't print ugly messages for the case where the device doesn't exist,
1207 and there is no alias (i.e., PCMCIA ONBOOT=yes (#various))
1208 - run kbdconfig in /.unconfigured mode (#43941)
1209 - use a bigger buffer size argument to dmesg (#44024)
1210 - detach loopback devices on shutdown (#43919, #45826)
1211
1212 * Thu Aug 2 2001 Bill Nottingham <notting@redhat.com>
1213 - fix halt_get_remaining() (#50720)
1214
1215 * Tue Jul 31 2001 Bill Nottingham <notting@redhat.com>
1216 - mount all FS types r/o at halt (#50461)
1217 - don't use mii-tool at all (#various)
1218
1219 * Thu Jul 26 2001 Bill Nottingham <notting@redhat.com>
1220 - don't use kbd commands in setsysfont now that we've switched back to
1221 console-tools (#50075)
1222 - sleep in check_link_down; some devices require it
1223 - only bring link down if check_link_down fails
1224
1225 * Wed Jul 25 2001 Bill Nottingham <notting@redhat.com>
1226 - set link up before checking with mii-tool (#49949)
1227
1228 * Tue Jul 24 2001 Bill Nottingham <notting@redhat.com>
1229 - update netdev stuff to use _netdev
1230 - IPv6 updates (<pekkas@netcore.fi>)
1231 - fix downing of devices with static IPs (#49777, #49783)
1232 - put ifcfg-lo back in the package
1233
1234 * Fri Jul 20 2001 Preston Brown <pbrown@redhat.com> 6.06
1235 - updates for quota
1236
1237 * Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
1238 - own some more directories
1239 - use -O nonetdev, require mount package that understands this
1240 - fix do_netreport when called as non-root
1241 - remove ip addresses from interfaces on ifdown
1242 - oops, fix ifup/ifdown
1243
1244 * Mon Jul 16 2001 Than Ngo <than@redhat.com>
1245 - fix country_code for ISDN
1246
1247 * Tue Jul 9 2001 Bill Nottingham <notting@redhat.com>
1248 - fix '--check'
1249 - prereq sh-utils (#43065)
1250 - fix some invocations of reboot/halt (#45966)
1251 - fix typo in ifup-wireless
1252 - don't muck with /etc/issue each boot
1253 - big IPv6 update (<pekkas@netcore.fi>)
1254
1255 * Fri Jul 6 2001 Trond Eivind Glomsrød <teg@redhat.com>
1256 - Add new directories required by new network tool
1257
1258 * Thu Jul 05 2001 Karsten Hopp <karsten@redhat.de>
1259 - disable hwclock on S390 (no such executable)
1260 - Fix up kernel versioning on binary-only modules (S390)
1261 - don't use newt scripts on S390 console
1262
1263 * Sat Jul 01 2001 Trond Eivind Glomsrød <teg@redhat.com>
1264 - reenable pump, but make sure dhcpcd is the default. This
1265 way, upgrades of systems without dhcpcd has a better chance at
1266 working.
1267
1268 * Thu Jun 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
1269 - Disable pump completely
1270
1271 * Wed Jun 27 2001 Than Ngo <than@redhat.com>
1272 - fix pap/chap authentication for syncppp
1273 - support ippp options
1274
1275 * Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
1276 - add ifup-wireless
1277
1278 * Fri Jun 22 2001 Than Ngo <than@redhat.com>
1279 - add support xDSL
1280
1281 * Thu Jun 21 2001 Bill Nottingham <notting@redhat.com>
1282 - more networking script fixes (#45364)
1283 - add stuff for unmounting /initrd
1284
1285 * Thu Jun 21 2001 Than Ngo <than@redhat.com>
1286 - add support ISDN
1287
1288 * Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
1289 - fix extremely broken new network scripts
1290
1291 * Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
1292 - bump version to 5.89
1293 - make it build
1294
1295 * Thu May 17 2001 Bill Nottingham <notting@redhat.com>
1296 - don't run ifup ppp0 if ppp-watch gets SIGINT (#40585, ak@cave.hop.stu.neva.ru)
1297 - fix do_netreport (#37716, #39603 <crlf@aeiou.pt>)
1298
1299 * Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
1300 - copyright: GPL -> license: GPL
1301 - fix a syntax error in lang.csh
1302 - skip commented-out i18n configuration lines in lang.csh
1303
1304 * Fri May 11 2001 Preston Brown <pbrown@redhat.com>
1305 - new network-scripts infrastructure; ifcfg-lo moved to /etc/sysconfig/networking
1306
1307 * Wed May 2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.86-1
1308 - support kbd in setsysfont
1309 - bzip2 source
1310
1311 * Wed Apr 25 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1312 - add further s390 changes:
1313 - ifup-iucv
1314 - mkkerneldoth.s390
1315
1316 * Tue Apr 24 2001 Than Ngo <than@redhat.com>
1317 - add shutdown UPS into halt (bug #34312)
1318
1319 * Sat Apr 7 2001 Preston Brown <pbrown@redhat.com>
1320 - broke out kernel.h updater from rc.sysinit into /sbin/mkkerneldoth
1321
1322 * Fri Apr 6 2001 Bill Nottingham <notting@redhat.com>
1323 - be a little more careful in do_netreport (#34933)
1324
1325 * Tue Apr 3 2001 Bill Nottingham <notting@redhat.com>
1326 - set umask explicitly to 022 in /etc/init.d/functions
1327
1328 * Mon Apr 2 2001 Bill Nottingham <notting@redhat.com>
1329 - fix segfault in usernetctl (#34353)
1330
1331 * Mon Mar 26 2001 Bill Nottingham <notting@redhat.com>
1332 - don't print errors in /etc/init.d/network if kernel.hotplug doesn't exist
1333
1334 * Thu Mar 22 2001 Erik Troan <ewt@redhat.com>
1335 - take advantage of new swapon behaviors
1336
1337 * Wed Mar 14 2001 Bill Nottingham <notting@redhat.com>
1338 - add cipe interfaces last (#31597)
1339
1340 * Tue Mar 13 2001 Bill Nottingham <notting@redhat.com>
1341 - fix typo in ifup (#31627)
1342 - update translation source
1343
1344 * Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com>
1345 - fix typo in rc.sysinit
1346 - fix ifup-routes not setting DEVICE properly
1347
1348 * Mon Mar 12 2001 Preston Brown <pbrown@redhat.com>
1349 - Work properly with new quota utilities
1350
1351 * Mon Mar 5 2001 Bill Nottingham <notting@redhat.com>
1352 - IPv6 fixes (#30506)
1353 - make static-routes handling more sane and consistent (#29500, #29549)
1354 - handle multiple USB controllers *correctly*
1355
1356 * Wed Feb 28 2001 Nalin Dahyabhai <nalin@redhat.com>
1357 - usernetctl, ppp-watch: cleanups
1358 - netreport: use O_NOFOLLOW
1359 - ifup-ppp: let ppp-watch watch over demand-dialed connections (#28927)
1360
1361 * Tue Feb 27 2001 Bill Nottingham <notting@redhat.com>
1362 - don't run isapnp on isapnp-enabled 2.4 kernels (part of #29450)
1363 - disable hotplug during network initscript
1364 - don't munge wireless keys in ifup; that will be done with the
1365 PCMCIA wireless stuff
1366 - run sndconfig --mungepnp for non-native-isapnp soundcards
1367 - don't explicitly kill things in init.d/single, init will do it
1368 - don't explicitly load usb-storage; mount the usbdevfs before initializing
1369 host controller modules
1370
1371 * Wed Feb 21 2001 Bill Nottingham <notting@redhat.com>
1372 - initialize multiple USB controllers if necessary
1373
1374 * Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
1375 - close extra file descriptors before exec()ing commands in initlog
1376
1377 * Mon Feb 19 2001 Bill Nottingham <notting@redhat.com>
1378 - fix some substitions in init.d/functions (fixes various killproc issues)
1379 - make sure ipv6 module alias is available if configured
1380 - fix initlog segfaults in popt when called with bogus stuff (#28140)
1381
1382 * Thu Feb 15 2001 Nalin Dahyabhai <nalin@redhat.com>
1383 - make pidofproc() and killproc() try to use the PID associated with the full
1384 pathname first before killing the daemon by its basename (for daemons that
1385 share the same basename, i.e. "master" in postfix and cyrus-imapd) (#19016)
1386 - fix status() as well
1387
1388 * Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
1389 - fix init.d/single to work around possible kernel problem
1390
1391 * Tue Feb 13 2001 Bill Nottingham <notting@redhat.com>
1392 - fix unmounting of loopback stuff (#26439, #14672)
1393
1394 * Mon Feb 12 2001 Bill Nottingham <notting@redhat.com>
1395 - fix ifup-post so that it will work right when not called from ifup
1396
1397 * Sat Feb 10 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1398 - add all save changes for s390 s390x that won't break anything
1399 patches are from Oliver Paukstadt @ millenux.com
1400
1401 * Fri Feb 9 2001 Bill Nottingham <notting@redhat.com>
1402 - muck with the font in lang.csh/lang.sh, but don't spit out errors (#26903)
1403
1404 * Wed Feb 7 2001 Bill Nottingham <notting@redhat.com>
1405 - ipv6 sync ups (#26502, #25775)
1406 - fix hangs at shutdown (#25744)
1407 - fix ifup-ppp (#26323)
1408
1409 * Tue Feb 6 2001 Bill Nottingham <notting@redhat.com>
1410 - modify firewall on ifup to allow any new DNS servers through (#25951)
1411 - don't muck with the font in lang.csh/lang.sh (#26349)
1412 - don't display Japanese if we aren't on a pty (#25041)
1413 - load ide-scsi if passed on /proc/cmdline
1414
1415 * Mon Feb 5 2001 Trond Eivind Glomsrød <teg@redhat.com>
1416 - i18n updates
1417
1418 * Fri Feb 2 2001 Bill Nottingham <notting@redhat.com>
1419 - actually *ship* the ipv6 (and plusb) files
1420
1421 * Thu Feb 1 2001 Trond Eivind Glomsrød <teg@redhat.com>
1422 - i18n updates
1423
1424 * Tue Jan 30 2001 Bill Nottingham <notting@redhat.com>
1425 - various init.d/functions cleanups (#10761, from <mjt@tls.msk.ru>)
1426 - in daemon(), only look at pidfile to determine if process is running
1427 (#17244, others)
1428 - ifup-ppp enhancements (#17388, from <ayn2@cornell.edu>)
1429 - ipv6 support (#23576, originally by Peter Bieringer <pb@bieringer.de>)
1430 - lots of other minor fixes (see ChangeLog)
1431
1432 * Mon Jan 29 2001 Bill Nottingham <notting@redhat.com>
1433 - add plusb support (#18892, patch from <eric.ayers@compgen.com>)
1434 - don't ignore RETRYTIMEOUT when we never connect (#14071, patch from
1435 <ak@cave.hop.stu.neva.ru>)
1436
1437 * Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
1438 - quiet LVM setup (#24841)
1439 - fix inability to shutdown cleanly (#24889)
1440
1441 * Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
1442 - new i18n mechanism
1443
1444 * Tue Jan 23 2001 Matt Wilson <msw@redhat.com>
1445 - fixed typo in init.d/network - missing | in pipeline
1446
1447 * Mon Jan 22 2001 Bill Nottingham <notting@redhat.com>
1448 - do LVM setup through normal initscripts mechanisms
1449 - ignore backup files in /etc/sysconfig/network-scripts
1450 - lots of .po file updates
1451
1452 * Tue Jan 2 2001 Bill Nottingham <notting@redhat.com>
1453 - initial i18n support - originally from Conectiva
1454
1455 * Mon Dec 11 2000 Bill Nottingham <notting@redhat.com>
1456 - only load sound if persistent DMA buffers are necessary
1457 - fix lots of bugs: #18619, #21187, #21283, #12097
1458 - integrate MAXFAIL option for ppp-watch
1459 - don't load keymaps/fonts on a serial console
1460
1461 * Tue Nov 21 2000 Karsten Hopp <karsten@redhat.de>
1462 - changed hdparm section in rc.sysinit to allow different
1463 parameters for each disk (if needed) by copying
1464 /etc/sysconfig/harddisks to /etc/sysconfig/harddiskhda (hdb,hdc..)
1465 - fix RFE #20967
1466
1467 * Tue Oct 31 2000 Than Ngo <than@redhat.com>
1468 - fix the adding default route if GATEWAY=0.0.0.0
1469
1470 * Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com>
1471 - handle "gw x.x.x.x" as the last pair of flags in ifup-routes (#18804)
1472 - fix top-level makefile install target
1473 - make usernetctl just fall-through if getuid() == 0
1474
1475 * Sun Sep 3 2000 Florian La Roche <Florian.LaRoche@redhat.com>
1476 - /etc/init.d is already provided by chkconfig
1477
1478 * Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
1479 - set "holdoff ${RETRYTIMEOUT} ktune" for demand-dialed PPP links
1480
1481 * Tue Aug 22 2000 Bill Nottingham <notting@redhat.com>
1482 - update documentation (#15475)
1483
1484 * Tue Aug 22 2000 Than Ngo <than@redhat.de>
1485 - add KDE2 support to prefdm
1486
1487 * Mon Aug 21 2000 Bill Nottingham <notting@redhat.com>
1488 - add usleep after kill -KILL in pidofproc, works around lockd issues (#14847)
1489 - add some fallback logic to prefdm (#16464)
1490
1491 * Fri Aug 18 2000 Bill Nottingham <notting@redhat.com>
1492 - don't load usb drivers if they're compiled statically
1493 - don't call ifdown-post twice for ppp (#15285)
1494
1495 * Wed Aug 16 2000 Bill Nottingham <notting@redhat.com>
1496 - fix /boot/kernel.h generation (#16236, #16250)
1497
1498 * Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com>
1499 - be more careful about creating files in netreport (#16164)
1500
1501 * Sat Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
1502 - move documentation for the DEMAND and IDLETIMEOUT values to the right
1503 section of sysconfig.txt
1504
1505 * Wed Aug 9 2000 Bill Nottingham <notting@redhat.com>
1506 - load agpgart if necessary (hack)
1507 - fix /boot/kernel.h stuff (jakub)
1508
1509 * Mon Aug 7 2000 Bill Nottingham <notting@redhat.com>
1510 - remove console-tools requirement
1511 - in netfs, start portmap if needed
1512 - cosmetic cleanups, minor tweaks
1513 - don't probe USB controllers
1514
1515 * Mon Aug 7 2000 Nalin Dahyabhai <nalin@redhat.com>
1516 - fix demand-dialing support for PPP devices
1517 - change updetach back to nodetach
1518
1519 * Sun Aug 6 2000 Bill Nottingham <notting@redhat.com>
1520 - add RETRYCONNECT option for ifcfg-pppX files (kenn@linux.ie)
1521
1522 * Wed Jul 26 2000 Bill Nottingham <notting@redhat.com>
1523 - fix unclean shutdown
1524
1525 * Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
1526 - s/nill/null/g
1527
1528 * Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
1529 - unmount usb filesystem on halt
1530 - run /sbin/ifup-pre-local if it exists
1531
1532 * Tue Jul 18 2000 Trond Eivind Glomsrød <teg@redhat.com>
1533 - add "nousb" command line parameter
1534 - fix some warnings when mounting /proc/bus/usb
1535
1536 * Sat Jul 15 2000 Matt Wilson <msw@redhat.com>
1537 - kill all the PreTransaction stuff
1538 - directory ownership cleanups, add more LSB symlinks
1539 - move all the stuff back in to /etc/rc.d/
1540
1541 * Thu Jul 13 2000 Bill Nottingham <notting@redhat.com>
1542 - fix == tests in rc.sysinit
1543 - more %pretrans tweaks
1544
1545 * Thu Jul 13 2000 Jeff Johnson <jbj@redhat.com>
1546 - test if /etc/rc.d is a symlink already in pre-transaction syscalls.
1547
1548 * Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
1549 - implement the %pre with RPM Magic(tm)
1550
1551 * Sat Jul 8 2000 Bill Nottingham <notting@redhat.com>
1552 - fix it to not follow /etc/rc.d
1553
1554 * Fri Jul 7 2000 Bill Nottingham <notting@redhat.com>
1555 - fix %pre, again
1556
1557 * Thu Jul 6 2000 Bill Nottingham <notting@redhat.com>
1558 - tweak %pre back to a mv (rpm is fun!)
1559 - do USB initialization before fsck, so keyboard works if it fails
1560
1561 * Mon Jul 3 2000 Bill Nottingham <notting@redhat.com>
1562 - rebuild; allow 'fastboot' kernel command line option to skip fsck
1563
1564 * Mon Jul 03 2000 Nalin Dahyabhai <nalin@redhat.com>
1565 - fix demand-dialing with PPP
1566
1567 * Sun Jul 02 2000 Trond Eivind Glomsrød <teg@redhat.com>
1568 - don't use tail
1569
1570 * Thu Jun 28 2000 Trond Eivind Glomsrød <teg@redhat.com>
1571 - add support for USB controllers and HID devices
1572 (mice, keyboards)
1573
1574 * Tue Jun 27 2000 Trond Eivind Glomsrød <teg@redhat.com>
1575 - add support for EIDE optimization
1576
1577 * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
1578 - tweak %%pre
1579
1580 * Wed Jun 21 2000 Preston Brown <pbrown@redhat.com>
1581 - noreplace for adjtime file
1582
1583 * Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com>
1584 - ifup-ppp: add hooks for demand-dialing PPP
1585 - functions: use basename of process when looking for its PID file
1586
1587 * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
1588 - move from /etc/rc.d/init.d -> /etc/init.d
1589
1590 * Tue Jun 13 2000 Bill Nottingham <notting@redhat.com>
1591 - set soft limit, not hard, in daemon function
1592 - /var/shm -> /dev/shm
1593
1594 * Thu Jun 08 2000 Preston Brown <pbrown@redhat.com>
1595 - use dhcpcd if pump fails.
1596 - use depmod -A (faster)
1597
1598 * Sun Jun 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1599 - add autologin support to prefdm
1600
1601 * Thu Jun 1 2000 Bill Nottingham <notting@redhat.com>
1602 - random networking fixes (alias routes, others)
1603 - conf.modules -> modules.conf
1604
1605 * Thu May 11 2000 Nalin Dahyabhai <nalin@redhat.com>
1606 - fix incorrect grep invocation in rc.sysinit (bug #11267)
1607
1608 * Wed Apr 19 2000 Bill Nottingham <notting@redhat.com>
1609 - fix lang.csh, again (oops)
1610 - use /poweroff, /halt to determine whether to poweroff
1611
1612 * Thu Apr 14 2000 Bill Nottingham <notting@redhat.com>
1613 - fix testing of RESOLV_MODS (which shouldn't be used anyways)
1614
1615 * Tue Apr 04 2000 Ngo Than <than@redhat.de>
1616 - fix overwrite problem of resolv.conf on ippp/ppp/slip connections
1617
1618 * Mon Apr 3 2000 Bill Nottingham <notting@redhat.com>
1619 - fix typo in functions file
1620 - explicitly set --localtime when calling hwclock if necessary
1621
1622 * Fri Mar 31 2000 Bill Nottingham <notting@redhat.com>
1623 - fix typo in /etc/rc.d/init.d/network that broke linuxconf (#10472)
1624
1625 * Mon Mar 27 2000 Bill Nottingham <notting@redhat.com>
1626 - remove compatiblity chkconfig links
1627 - run 'netfs stop' on 'network stop' if necessary
1628
1629 * Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1630 - Mount /var/shm if required (2.3.99, 2.4)
1631
1632 * Mon Mar 20 2000 Bill Nottingham <notting@redhat.com>
1633 - don't create resolv.conf 0600
1634 - don't run ps as much (speed issues)
1635 - allow setting of MTU
1636 - other minor fixes
1637
1638 * Sun Mar 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1639 - Start devfsd if installed and needed (Kernel 2.4...)
1640
1641 * Wed Mar 8 2000 Bill Nottingham <notting@redhat.com>
1642 - check that network devices are up before bringing them down
1643
1644 * Wed Mar 8 2000 Jakub Jelinek <jakub@redhat.com>
1645 - update sysconfig.txt
1646
1647 * Tue Mar 7 2000 Bill Nottingham <notting@redhat.com>
1648 - rerun sysctl on network start (for restarts)
1649
1650 * Mon Feb 28 2000 Bill Nottingham <notting@redhat.com>
1651 - don't read commented raid devices
1652
1653 * Mon Feb 21 2000 Bill Nottingham <notting@redhat.com>
1654 - fix typo in resolv.conf munging
1655
1656 * Thu Feb 17 2000 Bill Nottingham <notting@redhat.com>
1657 - sanitize repair prompt
1658 - initial support for isdn-config stuff
1659
1660 * Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
1661 - add which as a package dependency (bug #9416)
1662
1663 * Tue Feb 8 2000 Bill Nottingham <notting@redhat.com>
1664 - fixes for sound module loading
1665
1666 * Mon Feb 7 2000 Nalin Dahyabhai <nalin@redhat.com>
1667 - check that LC_ALL/LINGUAS and LANG are set before referencing them in lang.csh
1668 - fix check for /var/*/news, work around for bug #9140
1669
1670 * Fri Feb 4 2000 Nalin Dahyabhai <nalin@redhat.com>
1671 - fix bug #9102
1672
1673 * Fri Feb 4 2000 Bill Nottingham <notting@redhat.com>
1674 - if LC_ALL/LINGUAS == LANG, don't set them
1675
1676 * Wed Feb 2 2000 Bill Nottingham <notting@redhat.com>
1677 - fix problems with linuxconf static routes
1678
1679 * Tue Feb 1 2000 Nalin Dahyabhai <nalin@redhat.com>
1680 - shvar cleaning
1681 - fix wrong default route ip in network-functions
1682
1683 * Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
1684 - attempt to restore default route if PPP takes it over
1685 - man page fix for ipcalc
1686 - shvar cleaning
1687 - automate maintaining /boot/System.map symlinks
1688
1689 * Mon Jan 31 2000 Bill Nottingham <notting@redhat.com>
1690 - fix hanging ppp-watch
1691 - fix issues with cleaning of /var/{run,lock}
1692
1693 * Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
1694 - fix pidof calls in pidofproc
1695
1696 * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
1697 - fix ifup-ipx, don't munge resolv.conf if $DNS1 is already in it
1698
1699 * Thu Jan 13 2000 Bill Nottingham <notting@redhat.com>
1700 - link popt statically
1701
1702 * Mon Jan 10 2000 Bill Nottingham <notting@redhat.com>
1703 - don't try to umount /loopfs
1704
1705 * Mon Dec 27 1999 Bill Nottingham <notting@redhat.com>
1706 - switch to using sysctl
1707
1708 * Mon Dec 13 1999 Bill Nottingham <notting@redhat.com>
1709 - umount /proc *after* trying to turn off raid
1710
1711 * Mon Dec 06 1999 Michael K. Johnson <johnsonm@redhat.com>
1712 - improvements in clone device handling
1713 - better signal handling in ppp-watch
1714 - yet another attempt to fix those rare PAP/CHAP problems
1715
1716 * Sat Nov 28 1999 Bill Nottingham <notting@redhat.com>
1717 - impressive. Three new features, three new bugs.
1718
1719 * Mon Nov 22 1999 Michael K. Johnson <johnsonm@redhat.com>
1720 - fix more possible failed CHAP authentication (with chat scripts)
1721 - fix ppp default route problem
1722 - added ppp-watch man page, fixed usernetctl man page
1723 - make ifup-ppp work again when called from netcfg and linuxconf
1724 - try to keep ppp-watch from filling up logs by respawning pppd too fast
1725 - handle all linuxconf-style alias files with linuxconf
1726
1727 * Mon Nov 22 1999 Bill Nottingham <notting@redhat.com>
1728 - load mixer settings for monolithic sound
1729 - man page for ppp-watch
1730 - add ARP variable for ifup
1731 - some i18n fixes
1732
1733 * Wed Nov 10 1999 Bill Nottingham <notting@redhat.com>
1734 - control stop-a separately from sysrq
1735
1736 * Mon Nov 08 1999 Michael K. Johnson <johnsonm@redhat.com>
1737 - fix some failed CHAP authentication
1738 - fix extremely unlikely, but slightly possible kill-random-process
1739 bug in ppp-watch
1740 - allow DNS{1,2} in any ifcfg-* file, not just PPP, and
1741 add nameserver entries, don't just replace them
1742 - don't use /tmp/confirm, use /var/run/confirm instead
1743
1744 * Tue Nov 2 1999 Bill Nottingham <notting@redhat.com>
1745 - fix lang.csh /tmp race oops
1746
1747 * Wed Oct 27 1999 Bill Nottingham <notting@redhat.com>
1748 - we now ship hwclock on alpha.
1749
1750 * Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com>
1751 - fix check for serial console, don't use -C argument to fsck
1752 on serial console.
1753
1754 * Mon Oct 18 1999 Bill Nottingham <notting@redhat.com>
1755 - do something useful with linuxconf 'any' static routes.
1756
1757 * Tue Oct 12 1999 Matt Wilson <msw@redhat.com>
1758 - added patch from Owen to source i18n configuration before starting prefdm
1759
1760 * Mon Oct 11 1999 Bill Nottingham <notting@redhat.com>
1761 - support for linuxconf alias files
1762 - add support for Jensen clocks.
1763
1764 * Tue Oct 5 1999 Bill Nottingham <notting@redhat.com>
1765 - assorted brown paper bag fixes
1766 - check for programs/files before executing/sourcing them
1767 - control stop-a like magic sysrq
1768
1769 * Thu Sep 30 1999 Bill Nottingham <notting@redhat.com>
1770 - req. e2fsprogs >= 1.15
1771
1772 * Fri Sep 24 1999 Bill Nottingham <notting@redhat.com>
1773 - munge C locale definitions to en_US
1774 - use fsck's completion bar
1775
1776 * Thu Sep 23 1999 Michael K. Johnson <johnsonm@redhat.com>
1777 - ppp-watch now always kills pppd pgrp to make sure dialers are dead,
1778 and tries to hang up the modem
1779
1780 * Tue Sep 21 1999 Bill Nottingham <notting@redhat.com>
1781 - add a DEFRAG_IPV4 option
1782
1783 * Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
1784 - changed to more modern defaults for PPP connections
1785
1786 * Mon Sep 20 1999 Bill Nottingham <notting@redhat.com>
1787 - kill processes for umount in halt, too.
1788 - fixes to remove /usr dependencies
1789
1790 * Fri Sep 17 1999 Bill Nottingham <notting@redhat.com>
1791 - load/save mixer settings in rc.sysinit, halt
1792
1793 * Mon Sep 13 1999 Michael K. Johnson <johnsonm@redhat.com>
1794 - add --remotename option to wvdial code
1795 - make sure we do not have an earlier version of wvdial that doesn't
1796 know how handle --remotename
1797 - make ppp-watch background itself after 30 seconds even if
1798 connection does not come up, at boot time only, so that a
1799 non-functional PPP connection cannot hang boot.
1800
1801 * Sun Sep 12 1999 Bill Nottingham <notting@redhat.com>
1802 - a couple of /bin/sh -> /bin/bash fixes
1803 - fix swapoff silliness
1804
1805 * Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
1806 - chkconfig --del in %preun, not %postun
1807 - use killall5 in halt
1808 - swapoff non-/etc/fstab swap
1809
1810 * Wed Sep 08 1999 Michael K. Johnson <johnsonm@redhat.com>
1811 - ifdown now synchronous (modulo timeouts)
1812 - several unrelated cleanups, primarily in ifdown
1813
1814 * Tue Sep 7 1999 Bill Nottingham <notting@redhat.com>
1815 - add an 'unconfigure' sort of thing
1816
1817 * Mon Sep 06 1999 Michael K. Johnson <johnsonm@redhat.com>
1818 - added ppp-watch to make "ifup ppp*" synchronous
1819
1820 * Fri Sep 3 1999 Bill Nottingham <notting@redhat.com>
1821 - require lsof
1822
1823 * Wed Sep 1 1999 Bill Nottingham <notting@redhat.com>
1824 - add interactive prompt
1825
1826 * Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
1827 - disable magic sysrq by default
1828
1829 * Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
1830 - new NFS unmounting from Bill Rugolsky <rugolsky@ead.dsa.com>
1831 - fix ifup-sl/dip confusion
1832 - more raid startup cleanup
1833 - make utmp group 22
1834
1835 * Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
1836 - pass hostname to pump
1837 - add lang.csh
1838
1839 * Thu Aug 19 1999 Bill Nottingham <notting@redhat.com>
1840 - more wvdial updates
1841 - fix a *stupid* bug in process reading
1842
1843 * Fri Aug 13 1999 Bill Nottingham <notting@redhat.com>
1844 - add new /boot/kernel.h boot kernel version file
1845 - new RAID startup
1846
1847 * Fri Aug 13 1999 Michael K. Johnson <johnsonm@redhat.com>
1848 - use new linkname argument to pppd to make if{up,down}-ppp
1849 reliable -- requires ppp-2.3.9 or higher
1850
1851 * Mon Aug 2 1999 Bill Nottingham <notting@redhat.com>
1852 - fix typo.
1853 - add 'make check'
1854
1855 * Wed Jul 28 1999 Michael K. Johnson <johnsonm@redhat.com>
1856 - simple wvdial support for ppp connections
1857
1858 * Mon Jul 26 1999 Bill Nottingham <notting@redhat.com>
1859 - stability fixes for initlog
1860 - initlog now has a config file
1861 - add alias speedup from dharris@drh.net
1862 - move netfs links
1863 - usleep updates
1864
1865 * Thu Jul 8 1999 Bill Nottingham <notting@redhat.com>
1866 - remove timeconfig dependency
1867 - i18n fixes from nkbj@image.dk
1868 - move inputrc to setup package
1869
1870 * Tue Jul 6 1999 Bill Nottingham <notting@redhat.com>
1871 - fix killall links, some syntax errors
1872
1873 * Fri Jun 25 1999 Bill Nottingham <notting@redhat.com>
1874 - don't make module-info, System.map links
1875 - handle utmpx/wtmpx
1876 - fix lots of bugs in 4.21 release :)
1877
1878 * Thu Jun 17 1999 Bill Nottingham <notting@redhat.com>
1879 - set clock as soon as possible
1880 - use INITLOG_ARGS everywhere
1881 - other random fixes in networking
1882
1883 * Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
1884 - oops, don't create /var/run/utmp and then remove it.
1885 - stomp RAID bugs flat. Sort of.
1886
1887 * Mon May 24 1999 Bill Nottingham <notting@redhat.com>
1888 - clean out /var better
1889 - let everyone read /var/run/ppp*.dev
1890 - fix network startup so it doesn't depend on /usr
1891
1892 * Tue May 11 1999 Bill Nottingham <notting@redhat.com>
1893 - various fixes to rc.sysinit
1894 - fix raid startup
1895 - allow for multi-processor /etc/issues
1896
1897 * Sun Apr 18 1999 Matt Wilson <msw@redhat.com>
1898 - fixed typo - "Determing" to "Determining"
1899
1900 * Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
1901 - updated inputrc so that home/end/del work on console, not just X
1902
1903 * Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
1904 - fix more logic in initlog
1905 - fix for kernel versions in ifup-aliases
1906 - log to /var/log/boot.log
1907
1908 * Wed Apr 07 1999 Bill Nottingham <notting@redhat.com>
1909 - fix daemon() function so you can specify pid to look for
1910
1911 * Wed Apr 07 1999 Erik Troan <ewt@redhat.com>
1912 - changed utmp,wtmp to be group writeable and owned by group utmp
1913
1914 * Tue Apr 06 1999 Bill Nottingham <notting@redhat.com>
1915 - fix loading of consolefonts/keymaps
1916 - three changelogs. three developers. one day. Woohoo!
1917
1918 * Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com>
1919 - fixed ifup-ipx mix-up over . and _
1920
1921 * Tue Apr 06 1999 Erik Troan <ewt@redhat.com>
1922 - run /sbin/ifup-local after bringing up an interface (if that file exists)
1923
1924 * Mon Apr 5 1999 Bill Nottingham <notting@redhat.com>
1925 - load keymaps & console font early
1926 - fixes for channel bonding, strange messages with non-boot network interfaces
1927
1928 * Sat Mar 27 1999 Cristian Gafton <gafton@redhat.com>
1929 - added sysvinitfiles as a documenattaion file
1930
1931 * Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
1932 - nfsfs -> netfs
1933
1934 * Mon Mar 22 1999 Bill Nottingham <notting@redhat.com>
1935 - don't source /etc/sysconfig/init if $BOOTUP is already set
1936
1937 * Fri Mar 19 1999 Bill Nottingham <notting@redhat.com>
1938 - don't run linuxconf if /usr isn't mounted
1939 - set macaddr before bootp
1940 - zero in the /var/run/utmpx file (gafton)
1941 - don't set hostname on ppp/slip (kills X)
1942
1943 * Wed Mar 17 1999 Bill Nottingham <notting@redhat.com>
1944 - exit ifup if pump fails
1945 - fix stupid errors in reading commands from subprocess
1946
1947 * Tue Mar 16 1999 Bill Nottingham <notting@redhat.com>
1948 - fix ROFS logging
1949 - make fsck produce more happy output
1950 - fix killproc logic
1951
1952 * Mon Mar 15 1999 Bill Nottingham <notting@redhat.com>
1953 - doc updates
1954 - support for SYSFONTACM, other console-tools stuff
1955 - add net route for interface if it isn't there.
1956 - fix for a bash/bash2 issue
1957
1958 * Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
1959 - pam_console lockfile cleanup added to rc.sysinit
1960
1961 * Sun Mar 14 1999 Bill Nottingham <notting@redhat.com>
1962 - fixes in functions for 'action'
1963 - fixes for pump
1964
1965 * Wed Mar 10 1999 Bill Nottingham <notting@redhat.com>
1966 - Mmm. Must always remove debugging code. before release. *thwap*
1967 - pump support
1968 - mount -a after mount -a -t nfs
1969
1970 * Thu Feb 25 1999 Bill Nottingham <notting@redhat.com>
1971 - put preferred support back in
1972
1973 * Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
1974 - fix single-user mode (source functions, close if)
1975
1976 * Wed Feb 10 1999 Bill Nottingham <notting@redhat.com>
1977 - turn off xdm in runlevel 5 (now a separate service)
1978
1979 * Thu Feb 4 1999 Bill Nottingham <notting@redhat.com>
1980 - bugfixes (ifup-ppp, kill -TERM, force fsck, hwclock --adjust, setsysfont)
1981 - add initlog support. Now everything is logged (and bootup looks different)
1982
1983 * Thu Nov 12 1998 Preston Brown <pbrown@redhat.com>
1984 - halt now passed the '-i' flag so that network interfaces disabled
1985
1986 * Tue Nov 10 1998 Michael K. Johnson <johnsonm@redhat.com>
1987 - handle new linuxconf output for ipaliases
1988
1989 * Mon Oct 15 1998 Erik Troan <ewt@redhat.com>
1990 - fixed raid start stuff
1991 - added raidstop to halt
1992
1993 * Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
1994 - handle LC_ALL
1995
1996 * Mon Oct 12 1998 Preston Brown <pbrown@redhat.com>
1997 - adjusted setsysfont to always run setfont, even if only w/default font
1998
1999 * Tue Oct 06 1998 Cristian Gafton <gafton@redhat.com>
2000 - rc.sysvinit should be working with all kernel versions now
2001 - requires e2fsprogs (for fsck)
2002 - set INPUTRC and LESSCHARSET on linux-lat
2003
2004 * Wed Sep 16 1998 Jeff Johnson <jbj@redhat.com>
2005 - /etc/rc.d/rc: don't run /etc/rc.d/rcN.d/[KS]??foo.{rpmsave,rpmorig} scripts.
2006 - /etc/rc.d/rc.sysinit: raid startup (Nigel.Metheringham@theplanet.net).
2007 - /sbin/setsysfont: permit unicode fonts.
2008
2009 * Mon Aug 17 1998 Erik Troan <ewt@redhat.com>
2010 - don't add 'Red Hat Linux' to /etc/issue; use /etc/redhat-release as is
2011
2012 * Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com>
2013 - paranoia improvements to .rhkmvtag
2014 - if psacct with /sbin/accton, than turn off accounting
2015
2016 * Tue Jul 7 1998 Jeff Johnson <jbj@redhat.com>
2017 - start/stop run levels changed.
2018 - ipx_configure/ipx_internal_net moved to /sbin.
2019
2020 * Wed Jul 01 1998 Erik Troan <ewt@redhat.com>
2021 - usernetctl didn't understand "" around USERCTL attribute
2022
2023 * Wed Jul 1 1998 Jeff Johnson <jbj@redhat.com>
2024 - Use /proc/version to find preferred modules.
2025 - Numerous buglets fixed.
2026
2027 * Sun Jun 07 1998 Erik Troan <ewt@redhat.com>
2028 - rc.sysinit looks for bootfile= as well as BOOT_IMAGE to set
2029 /lib/modules/preferred symlink
2030
2031 * Mon Jun 01 1998 Erik Troan <ewt@redhat.com>
2032 - ipcalc should *never* have been setgid anything
2033 - depmod isn't run properly for non-serial numbered kernels
2034
2035 * Wed May 06 1998 Donnie Barnes <djb@redhat.com>
2036 - added system font and language setting
2037
2038 * Mon May 04 1998 Michael K. Johnson <johnsonm@redhat.com>
2039 - Added missing files to packagelist.
2040
2041 * Sat May 02 1998 Michael K. Johnson <johnsonm@redhat.com>
2042 - Added lots of linuxconf support. Should still work on systems that
2043 do not have linuxconf installed, but linuxconf gives enhanced support.
2044 - In concert with linuxconf, added IPX support. Updated docs to reflect it.
2045
2046 * Fri May 01 1998 Erik Troan <ewt@redhat.com>
2047 - rc.sysinit uses preferred directory
2048
2049 * Sun Apr 05 1998 Erik Troan <ewt@redhat.com>
2050 - updated rc.sysinit to deal with kernel versions with release numbers
2051
2052 * Sun Mar 22 1998 Erik Troan <ewt@redhat.com>
2053 - use ipcalc to calculate the netmask if one isn't specified
2054
2055 * Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
2056 - added and made use of ipcalc
2057
2058 * Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
2059 - removed unnecessary dhcp log from /tmp
2060
2061 * Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
2062 - if bootpc fails, take down the device
2063
2064 * Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
2065 - added check for mktemp failure
2066
2067 * Thu Feb 05 1998 Erik Troan <ewt@redhat.com>
2068 - fixed support for user manageable cloned devices
2069
2070 * Mon Jan 12 1998 Michael K. Johnson <johnsonm@redhat.com>
2071 - /sbin/ isn't always in $PATH, so call /sbin/route in ifup-routes
2072
2073 * Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
2074 - touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys
2075 - the logic for when /var/lock/subsys/kerneld is touched was backwards
2076
2077 * Tue Dec 30 1997 Erik Troan <ewt@redhat.com>
2078 - tried to get /proc stuff right one more time (uses -t nonfs,proc now)
2079 - added support for /fsckoptions
2080 - changed 'yse' to 'yes' in KERNELD= line
2081
2082 * Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
2083 - set domainname to "" if none is specified in /etc/sysconfig/network
2084 - fix /proc mounting to get it in /etc/mtab
2085
2086 * Mon Dec 08 1997 Michael K. Johnson <johnsonm@redhat.com>
2087 - fixed inheritance for clone devices
2088
2089 * Fri Nov 07 1997 Erik Troan <ewt@redhat.com>
2090 - added sound support to rc.sysinit
2091
2092 * Fri Nov 07 1997 Michael K. Johnson <johnsonm@redhat.com>
2093 - Added missing "then" clause
2094
2095 * Thu Nov 06 1997 Michael K. Johnson <johnsonm@redhat.com>
2096 - Fixed DEBUG option in ifup-ppp
2097 - Fixed PPP persistance
2098 - Only change IP forwarding if necessary
2099
2100 * Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
2101 - removed the skeleton init script
2102 - added the ability to 'nice' daemons
2103
2104 * Tue Oct 28 1997 Erik Troan <ewt@redhat.com>
2105 - touch /var/lock/subsys/kerneld if it's running, and after mounting /var
2106 - applied dhcp fix
2107
2108 * Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
2109 - added status|restart to init scripts
2110
2111 * Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
2112 - touch random seed file before chmod'ing it.
2113
2114 * Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
2115 - run domainname if NISDOMAIN is set
2116
2117 * Wed Oct 15 1997 Michael K. Johnson <johnsonm@redhat.com>
2118 - Make the random seed file mode 600.
2119
2120 * Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
2121 - bring down ppp devices if ifdown-ppp is called while ifup-ppp is sleeping.
2122
2123 * Mon Oct 13 1997 Erik Troan <ewt@redhat.com>
2124 - moved to new chkconfig conventions
2125
2126 * Sat Oct 11 1997 Erik Troan <ewt@redhat.com>
2127 - fixed rc.sysinit for hwclock compatibility
2128
2129 * Thu Oct 09 1997 Erik Troan <ewt@redhat.com>
2130 - run 'ulimit -c 0' before running scripts in daemon function
2131
2132 * Wed Oct 08 1997 Donnie Barnes <djb@redhat.com>
2133 - added chkconfig support
2134 - made all rc*.d symlinks have missingok flag
2135
2136 * Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
2137 - fixed network-scripts to allow full pathnames as config files
2138 - removed some old 3.0.3 pcmcia device handling
2139
2140 * Wed Oct 01 1997 Michael K. Johnson <johnsonm@redhat.com>
2141 - /var/run/netreport needs to be group-writable now that /sbin/netreport
2142 is setguid instead of setuid.
2143
2144 * Tue Sep 30 1997 Michael K. Johnson <johnsonm@redhat.com>
2145 - Added network-functions to spec file.
2146 - Added report functionality to usernetctl.
2147 - Fixed bugs I introduced into usernetctl while adding clone device support.
2148 - Clean up entire RPM_BUILD_ROOT directory in %clean.
2149
2150 * Mon Sep 29 1997 Michael K. Johnson <johnsonm@redhat.com>
2151 - Clone device support in network scripts, rc scripts, and usernetctl.
2152 - Disassociate from controlling tty in PPP and SLIP startup scripts,
2153 since they act as daemons.
2154 - Spec file now provides start/stop symlinks, since they don't fit in
2155 the CVS archive.
2156
2157 * Tue Sep 23 1997 Donnie Barnes <djb@redhat.com>
2158 - added mktemp support to ifup
2159
2160 * Thu Sep 18 1997 Donnie Barnes <djb@redhat.com>
2161 - fixed some init.d/functions bugs for stopping httpd
2162
2163 * Tue Sep 16 1997 Donnie Barnes <djb@redhat.com>
2164 - reworked status() to adjust for processes that change their argv[0] in
2165 the process table. The process must still have it's "name" in the argv[0]
2166 string (ala sendmail: blah blah).
2167
2168 * Mon Sep 15 1997 Erik Troan <ewt@redhat.com>
2169 - fixed bug in FORWARD_IPV4 support
2170
2171 * Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
2172 - added support for FORWARD_IPV4 variable
2173
2174 * Thu Sep 11 1997 Donald Barnes <djb@redhat.com>
2175 - added status function to functions along with better killproc
2176 handling.
2177 - added /sbin/usleep binary (written by me) and man page
2178 - changed BuildRoot to /var/tmp instead of /tmp
2179
2180 * Tue Jun 10 1997 Michael K. Johnson <johnsonm@redhat.com>
2181 - /sbin/netreport sgid rather than suid.
2182 - /var/run/netreport writable by group root.
2183
2184 - /etc/ppp/ip-{up|down} no longer exec their local versions, so
2185 now ifup-post and ifdown-post will be called even if ip-up.local
2186 and ip-down.local exist.
2187
2188 * Tue Jun 03 1997 Michael K. Johnson <johnsonm@redhat.com>
2189 - Added missing -f to [ invocation in ksyms check.
2190
2191 * Fri May 23 1997 Michael K. Johnson <johnsonm@redhat.com>
2192 - Support for net event notification:
2193 Call /sbin/netreport to request that SIGIO be sent to you whenever
2194 a network interface changes status (won't work for brining up SLIP
2195 devices).
2196 Call /sbin/netreport -r to remove the notification request.
2197 - Added ifdown-post, and made all the ifdown scrips call it, and
2198 added /etc/ppp/ip-down script that calls /etc/ppp/ip-down.local
2199 if it exists, then calls ifdown-post.
2200 - Moved ifup and ifdown to /sbin
2201
2202 * Tue Apr 15 1997 Michael K. Johnson <johnsonm@redhat.com>
2203 - usernetctl put back in ifdown
2204 - support for slaved interfaces
2205
2206 * Wed Apr 02 1997 Erik Troan <ewt@redhat.com>
2207 - Created ifup-post from old ifup
2208 - PPP, PLIP, and generic ifup use ifup-post
2209
2210 * Fri Mar 28 1997 Erik Troan <ewt@redhat.com>
2211 - Added DHCP support
2212 - Set hostname via reverse name lookup after configuring a networking
2213 device if the current hostname is (none) or localhost
2214
2215 * Tue Mar 18 1997 Erik Troan <ewt@redhat.com>
2216 - Got rid of xargs dependency in halt script
2217 - Don't mount /proc twice (unmount it in between)
2218 - sulogin and filesystem unmounting only happened for a corrupt root
2219 filesystem -- it now happens when other filesystems are corrupt as well
2220
2221 * Tue Mar 04 1997 Michael K. Johnson <johnsonm@redhat.com>
2222 - PPP fixes and additions
2223
2224 * Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
2225 - Mount proc before trying to start kerneld so we can test for /proc/ksyms
2226 properly.
2227
2228 * Wed Feb 26 1997 Michael K. Johnson <johnsonm@redhat.com>
2229 - Added MTU for PPP.
2230 - Put PPPOPTIONS at the end of the options string instead of at the
2231 beginning so that they override other options. Gives users more rope...
2232 - Don't do module-based stuff on non-module systems. Ignore errors if
2233 st module isn't there and we try to load it.
2234
2235 * Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com>
2236 - Changed ifup-ppp and ifdown-ppp not to use doexec, because the argv[0]
2237 provided by doexec goes away when pppd gets swapped out.
2238 - ifup-ppp now sets remotename to the logical name of the device.
2239 This will BREAK current PAP setups on netcfg-managed interfaces,
2240 but we needed to do this to add a reasonable interface-specific
2241 PAP editor to netcfg.
2242
2243 * Fri Feb 07 1997 Erik Troan <ewt@redhat.com>
2244 - Added usernetctl wrapper for user mode ifup and ifdown's and man page
2245 - Rewrote ppp and slip kill and retry code
2246 - Added doexec and man page

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