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

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