/[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.1 - (show annotations) (download)
Tue Jun 12 16:26:34 2007 UTC (16 years, 11 months ago) by slords
Branch: MAIN
CVS Tags: initscripts-7_93_29_EL-1_el4_sme
Import on branch sme7 of package initscripts-7.93.29.EL-1.el4.sme.src.rpm

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

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