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