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

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