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

Annotation of /rpms/initscripts/sme7/initscripts.spec

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


Revision 1.8 - (hide annotations) (download)
Thu Mar 4 16:31:07 2010 UTC (14 years, 3 months ago) by slords
Branch: MAIN
Changes since 1.7: +2 -0 lines
Fix headers

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

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