1 |
%define with_upstart 1%{nil} |
2 |
|
3 |
Summary: The inittab file and the /etc/init.d scripts |
4 |
Name: initscripts |
5 |
Version: 9.03.49 |
6 |
# ppp-watch is GPLv2+, everything else is GPLv2 |
7 |
License: GPLv2 and GPLv2+ |
8 |
Group: System Environment/Base |
9 |
Release: 1%{?dist}.1.1 |
10 |
URL: http://fedorahosted.org/releases/i/n/initscripts/ |
11 |
Source: http://fedorahosted.org/releases/i/n/initscripts/initscripts-%{version}.tar.bz2 |
12 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root |
13 |
Requires: mingetty, /bin/awk, /bin/sed, mktemp |
14 |
Requires: /sbin/sysctl |
15 |
Requires: /sbin/fuser, /bin/grep |
16 |
Requires: /sbin/pidof, /sbin/blkid |
17 |
Requires: module-init-tools >= 3.9-25 |
18 |
Requires: util-linux-ng >= 2.16 |
19 |
Requires: bash >= 3.0 |
20 |
Requires: sysvinit-tools >= 2.87-6 |
21 |
%if with_upstart |
22 |
Requires: upstart >= 0.6.5-11 |
23 |
%else |
24 |
Requires: SysVinit >= 2.85-38 |
25 |
%endif |
26 |
Requires: /sbin/ip, /sbin/arping, net-tools, /bin/find |
27 |
Requires: /etc/system-release |
28 |
Requires: ethtool >= 1.8-2, /sbin/runuser |
29 |
Requires: udev >= 125-1 |
30 |
Requires: cpio |
31 |
Conflicts: mkinitrd < 4.0, kernel < 2.6.18, mdadm < 3.1.2-9 |
32 |
Conflicts: ypbind < 1.6-12, psacct < 6.3.2-12, kbd < 1.06-19, lokkit < 0.50-14 |
33 |
Conflicts: dhclient < 12:4.1.0-6 |
34 |
Conflicts: tcsh < 6.13-5 |
35 |
Conflicts: xorg-x11, glib2 < 2.11.1-2 |
36 |
Conflicts: alsa-utils < 1.0.18 |
37 |
Conflicts: plymouth < 0.8.3-9 |
38 |
Conflicts: s390utils < 2:1.8.2-11 |
39 |
Conflicts: dmraid < 1.0.0.rc16-7, lvm2 < 2.02.97-2 |
40 |
Conflicts: e2fsprogs < 1.15 |
41 |
# http://bugzilla.redhat.com/show_bug.cgi?id=252973 |
42 |
Conflicts: nut < 2.2.0 |
43 |
Conflicts: NetworkManager < 1:0.8.0-12.git20100504 |
44 |
Obsoletes: hotplug <= 3:2004_09_23-10.1 |
45 |
Requires(pre): /usr/sbin/groupadd |
46 |
Requires(post): /sbin/chkconfig, coreutils |
47 |
Requires(preun): /sbin/chkconfig |
48 |
BuildRequires: glib2-devel popt-devel gettext pkgconfig |
49 |
Patch1: 0001-rc.sysinit-apply-quotas-after-system-is-relabeled.patch |
50 |
Patch1000: centos-initscripts.patch |
51 |
Patch2000: initscripts-9.03.31-runlevel7.patch |
52 |
Patch2001: initscripts-9.03.40-dmesg.patch |
53 |
Patch2002: initscripts-9.03.40-slapd_alias_ldap.patch |
54 |
Patch2003: initscripts-9.03.46-dont_run_plymouth_if_disabled.patch |
55 |
|
56 |
%description |
57 |
The initscripts package contains the basic system scripts used to boot |
58 |
your SME Server system, change runlevels, and shut the system down |
59 |
cleanly. Initscripts also contains the scripts that activate and |
60 |
deactivate most network interfaces. |
61 |
|
62 |
%package -n debugmode |
63 |
Summary: Scripts for running in debugging mode |
64 |
Requires: initscripts |
65 |
Group: System Environment/Base |
66 |
|
67 |
%description -n debugmode |
68 |
The debugmode package contains some basic scripts that are used to run |
69 |
the system in a debugging mode. |
70 |
|
71 |
Currently, this consists of various memory checking code. |
72 |
|
73 |
%prep |
74 |
%setup -q |
75 |
|
76 |
%patch1 -p1 |
77 |
%patch1000 -p1 |
78 |
%patch2000 -p1 |
79 |
%patch2001 -p1 |
80 |
%patch2002 -p1 |
81 |
%patch2003 -p1 |
82 |
|
83 |
%build |
84 |
make |
85 |
|
86 |
%install |
87 |
rm -rf $RPM_BUILD_ROOT |
88 |
make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install |
89 |
|
90 |
%find_lang %{name} |
91 |
|
92 |
%if with_upstart |
93 |
mv -f $RPM_BUILD_ROOT/etc/inittab.upstart $RPM_BUILD_ROOT/etc/inittab |
94 |
%else |
95 |
mv -f $RPM_BUILD_ROOT/etc/inittab.sysv $RPM_BUILD_ROOT/etc/inittab |
96 |
rm -rf $RPM_BUILD_ROOT/etc/init |
97 |
%endif |
98 |
rm -f $RPM_BUILD_ROOT/etc/inittab.* |
99 |
|
100 |
%ifnarch s390 s390x |
101 |
rm -f \ |
102 |
$RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-ctc \ |
103 |
%else |
104 |
rm -f \ |
105 |
$RPM_BUILD_ROOT/etc/rc.d/rc.sysinit.s390init \ |
106 |
$RPM_BUILD_ROOT/etc/sysconfig/init.s390 |
107 |
%endif |
108 |
|
109 |
%pre |
110 |
/usr/sbin/groupadd -g 22 -r -f utmp |
111 |
|
112 |
%post |
113 |
touch /var/log/wtmp /var/run/utmp /var/log/btmp |
114 |
chown root:utmp /var/log/wtmp /var/run/utmp /var/log/btmp |
115 |
chmod 664 /var/log/wtmp /var/run/utmp |
116 |
chmod 600 /var/log/btmp |
117 |
|
118 |
/sbin/chkconfig --add netfs |
119 |
/sbin/chkconfig --add network |
120 |
/sbin/chkconfig --add netconsole |
121 |
|
122 |
if [ ! -f /var/lib/random-seed -a -e /dev/urandom ] ; then |
123 |
dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=4096 2>/dev/null |
124 |
chmod 600 /var/lib/random-seed |
125 |
fi |
126 |
|
127 |
%preun |
128 |
if [ $1 = 0 ]; then |
129 |
/sbin/chkconfig --del netfs |
130 |
/sbin/chkconfig --del network |
131 |
/sbin/chkconfig --del netconsole |
132 |
fi |
133 |
|
134 |
%triggerun -- initscripts < 7.62 |
135 |
/sbin/chkconfig --del random |
136 |
/sbin/chkconfig --del rawdevices |
137 |
exit 0 |
138 |
|
139 |
%clean |
140 |
rm -rf $RPM_BUILD_ROOT |
141 |
|
142 |
%files -f %{name}.lang |
143 |
%defattr(-,root,root) |
144 |
%dir /etc/sysconfig/network-scripts |
145 |
%config(noreplace) %verify(not md5 mtime size) /etc/adjtime |
146 |
%config(noreplace) /etc/sysconfig/init |
147 |
%config(noreplace) /etc/sysconfig/netconsole |
148 |
%config(noreplace) /etc/sysconfig/readonly-root |
149 |
/etc/sysconfig/network-scripts/ifdown |
150 |
/sbin/ifdown |
151 |
/etc/sysconfig/network-scripts/ifdown-post |
152 |
/etc/sysconfig/network-scripts/ifup |
153 |
/sbin/ifup |
154 |
%dir /etc/sysconfig/console |
155 |
%dir /etc/sysconfig/modules |
156 |
%dir /etc/sysconfig/networking |
157 |
%dir /etc/sysconfig/networking/devices |
158 |
%dir /etc/sysconfig/networking/profiles |
159 |
%dir /etc/sysconfig/networking/profiles/default |
160 |
/etc/sysconfig/network-scripts/network-functions |
161 |
/etc/sysconfig/network-scripts/network-functions-ipv6 |
162 |
/etc/sysconfig/network-scripts/init.ipv6-global |
163 |
%config(noreplace) /etc/sysconfig/network-scripts/ifcfg-lo |
164 |
/etc/sysconfig/network-scripts/ifup-post |
165 |
/etc/sysconfig/network-scripts/ifdown-ppp |
166 |
/etc/sysconfig/network-scripts/ifup-ppp |
167 |
/etc/sysconfig/network-scripts/ifup-routes |
168 |
/etc/sysconfig/network-scripts/ifdown-routes |
169 |
/etc/sysconfig/network-scripts/ifup-plip |
170 |
/etc/sysconfig/network-scripts/ifup-plusb |
171 |
/etc/sysconfig/network-scripts/ifup-bnep |
172 |
/etc/sysconfig/network-scripts/ifdown-bnep |
173 |
/etc/sysconfig/network-scripts/ifup-eth |
174 |
/etc/sysconfig/network-scripts/ifdown-eth |
175 |
/etc/sysconfig/network-scripts/ifup-ipv6 |
176 |
/etc/sysconfig/network-scripts/ifdown-ipv6 |
177 |
/etc/sysconfig/network-scripts/ifup-sit |
178 |
/etc/sysconfig/network-scripts/ifdown-sit |
179 |
/etc/sysconfig/network-scripts/ifup-tunnel |
180 |
/etc/sysconfig/network-scripts/ifdown-tunnel |
181 |
/etc/sysconfig/network-scripts/ifup-aliases |
182 |
/etc/sysconfig/network-scripts/ifup-ippp |
183 |
/etc/sysconfig/network-scripts/ifdown-ippp |
184 |
/etc/sysconfig/network-scripts/ifup-wireless |
185 |
/etc/sysconfig/network-scripts/ifup-isdn |
186 |
/etc/sysconfig/network-scripts/ifdown-isdn |
187 |
/etc/sysconfig/network-scripts/net.hotplug |
188 |
%ifarch s390 s390x |
189 |
/etc/sysconfig/network-scripts/ifup-ctc |
190 |
%endif |
191 |
%config(noreplace) /etc/networks |
192 |
/etc/rwtab |
193 |
%dir /etc/rwtab.d |
194 |
/etc/statetab |
195 |
%dir /etc/statetab.d |
196 |
%if with_upstart |
197 |
/etc/init/* |
198 |
%endif |
199 |
%config /etc/X11/prefdm |
200 |
%config(noreplace) /etc/inittab |
201 |
%dir /etc/rc.d |
202 |
%dir /etc/rc.d/rc[0-9].d |
203 |
%config(missingok) /etc/rc.d/rc[0-9].d/* |
204 |
/etc/rc[0-9].d |
205 |
/etc/rc |
206 |
%dir /etc/rc.d/init.d |
207 |
/etc/rc.local |
208 |
/etc/rc.sysinit |
209 |
/etc/rc.d/init.d/* |
210 |
/etc/rc.d/rc |
211 |
%config(noreplace) /etc/rc.d/rc.local |
212 |
/etc/rc.d/rc.sysinit |
213 |
%config(noreplace) /etc/sysctl.conf |
214 |
%exclude /etc/profile.d/debug* |
215 |
/etc/profile.d/* |
216 |
/usr/sbin/sys-unconfig |
217 |
/sbin/setsysfont |
218 |
/bin/ipcalc |
219 |
/bin/usleep |
220 |
%attr(4755,root,root) /usr/sbin/usernetctl |
221 |
/sbin/consoletype |
222 |
/sbin/fstab-decode |
223 |
/sbin/genhostid |
224 |
/sbin/getkey |
225 |
/sbin/securetty |
226 |
/sbin/sushell |
227 |
%attr(2755,root,root) /sbin/netreport |
228 |
/lib/udev/rules.d/* |
229 |
/lib/udev/rename_device |
230 |
/lib/udev/console_init |
231 |
/lib/udev/console_check |
232 |
/lib/udev/udev-kvm-check |
233 |
/sbin/service |
234 |
/sbin/ppp-watch |
235 |
%{_mandir}/man*/* |
236 |
%dir %attr(775,root,root) /var/run/netreport |
237 |
%dir /etc/ppp |
238 |
%dir /etc/ppp/peers |
239 |
/etc/ppp/ip-up |
240 |
/etc/ppp/ip-down |
241 |
/etc/ppp/ip-up.ipv6to4 |
242 |
/etc/ppp/ip-down.ipv6to4 |
243 |
/etc/ppp/ipv6-up |
244 |
/etc/ppp/ipv6-down |
245 |
%dir /etc/NetworkManager |
246 |
%dir /etc/NetworkManager/dispatcher.d |
247 |
/etc/NetworkManager/dispatcher.d/00-netreport |
248 |
/etc/NetworkManager/dispatcher.d/05-netfs |
249 |
%doc sysconfig.txt sysvinitfiles static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6 COPYING README-init |
250 |
/var/lib/stateless |
251 |
%ghost %attr(0600,root,utmp) /var/log/btmp |
252 |
%ghost %attr(0664,root,utmp) /var/log/wtmp |
253 |
%ghost %attr(0664,root,utmp) /var/run/utmp |
254 |
%ghost %attr(0644,root,root) /etc/sysconfig/kvm |
255 |
|
256 |
%files -n debugmode |
257 |
%defattr(-,root,root) |
258 |
%config(noreplace) /etc/sysconfig/debug |
259 |
/etc/profile.d/debug* |
260 |
|
261 |
%changelog |
262 |
* Wed Sep 30 2015 Daniel Berteaud <daniel@firewall-services.com> - 9.03.49-1.sme.1.1 |
263 |
- Rebase on upstream 9.03.49 [SME: 9081] |
264 |
|
265 |
* Tue Sep 22 2015 Johnny Hughes <johnny@centos.org> - 9.03.49-1.centos.1 |
266 |
- Roll in CentOS Branding |
267 |
|
268 |
* Thu Aug 13 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.49-1.1 |
269 |
- rc.sysinit: apply quotas after system is relabeled |
270 |
|
271 |
* Thu Apr 09 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.49-1 |
272 |
- network-functions: fix change_resolv_conf after grep update |
273 |
|
274 |
* Mon Mar 02 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.48-1 |
275 |
- use new -m option to pidof |
276 |
|
277 |
* Fri Feb 27 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.47-1 |
278 |
- rc.sysinit: be more verbose |
279 |
- init.d/functions: rc.debug option to debug initscripts |
280 |
- ifup-aliases: inherit ARPCHECK from parent device |
281 |
- netfs: don't race NFS umount to network shutdown |
282 |
- network: report that we can't shut down network for root on netfs |
283 |
- Fix tcsh + grep-2.7. (#636552) |
284 |
- sysctl.conf: move bridge setting to module-init-tools |
285 |
- rc.sysinit: set affinity also for current shell |
286 |
- ifdown-eth: use scope host for lo |
287 |
- improve_check_for_bond_master_in_install_bonding_driver |
288 |
- network-functions: fix check in install_bonding_driver |
289 |
- ifdown-post: remove resolv.conf only in specific cases |
290 |
- netconsole: lets run earlier |
291 |
- ipcalc: support RFC3021 (#997271) |
292 |
- halt: add delay after upsdrvctl shutdown |
293 |
- ifup: also set multicast_snooping after the bridge is up |
294 |
|
295 |
* Tue Jul 22 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.46-1 |
296 |
- ifup,vlan: fix typo |
297 |
|
298 |
* Tue Jul 08 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.45-1 |
299 |
- ifup,vlan: fix typo |
300 |
|
301 |
* Wed Jun 18 2014 Lukáš Nykrýn - 9.03.44-1 |
302 |
- init.d/functions: fix typo in pid_dir |
303 |
|
304 |
* Tue Jun 10 2014 Lukáš Nykrýn - 9.03.43-1 |
305 |
- ifup-aliases: arpcheck - check for parent operstate and carrier |
306 |
- ifdown: don't wait for aliases |
307 |
- hotplug: don't call ifup when new vlan appears |
308 |
- ifup-wireless: add support for wowlan (second part) |
309 |
- readonly-root: remount rpc_pipefs if readonly-root is used |
310 |
|
311 |
* Fri Jun 06 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.42-1 |
312 |
- ipcalc: -c allow netmask |
313 |
- ipcalc: parse prefix more safely |
314 |
- vi.po: fix parentheses |
315 |
- network-functions: handle BONDING_OPTS better |
316 |
- custom naming for VLAN devices |
317 |
- bonding: match whole name of interface |
318 |
- network-functions: ETHTOOL_DELAY introduction patch |
319 |
- ifup-wireless: add support for wowlan |
320 |
- Remove NETWORKING_IPV6 from sysconfig.txt (#918622) |
321 |
- bridging: add possibility to set prio and ageing |
322 |
|
323 |
* Wed Apr 30 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.41-1 |
324 |
- netfs: implicitly handle glusterfs as a network filesystemd |
325 |
- init.d/functions: check parent dir of pid file for accessibility |
326 |
- ifup-eth: some options for bridge can be applied after the bridge is up |
327 |
- rc.sysinit: apply sysctl settings before starting udev |
328 |
- ifup: add possibility to specify value for -w parameter of arping |
329 |
- ifup-tunnel: call ifup-ipv6 in the end |
330 |
- pids_var_run: handle '(deleted)' |
331 |
- require correct version of upstart |
332 |
- rc.sysinit: use 'vgchange --ignoreskippedcluster' |
333 |
- during install do not create /var/lib/random-seed if /dev/urandom does not exist |
334 |
- rc.sysinit: increase the saved random-seed to 4K (#1023471) |
335 |
- umount-loop: make sure that we don't kill our own process |
336 |
- umount-loop: don't use xargs |
337 |
- ifup-eth: remove ipx relic (#1028135) |
338 |
- init.d/functions: add -b optin to status and killproc (#1047948) |
339 |
- remove duplicit then |
340 |
|
341 |
* Thu Oct 10 2013 Lukas Nykryn <lnykryn@redhat.com> - 9.03.40-1 |
342 |
- sync disks before halt (#1006294) |
343 |
- provide KVM guest count and limit info message (#1014731) |
344 |
- add ability to disable LVM activation on boot (#1015065) |
345 |
|
346 |
* Fri Aug 09 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.39-1 |
347 |
- remount /proc to set attributes from fstab #984003 |
348 |
- print something when arping is detecting colliding ip addresses |
349 |
- try dhcpv6 after v4 failed |
350 |
- Allow dhclient configuration files for DHCPv6 as well. (#815676) |
351 |
- ifdown: don't call nmcli on interface that is alread down |
352 |
- call flush addresses with scope global |
353 |
- init: inform users about .override files in .conf files |
354 |
- netfs: do not force NFS exports to be mounted before _netdev mounts |
355 |
- set net.ipv6.conf..autoconf in ifup-ipv6 |
356 |
- mention rule6 files |
357 |
- securetty: check if the device is in the file before attempting to write to it |
358 |
- Process rule6-* for sit devices (#840009) |
359 |
- Killproc -d should parse same values as sleep |
360 |
- Make killproc more granular when delay is passed. (#428029, <xjakub@fi.muni.cz>) |
361 |
- bonding: set master up before slaves |
362 |
- Fix greps to correctly handle comments and quotation (#915659) |
363 |
|
364 |
* Wed Jan 09 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.38-1 |
365 |
- call ip link up on master after slaves are up (#893395) |
366 |
|
367 |
* Thu Dec 13 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.37-1 |
368 |
- don't apply BONDING_OPTS on device with active slaves (#885235) |
369 |
|
370 |
* Wed Nov 28 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.36-1 |
371 |
- improve duplicate ip address check in ifup-aliases (#880684) |
372 |
|
373 |
* Fri Nov 23 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.35-1 |
374 |
- fix typo in ifup-aliases duplicate check (#879243) |
375 |
|
376 |
* Thu Nov 15 2012 Václav PavlÃn <vpavlin@redhat.com> - 9.03.34-1 |
377 |
- there should be crypttab instead of crypptab in man page (#870025) |
378 |
- sysconfig.txt advised saslauthd -a instad of -v (#869075) |
379 |
|
380 |
* Thu Nov 08 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.33-1 |
381 |
- apply BONDING_OPT on ifup of master (#874030) |
382 |
|
383 |
* Mon Oct 08 2012 Lukáš Nykrýn <lnykryn@redhat.com> - 9.03.32-1 |
384 |
- check an IP address for existence in ifup-alias |
385 |
- remount /dev/shm in sysinit to apply attributes from fstab |
386 |
- sets BONDING_OPTS before interface is brougth up and checks if it is not already added |
387 |
- Add support for setting random bridge options via BRIDGING_OPTS |
388 |
- use vgchange -aay in rc.sysinit and netfs init script |
389 |
- script should not kill itself during shutdown |
390 |
- fix the NIS domain setting |
391 |
- be less strict about VLAN name |
392 |
- clarification of work with white spaces in crypttab manpage |
393 |
- re-read sysctl values for VLANs on ifup |
394 |
- pass useful arguments to halt.local |
395 |
- start serial console when we return from runlevel1 |
396 |
- move VLAN= docs to the interface configuration section, rather than /etc/sysconfig/network. |
397 |
- don't accidentally match other bonding devices |
398 |
- add usage stanzas for tty.conf and serial.conf |
399 |
- rename_device: skip VLAN=yes configuration files |
400 |
- allow duplicate address dectection to be disabled |
401 |
|
402 |
* Fri Apr 27 2012 Lukas Nykryn <lnykryn@redhat.com> 9.03.31-1 |
403 |
- set NIS domain (#704919) |
404 |
|
405 |
* Tue Mar 20 2012 Lukas Nykryn <lnykryn@redhat.com> 9.03.30-1 |
406 |
- fix IFS usage mangling device names (#802119) |
407 |
|
408 |
* Wed Mar 14 2012 Lukas Nykryn <lnykryn@redhat.com> 9.03.29-1 |
409 |
- save entropy during system install (#786404) |
410 |
|
411 |
* Tue Feb 14 2012 Lukas Nykryn <lnykryn@redhat.com> 9.03.28-1 |
412 |
- sysconfig support for IPv6 policy based routing (#781493) |
413 |
- fix typo in translation (#757637) |
414 |
- fix logic error with removing arp_ip_target (#787107, #746045) |
415 |
- don't set primary before we enslave devices. (#749610, <agospoda@redhat.com>) |
416 |
- do not check mounted filesystems (#745224) |
417 |
- eviscerate ifconfig uses from ip-aliases (#721010, #588993) |
418 |
- improve comment in init/serial.conf (#746808) |
419 |
- turn off UPS in powerfail situation (#754984, <robert@fedoraproject.org>) |
420 |
- netconsole exit arping on first response (#765835) |
421 |
- add cifs to check for network filesystem (#760018) |
422 |
- fix comments in sysctl.conf (#755175) |
423 |
- rc.sysinit - use rcS-emergency job instead of sulogin (#582002) |
424 |
|
425 |
* Fri Oct 07 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.27-1 |
426 |
- use restorecon -F for /dev and /dev/pts (#743222) |
427 |
|
428 |
* Tue Sep 20 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.26-1 |
429 |
- add 'emergency' mode (#681357) |
430 |
- kexec - free reservation memory only for crashkernel=auto (#734987) |
431 |
|
432 |
* Tue Aug 16 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.25-1 |
433 |
- use /bin/plymouth (#702814) |
434 |
|
435 |
* Mon Aug 15 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.24-1 |
436 |
- add support for sysctl.d (#680527) |
437 |
- log network messages via syslog (#653630, #672202) |
438 |
- document NM_CONTROLLED (#692123) |
439 |
- don't explictly disallow IPv6 aliases (#692240) |
440 |
- make sure the bond exists when we bring up the slaves. (#694501) |
441 |
- properly add and remove arp_ip_target's (#675079) |
442 |
- load static arp entries from ethers file (#696788) |
443 |
- fix logic error in rc.sysinit (#698520, <jlau@redhat.com>) |
444 |
- handle IPADDRx correctly for static addresses (#700184) |
445 |
- don't match filesystem types in hostnames (#703210, <jmueller@data-tronics.com>) |
446 |
- check for VLAN interfaces is being slave first (#703475) |
447 |
- override NETMASK from PREFIX where specified (#705367, <mpoole@redhat.com>) |
448 |
- allow multiple ETHTOOL_OPTS option types (#692410, #693583) |
449 |
- don't mount gfs2 in netfs (#689593) |
450 |
- fix pid file usage for IPv6. (#729292, <daveg@dgit.ndo.co.uk>) |
451 |
|
452 |
* Tue Apr 19 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.23-1 |
453 |
- netfs: don't print errors if mdadm isn't installed. (#696110) |
454 |
|
455 |
* Mon Mar 21 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.22-1 |
456 |
- init.d/functions: fix mishandled argument to fstab-decode (#682879) |
457 |
- network-functions: fix check for unmanaged devices (#670154) |
458 |
|
459 |
* Thu Mar 10 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.21-1 |
460 |
- remove network device naming requirement from VLAN devices (#676708, <Matt_Domsch@dell.com>) |
461 |
|
462 |
* Thu Mar 10 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.20-1 |
463 |
- Don't do force/lazy umount for the first nfs umount. (#676851, <jlayton@redhat.com>) |
464 |
|
465 |
* Fri Feb 04 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.19-1 |
466 |
- sys-unconfig(8) manpage fix (#674397) |
467 |
- set default shmmax and shmall for certain architectures (#660036) |
468 |
|
469 |
* Fri Jan 14 2011 Petr Lautrbach <plautrba@redhat.com> 9.03.18-1 |
470 |
- don't use the ipv6_exec_ip wrapper |
471 |
- don't accidentally cause sit module to be loaded on shutdown. (#654098, <ejsheldrake@gmail.com>) |
472 |
- simplify various string match constructs. (#558575, <ville.skytta@iki.fi>) |
473 |
- explicitly pass both device and dir when remounting read-only (#620461, <phr@doc.ic.ac.uk>) |
474 |
- add infiniband mapping (#648524, <monis@voltaire.com>) |
475 |
- fix ifdown calling nmcli for NM-managed devices (#612934, <jklimes@redhat.com>) |
476 |
- allow 0 as a vlan tag. (#635360) |
477 |
- support multiple IP addreses via IPADDRn, PREFIXn (or NETMASKn) (#633984) |
478 |
- stop tty and serial also on runlevel 's' (#629257) |
479 |
- system z optimized sysctl settings per default (#633323) |
480 |
- don't run kexec-disable for runlevels [S016] (#658138) |
481 |
- add # as a valid character in network device names (<Matt_Domsch@dell.com>) |
482 |
- use SYSCTLDEVICE without . (#667211, <notting@redhat.com>) |
483 |
- handle 'MASTER' being quoted. (#651450, <gfidente@redhat.com>) |
484 |
- test if there is /dev/rtc before syncing hardware clock (#598850) |
485 |
|
486 |
* Wed Sep 01 2010 Harald Hoyer <harald@redhat.com> 9.03.17-1 |
487 |
- enable syncookies again (#629259) |
488 |
|
489 |
* Tue Aug 24 2010 Bill Nottingham <notting@redhat.com> - 9.03.16-1 |
490 |
- actually, don't touch loglevel at all (#621257, #626572) |
491 |
|
492 |
* Mon Aug 9 2010 Bill Nottingham <notting@redhat.com> - 9.03.15-1 |
493 |
- set default loglevel to match RHEL 5 behavior (#621257) |
494 |
|
495 |
* Tue Aug 3 2010 Bill Nottingham <notting@redhat.com> - 9.03.14-1 |
496 |
- free kexec-reserved memory when necessary (#613578) |
497 |
|
498 |
* Mon Jul 26 2010 Bill Nottingham <notting@redhat.com> - 9.03.13-1 |
499 |
- rename_device - handle quoted 'DEVICE' (#614943, <harald@redhat.com>) |
500 |
- rename_device - fix handling of s390 subchannels (#614739, <harald@redhat.com>) |
501 |
|
502 |
* Thu Jul 1 2010 Bill Nottingham <notting@redhat.com> - 9.03.12-1 |
503 |
- fix interactive hotkey to work with plymouth (#605016) |
504 |
|
505 |
* Tue Jun 29 2010 Bill Nottingham <notting@redhat.com> - 9.03.11-1 |
506 |
- init/rcS-sulogin.conf: don't directly execute bash, re: selinux (#540216, #585053) |
507 |
|
508 |
* Thu Jun 24 2010 Bill Nottingham <notting@redhat.com> - 9.03.10-1 |
509 |
- ifup-eth: check for dhclient configuration in /etc/dhcp as well (#607766) |
510 |
- network-functions: handle quoted SUBCHANNELS (#607481) |
511 |
- netfs: allow for encrypted network block devices (#605600) |
512 |
|
513 |
* Wed Jun 9 2010 Bill Nottingham <notting@redhat.com> - 9.03.9-1 |
514 |
- check NM_CONTROLLED before deciding to use NM for a connection. (#600454) |
515 |
- always reboot on autorelabel. (#599879) |
516 |
- correct the fix for not clearing environment with runuser. (#564105) |
517 |
- properly handle permission denied on pid file (#595597) |
518 |
|
519 |
* Wed May 19 2010 Bill Nottingham <notting@redhat.com> - 9.03.8-1 |
520 |
- clean up plymouth shtudown splash (#590103, <rstrode@redhat.com>) |
521 |
- rc.sysinit: use lvm2 --sysinit option (#588777) |
522 |
- network-functions: behave sanely in the absence of $DEVICE (#592108) |
523 |
- sysconfig/debug: export debug variables (#592102) |
524 |
- netfs: check for NM to be connected, not just running (#592095) |
525 |
- rcS*.conf: check if /etc/inittab exists (#590706, <plautrba@redhat.com>) |
526 |
- port vlan code to /sbin/ip (#566485, <plautrba@redhat.com>) |
527 |
|
528 |
* Wed May 5 2010 Bill Nottingham <notting@redhat.com> - 9.03.7-1 |
529 |
- updates for new NetworkManager commandline syntax |
530 |
|
531 |
* Tue May 4 2010 Bill Nottingham <notting@redhat.com> - 9.03.6-1 |
532 |
- fix plymouth startup/shutdown (#586040) |
533 |
- fstab-decode.8: tweak manpage so it formats correctly (#586476) |
534 |
- init.d/functions: handle being unable to read a specified pid file. (#584575) |
535 |
- ifup-eth: run dhclient -6 similar to dhclient -4. (#585047) |
536 |
|
537 |
* Fri Apr 9 2010 Bill Nottingham <notting@redhat.com> - 9.03.5-1 |
538 |
- network-scripts: integrate with NetworkManager (#550154) |
539 |
- clean up obsolete package requirements |
540 |
- RAID fixes (<dledford@redhat.com>) |
541 |
- network: only blacklist the original loopback interface. (#579829, <evgsyr@gmail.com>) |
542 |
- rc.sysinit: check dmraid's return code, to catch 'no raid sets' error. (#568869) |
543 |
- po/*: fix mistranslated checks for user input. (#566791) |
544 |
|
545 |
* Mon Feb 15 2010 Bill Nottingham <notting@redhat.com> - 9.03.4-1 |
546 |
- move ccw_init, ccw udev rules to s390utils (#539491) |
547 |
- network-functions: clean up device checks (#564505) |
548 |
|
549 |
* Thu Feb 11 2010 Bill Nottingham <notting@redhat.com> - 9.03.3-1 |
550 |
- pass -m to runuser to not clear environment (#564105) |
551 |
- don't use deprecated udev syntax in clock rules (#560801) |
552 |
- don't quote regex argument to bash's =~ (#558575, <ville.skytta@iki.fi>) |
553 |
- if HWADDR is set and DEVICE is not, use HWADDR to determine DEVICE. (#557941) |
554 |
- don't HUP init when messagebus starts (#557821) |
555 |
- setsysfont: use UNIMAP rather than SYSFONTACM when calling /bin/unicode_start. (#557173) |
556 |
|
557 |
* Fri Jan 15 2010 Bill Nottingham <notting@redhat.com> - 9.03.2-1 |
558 |
- ifup-eth: use dhclient's -H option instead of munging dhclient config files |
559 |
- rc.sysinit: move mdadm after dmraid (#554423) |
560 |
- ifup-eth: use dhclient -6, not the no-longer-included dhcp6c (#553019, <dcantrell@redhat.com>) |
561 |
- add more man pages (#529328, <plautrba@redhat.com>) |
562 |
- remove useless echo (#552785) |
563 |
- move is_wireless after MACADDR/MTU setting (#552641) |
564 |
- serial.conf: respawn correctly. (#552611, <zing@fastmail.fm>) |
565 |
- network-functions: use sysfs for wireless check (#552381, <adel.gadllah@gmail.com>) |
566 |
- reload init on started messagebus (<plautrba@redhat.com>) |
567 |
- honor HOTPLUG in ifdown (#547737) |
568 |
|
569 |
* Tue Dec 15 2009 Bill Nottingham <notting@redhat.com> - 9.03.1-1 |
570 |
- re-enable network service (#545255) |
571 |
- ifdown: honor HOTPLUG (#547737) |
572 |
- silence any erros from bonding adds (#516569) |
573 |
- remove assorted configurations we don't support the tools for |
574 |
(ipsec-tools ipsec, cipe, IPX) |
575 |
|
576 |
* Wed Dec 9 2009 Bill Nottingham <notting@redhat.com> - 9.03-1 |
577 |
- migrate to upstart 0.6.x (<notting@redhat.com>, <plautrba@redhat.com>) |
578 |
-- jobs move to /etc/init |
579 |
-- collapse rcX and ttyX jobs into single job definitions |
580 |
-- jobs are no longer %%config |
581 |
- remove obsolete doexec command |
582 |
- rc.sysinit: handle yet another random return string from dmraid |
583 |
- remove never-used 'sulogin' upstart event |
584 |
- fix time-setting udev rules for old-style RTC devices (#537595) |
585 |
- init.d/network: keep error codes limited to '1'. (#537841) |
586 |
- add initial ifup/ifdown man pages. (#529328, <plautrba@redhat.com>) |
587 |
|
588 |
* Tue Oct 27 2009 Bill Nottingham <notting@redhat.com> - 9.02-1 |
589 |
- remove long-since deprecated initlog |
590 |
- remove IUCV support (#507217) |
591 |
- halt: put a wrapper around killall5 to account for retval 2 not being an error (#526539, <hdegoede@redhat.com>) |
592 |
- ifup-eth: honor DEFROUTE=yes|no for 'all' connection types. (#528822) |
593 |
- network-functions: load bonding driver if BONDING_OPTS is defined. (#516569) |
594 |
- rc.sysinit: put /dev/shm in mtab too, as dracut now mounts it. (#528667) |
595 |
|
596 |
* Fri Oct 9 2009 Bill Nottingham <notting@redhat.com> - 9.01-1 |
597 |
- rc.sysinit: fix handling of dmraid output to avoid error messages (#527726, <mschmidt@redhat.com>) |
598 |
- rwtab: add /var/lib/xend (#526046) |
599 |
- translation updates: fi, nb, pl |
600 |
|
601 |
* Fri Oct 2 2009 Bill Nottingham <notting@redhat.com> - 9.00-1 |
602 |
- halt: wrap /sbin/killall5 to catch some return codes (#526539) |
603 |
- netfs, netconsle, network: fix return codes to match LSB spec (#524489, #524480, #524486) |
604 |
- handle kernels compiled both with and without CONFIG_RTC_HCTOSYS |
605 |
- halt: use killall5's return code to avoid unncesssary sleeping (#524359, <hdegoede@redhat.com>) |
606 |
- halt: don't kill mdmon on shutdown. (#524357, <hdegoede@redhat.com>) |
607 |
- rc.sysinit: do not try and activate ISW raidsets, unless noiswmd is passed. (#524355, <hdegoede@redhat.com>) |
608 |
- translation updates: ca, cs, da, mai, po, sv, uk |
609 |
|
610 |
* Mon Sep 14 2009 Bill Nottingham <notting@redhat.com> - 8.99-1 |
611 |
- init.d/functions: add a '-l' option to status to pass lock file name (#521772) |
612 |
- tweak kernel conflict |
613 |
- translation updates: as, bn_IN, de, fr, hi, it, hu, kn, mr, or, pa, pt, ru, te |
614 |
|
615 |
* Wed Sep 2 2009 Bill Nottingham <notting@redhat.com> - 8.98-1 |
616 |
- sysconfig.txt: doucment DHCP_HOSTNAME (#498052) |
617 |
- 88-clock.rules: Use --systz instead of --hctosys. (#517886, #489494) |
618 |
- Support rwtab and state passed from dracut initrd (#515771, <wtogami@redhat.com>) |
619 |
- restore context of *tmp files (#519748) |
620 |
- halt: don't try and save mixer settings if it's not writable. (#515771) |
621 |
- rwtab: add /var/spool, /var/lib/dbus, others (#494973, #515771) |
622 |
- sysconfig.txt: clarify docs (#518614) |
623 |
- rc.sysinit: don't pretend /selinux is configurable (#518164) |
624 |
- assorted ipv6 redundant code deletion |
625 |
- translation updates: bn, ca, de, es, fi, fr, gu, hi, it, ja, ko, ml, nb, nl, pl, pt, pt_BR, ru, sr, ta, zh_CN, zh_TW |
626 |
|
627 |
* Mon Aug 10 2009 Bill Nottingham <notting@redhat.com> - 8.97-1 |
628 |
- ipcalc: fix IPv6 address checking (#516319) |
629 |
- ifup-aliases: fix syntax error from earlier cleanups. (#515612, <jik@kamens.brookline.ma.us>) |
630 |
- translation updates: nb |
631 |
- rc.sysinit: remove useless call to pam_console_apply |
632 |
|
633 |
* Mon Aug 3 2009 Bill Nottingham <notting@redhat.com> - 8.96-1 |
634 |
- fix up upstart rules for s390(x). (#515222) |
635 |
- leave ChangeLog in the tarball only. (#515012) |
636 |
- disable netfilter on bridged interfaces. (#512206) |
637 |
- assorted shell-related cleanups to ipv6 and other code (<victor.lowther@gmail.com>) |
638 |
- use resolv.conf from dracut netboot before setting hostname. (#514801, <wtogami@redhat.com>) |
639 |
- ipcalc updates (<victor.lowther@gmail.com>) |
640 |
- only use ethtool for link checking; no more mii-tool |
641 |
- require /sbin/blkid directly, as it moves between packages (#508413) |
642 |
- redirect bash errors on 'unset' to /dev/null. (#482888) |
643 |
- fix dmraid partition naming (#501476, <hdegoede@redhat.com>) |
644 |
- don't quote upstart signals. (#501155) |
645 |
- translation updates: bn_IN, da, es, sk |
646 |
|
647 |
* Fri May 1 2009 Bill Nottingham <notting@redhat.com> - 8.95-1 |
648 |
- don't kill runlevel events on subsequent entering of the same runlevel (#498514) |
649 |
- lang.*sh: handle spaces in $HOME (#498482) |
650 |
- network-functions: explicitly source from the proper directory. (#496233) |
651 |
- remove persistent names on sys-unconfig. (#448322) |
652 |
- init.d/functions: cgexec has moved to /bin (#495715) |
653 |
- allow changing of VLAN type even if the module is already loaded. (#495053, <pietro@bertera.it>) |
654 |
- translation updates: fr, ml, pt |
655 |
|
656 |
* Tue Apr 7 2009 Bill Nottingham <notting@redhat.com> - 8.94-1 |
657 |
- prefdm: add simple fallbacks, sort rpmdb query for consistency (#494461) |
658 |
- translation updates; bn, de, pt, ru, te |
659 |
|
660 |
* Thu Apr 2 2009 Bill Nottingham <notting@redhat.com> - 8.93-1 |
661 |
- rc.sysinit: add a disk synchronization point with scsi_wait_scan post-udev (#481470) |
662 |
- netfs: drop smbfs support, we don't even ship the module or tools any more |
663 |
- setsysfont: honor LC_CTYPE (#487133, <skasal@redhat.com>) |
664 |
- prefdm: do fallbacks based on provides of 'service(graphical-login)' (#485751) |
665 |
- rc.sysinit: handle multiple IP addresses without choking in the stateless code (#443945) |
666 |
- rc.sysinit: catch the right error code from checking for passphrases (#483269, <vladis.kletnieks@vt.edu>) |
667 |
- prefdm: handle empty /etc/sysconfig/desktop correctly (#480113) |
668 |
- ifup-ipsec: allow use of either ESP only or AH only (#251494, <stijn.tintel@x-tend.be>) |
669 |
- ifup-eth: allow passing of arguments to dhcp6c (#437949, <pekkas@netcore.fi>) |
670 |
- ifup-eth: fix dhcpv6 when there is no IPv4 configuration (#486507) |
671 |
- ifup-ppp: avoid spurious SIGCHLD to pppd (#448881) |
672 |
- ifup-eth: add support for creating TUN/TAP devices on the fly (#453973, <scott@zahna.com>) |
673 |
- stop plymouth when starting single-user mode. (#491062) |
674 |
- add plymouth shutdown script (#473237, <jmccann@redhat.com>) |
675 |
- fix lang.sh/lang.sh/consoletype for execution with '-e' |
676 |
- ifdown-eth: remove arp_ip_target on ifdown for bonding devices. (#483711) |
677 |
- add vlan support for s390 HSI interfaces. (#490584) |
678 |
- ipcalc: support IPv6 (#464268, <dcantrell@redhat.com>) |
679 |
- translation updates: all |
680 |
|
681 |
* Mon Mar 16 2009 Bill Nottingham <notting@redhat.com> - 8.91-1 |
682 |
- fix DHCP reading of options from ifcfg-XXX (#483257) |
683 |
- ifdown-eth: clean up bridges on ifdown (#463325, <sean@bruenor.org>) |
684 |
- support MD on iSCSI (#480627) |
685 |
- remove support for 'ifcfg-foo-bar' configurations that inherit from 'ifcfg-foo' |
686 |
- remove slip support |
687 |
- translation updates: es, pl, ca, sr, de, sv, pa, pt_BR |
688 |
|
689 |
* Mon Mar 9 2009 Bill Nottingham <notting@redhat.com> - 8.90-1 |
690 |
- init.d/functions: cgroup support (<jsafrane@redhat.com>) |
691 |
- fix various issues with dmraid handling (#485895, <hdegoede@redhat.com>) |
692 |
- rc.sysinit: fix typo. (#487926) |
693 |
- console_init: loadkeys has a -q option for silent running. Use it. |
694 |
- ifup-tunnel: add compatiblity for openNHRP tunnels (#486559, <claude.tompers@ieee.lu>) |
695 |
- ccw_init: don't re-init an existing device, it causes errors. (#484411, <jpayne@redhat.com>) |
696 |
- netfs: use same kpartx arguments as rc.sysinit |
697 |
- don't list mtab in rwtab (#457941) |
698 |
- translation updates: fi, de, mai |
699 |
|
700 |
* Wed Jan 28 2009 Bill Nottingham <notting@redhat.com> - 8.89-1 |
701 |
- use a leading path when sourcing files (#482826) |
702 |
- netfs: don't unmount nfsd filesystem by accident (#481794, <sprabhu@redhat.com>) |
703 |
- bring up ipsec interfaces last (#481733) |
704 |
- ifdown-eth: fix bridge + vlan (#481557, <danken@redhat.com>) |
705 |
|
706 |
* Tue Jan 20 2009 Bill Nottingham <notting@redhat.com> - 8.88-1 |
707 |
- init.d/network: return success/failure correctly (#480677) |
708 |
- init.d/halt: fix typo (#480799) |
709 |
|
710 |
* Mon Jan 19 2009 Bill Nottingham <notting@redhat.com> - 8.87-1 |
711 |
- rename_device: be much faster in the presence of many devices (#480687, <danms@us.ibm.com>) |
712 |
- fix switching from targeted to MLS policy (#479054, <dwalsh@redhat.com>) |
713 |
- rc.sysinit: don't set $(uname -r) or $(uname -m); they're not used |
714 |
- network-functions-ipv6: set MTU correctly for 6to4. (#477976, <ackistler@yahoo.com>) |
715 |
- add more entries to rwtab (#476799, <harald@redhat.com>) |
716 |
- net.hotplug: Bail out sooner if the network service isn't running |
717 |
- init.d/halt: determine reboot/halt via existing INIT_HALT environment variable. (#475227) |
718 |
- event.d/serial: add some docs |
719 |
- init.d/functions: __pids_var_run: Handle multi-line pid files correctly (#473287) |
720 |
- remove support for no longer existing 'brctl setgcint' command. (#360471) |
721 |
- add %%config back for ifcfg-lo (#472761) |
722 |
- rcS/rcS-sulogin: don't match commented lines when finding runlevel (#472717) |
723 |
- updated translations: de, sk |
724 |
|
725 |
* Tue Nov 11 2008 Bill Nottingham <notting@redhat.com> - 8.86-1 |
726 |
- stop plymouth before stopping the runlevel (#467207) |
727 |
- fix get_config_by_subchannel (#459044, <harald@redhat.com>) |
728 |
- use blkid -l to pick a single most appropriate device (#470027) |
729 |
- don't mkswap on halt, as it breaks swap-by-label/UUID (#469823) |
730 |
|
731 |
* Fri Oct 31 2008 Bill Nottingham <notting@redhat.com> - 8.85-1 |
732 |
- add some error handling/hiding to netfs NM dispatcher script (#469197) |
733 |
- halt: fix code that causes a syntax error on multiple sound cards (#469156) |
734 |
- require a new enough udev version to handle where we put the rules |
735 |
- exit 0 in /etc/rc.d/rc (#469050) |
736 |
- don't set up encrypted devices that have already been set up under different |
737 |
names (#462371, <wwoods@redhat.com>) |
738 |
- accept either the '+<addr>', or comma-separated addresses for arp_ip_target. (#467954, |
739 |
<darcy.sherwood@gmail.com>) |
740 |
- translation updates: hu, kn, ko, ml, sr, sr@latin |
741 |
|
742 |
* Tue Oct 14 2008 Bill Nottingham <notting@redhat.com> - 8.84-1 |
743 |
- override Arabic, Persian, and Hebrew on the console (<alsadi@ojuba.org>) |
744 |
- explicitly run mdadm on boot to catch degraded arrays. (<dledford@redhat.com>) |
745 |
- fix setting of console font/map (#458362, <ak@sensi.org>) |
746 |
- translations updates: hi, kn, nb, sk, sv, ta |
747 |
|
748 |
* Tue Sep 30 2008 Bill Nottingham <notting@redhat.com> - 8.83-1 |
749 |
- various merge review fixes (#225900) |
750 |
Notably: init scripts/network scripts are no longer %%config |
751 |
- remove some extraneous device-mapper initialization |
752 |
- use pidfile in status before calling pidof (#463205) |
753 |
- use plymouth directly, not the rhgb-client wrapper |
754 |
- move bridging after bonding (#449950, <djuran@redhat.com>) |
755 |
- use alsactl to save sound settings. (#462677, <jkysela@redhat.com>) |
756 |
- quit plymouth differently (<rstrode@redhat.com>) |
757 |
- make sure we don't try and spawn a repair shell when there's no |
758 |
tty (#463161) |
759 |
- move udev rules to /lib |
760 |
- stateless updates (#433702, <harald@redhat.com>) |
761 |
- call logger with a full path (#447928, <harald@redhat.com>) |
762 |
- translation updates: as, bn_IN, ca, cz, de, es, fi, fr, gu, it, ja, |
763 |
lv, mr, nl, or, pa, pl, pt_BR, ru, te, zh_TW |
764 |
|
765 |
* Wed Sep 10 2008 Bill Nottingham <notting@redhat.com> - 8.82-1 |
766 |
- refresh translation strings |
767 |
- plymouth updates. (#460702, <rstrode@redhat.com>) |
768 |
- translation updates: fi, lv, no |
769 |
- remove duplicate dependency (#465182) |
770 |
- ifup-eth: Change how we set the zeroconf route. (#239609) |
771 |
- ifup*: Use 0.0.0.0/0, not 0/0. (#460580) |
772 |
|
773 |
* Fri Aug 29 2008 Bill Nottingham <notting@redhat.com> - 8.81-1 |
774 |
- rc.sysinit: Don't use -L in find (#458652, #458504, CVE-2008-3524) |
775 |
- ifup: kill more code from loopback bringup |
776 |
|
777 |
* Tue Jul 29 2008 Bill Nottingham <notting@redhat.com> - 8.80-1 |
778 |
- Fix translation typo (#455804, <ruslanpisarev@gmail.com>) |
779 |
- Turn off syncookies |
780 |
- Cleanups for proper plymouth support |
781 |
- Move the mcheck code to a debugmode package, make it more generic |
782 |
|
783 |
* Mon Jul 14 2008 Bill Nottingham <notting@redhat.com> - 8.79-1 |
784 |
- fix mcheck stuff to be installed correctly |
785 |
- don't do an arping check for loopback interfaces |
786 |
- console_init: don't wait (<arjan@infradead.org>) |
787 |
- rc: clean up extraneous set -x noise |
788 |
- remove references to static dmraid/multipath binaries (#453987) |
789 |
- translation updates: lv |
790 |
|
791 |
* Fri Jun 20 2008 Bill Nottingham <notting@redhat.com> - 8.78-1 |
792 |
- fix mounting of /dev/pts |
793 |
|
794 |
* Thu Jun 19 2008 Bill Nottingham <notting@redhat.com> - 8.77-1 |
795 |
- NMDispatcher/05-netfs: fix check for default route (#445509) |
796 |
- service: don't set $LANG, rely on it to inherit from system locales (#422141) |
797 |
- init.d/functions: fix resolve_dm_raid() for older dmraid configs |
798 |
- Don't unmount sysfs in halt. (#446292) |
799 |
- rc.sysinit: don't try to startup crypto if we can't find the device |
800 |
- rc.sysinit: don't echo crypto stuff unless we're actually *doing* something |
801 |
- ifup: don't try to rename devices - udev rules are the way to go |
802 |
- rc.sysinit: fix typo, and don't restorecon on swap, etc. partitions (#448886) |
803 |
- set MALLOC_CHECK_ & MALLOC_PERTURB_ if configured (<pjones@redhat.com>) |
804 |
- console_init: support SYSFONTACM correctly, and support UNIMAP (#448704, |
805 |
<vvv+fedora@colocall.net>) |
806 |
- don't export GRAPHICAL - plymouth is for all modes. also, don't start rhgb |
807 |
- fix clock rules to properly handle old-style RTC devices (#447019) |
808 |
- translation updates: ko, or, pl |
809 |
|
810 |
* Fri May 2 2008 Bill Nottingham <notting@redhat.com> - 8.76-1 |
811 |
- fix tcsh syntax error (#444998) |
812 |
- remove debugging cruft from rcS-sulogin |
813 |
|
814 |
* Tue Apr 29 2008 Bill Nottingham <notting@redhat.com> - 8.74-1 |
815 |
- use full path to /sbin/ip in NetworkManagerDispatcher script (#444378) |
816 |
- lang.{sh,csh}: read only user customization if LANG is already set (#372151) |
817 |
|
818 |
* Fri Apr 25 2008 Bill Nottingham <notting@redhat.com> - 8.73-1 |
819 |
- move event-compat-sysv events here, obsolete it |
820 |
- fix ctrl-alt-del during rc.sysinit (#444050) |
821 |
- fix 'telinit X' from single-user mode (#444001) |
822 |
|
823 |
* Thu Apr 24 2008 Bill Nottingham <notting@redhat.com> - 8.72-1 |
824 |
- don't have a S99single when using upstart (#444001, indirectly) |
825 |
|
826 |
* Wed Apr 23 2008 Bill Nottingham <notting@redhat.com> - 8.71-1 |
827 |
- adjust to gdm using LANG instead of GDM_LANG (#372151, <rstrode@redhat.com>) |
828 |
- rework netfs' check for networking availability to properly handle both network |
829 |
and NetworkManager |
830 |
|
831 |
* Tue Apr 15 2008 Bill Nottingham <notting@redhat.com> - 8.70-1 |
832 |
- find is now in /bin. Use it. (#192991, #239914, #244941, #442178) |
833 |
- require event-compat-sysv for now (#442291) |
834 |
- fix serial event to wait properly |
835 |
- handle encrypted LVs properly (#441728) |
836 |
- add a sit tunnel type (#441635) |
837 |
- translation updates: ru |
838 |
|
839 |
* Tue Apr 8 2008 Bill Nottingham <notting@redhat.com> - 8.69-1 |
840 |
- Bring up lo whenever it shows up, not just in network/NM |
841 |
- fix shutdown-related oddities (#438444) |
842 |
- translation updates: el, sr, sr@latin, sv |
843 |
|
844 |
* Fri Apr 4 2008 Bill Nottingham <notting@redhat.com> - 8.68-1 |
845 |
- netfs: umount 'ncp' filesystems as well (#437117) |
846 |
- improve performance of s390 ccw rules (#437110, <mernst@de.ibm.com>) |
847 |
- fix consoletype environment leak (#439546) |
848 |
- ifdown-eth: make sure NEWCONFIG exists before grepping for it (#390271, continued) |
849 |
- console_check: always open with NONBLOCK, clear the serial structs first, |
850 |
handle non-16550 ports (<dwmw2@infradead.org>) |
851 |
- halt: don't use /etc/sysconfig/clock (#438337) |
852 |
- ifup: don't attempt to re-enslave already-enslaved devices (#440077) |
853 |
- netfs: run as a NetworkManagerDispatcher script (#439242) |
854 |
- netfs: remove $local_fs from the list of provides (making it implicitly provided |
855 |
by booting) |
856 |
- serial: add a crude hack to wait for runlevels to finish (#437379) |
857 |
- serial: frob /etc/securetty when necessary (#437381) |
858 |
- add a upstart-specific inittab |
859 |
- translation updates: as, bn_IN, cs, de, es, fi, fr, gu, hi, it, ja, kn, ml, mr, nb, |
860 |
nl, pa, pl, pt_BR, ru, sk, sr, ta, te, zh_CN |
861 |
|
862 |
* Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.67-1 |
863 |
- actually, don't |
864 |
|
865 |
* Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.66-1 |
866 |
- use upstart to start rhgb (#433156, <cdahlin@ncsu.edu>) |
867 |
|
868 |
* Mon Mar 10 2008 Bill Nottingham <notting@redhat.com> - 8.65-1 |
869 |
- Add a serial console udev/upstart handler (#434764, indirectly) |
870 |
- Add some upstart notification for sysv scripts (modified from <cjdahlin@ncsu.edu>, #431231) |
871 |
- Handle _rnetdev correctly (#435358, <pjones@redhat.com>) |
872 |
- various minor speedups (<arjan@infradead.org>) |
873 |
- translation updates: el, fr |
874 |
- disable network by default, in favor of NetworkManager |
875 |
|
876 |
* Tue Feb 26 2008 Bill Nottingham <notting@redhat.com> - 8.64-1 |
877 |
- Add a console_init udev helper to do console initialization |
878 |
- add /sbin/pidof requirement (#434863) |
879 |
|
880 |
* Fri Feb 1 2008 Bill Nottingham <notting@redhat.com> - 8.63-1 |
881 |
- don't start RAID arrays in rc.sysinit, that's done by udev (corollary of #429604) |
882 |
- add a NetworkManager-dispatcher script that does netreport on interface changes |
883 |
- use udev rules to set the clock, avoiding issues with modular rtcs (#290731) |
884 |
|
885 |
* Mon Jan 21 2008 Bill Nottingham <notting@redhat.com> - 8.62-1 |
886 |
- rc.d/rc.sysinit: fix syntax error (#429556) |
887 |
- migrate sr@Latn -> sr@latin (<kmilos@gmail.com>) |
888 |
|
889 |
* Fri Jan 18 2008 Bill Nottingham <notting@redhat.com> - 8.61-1 |
890 |
- use lvm, not lvm.static (#429222) |
891 |
- ifup-eth: don't do something odd if we find a mac address that |
892 |
matches the user-set MACADDR (#251415) |
893 |
- rc.sysinit: fix root fs check to catch 'rw,ordered,noatime,etc.' properly |
894 |
(#334171) |
895 |
- rc.sysinit: Use proper invocations for authconfig, system-config-network |
896 |
(#426372, #428202) |
897 |
- service: handle unreadable scripts (#427767) |
898 |
- initscripts.spec: add requirements for stateless |
899 |
- fix perms on /etc/profile.d (#407531, <ville.skytta@iki.fi>) |
900 |
- rename_device: handle quoted HWADDR, etc. in ifcfg scripts (#351291) |
901 |
- minor stateless fixes |
902 |
- Makefile cleanups (from OLPC, <cscott@cscott.net>) |
903 |
- translation updates: fr, ru, nb |
904 |
- don't endelessly loop on ifdown (#390271) |
905 |
- rc.sysinit: - fix encrypted swap partitions with random key |
906 |
(<harald@redhat.com>) |
907 |
|
908 |
* Tue Oct 9 2007 Bill Nottingham <notting@redhat.com> - 8.60-1 |
909 |
- don't chvt with rhgb - just kill it when needed |
910 |
|
911 |
* Mon Oct 8 2007 Bill Nottingham <notting@redhat.com> - 8.59-1 |
912 |
- rc.sysinit: fix rhgb check |
913 |
- prefdm: add wdm section (#248087) |
914 |
- init.d/functions, halt: clean up some extraneous delays (#219816) |
915 |
- ifup-wireless: set mode before bringing link up (#254046, <linville@redhat.com>) |
916 |
- translation updates: pt_BR, hr |
917 |
|
918 |
* Fri Oct 5 2007 Bill Nottingham <notting@redhat.com> - 8.58-1 |
919 |
- revert kernel conflict so that xen can still work (#319401) |
920 |
- rename_device, 60-net.rules: only suggest an interface name (part of #264901) |
921 |
- require newer udev for persistent net rules (part of #264901) |
922 |
- don't hang if someone puts a dangling pipe in /etc/rhgb/temp (#251219) |
923 |
- genhostid: fix for 64-bit systems (#306811) |
924 |
- more bash matching fixes (#220087) |
925 |
- translation updates: is, nb |
926 |
|
927 |
* Tue Sep 25 2007 Bill Nottingham <notting@redhat.com> - 8.57-1 |
928 |
- work around upstream bash changes (#220087, modified from <nvigier@mandriva.com>) |
929 |
- init.d/network: add Should-Start for firewall services |
930 |
- ifup-eth: handle arp_ip_target separately (#288151, <agospoda@redhat.com>) |
931 |
- rc.sysinit: remove rc.serial support - should be udev rules |
932 |
- rc.sysinit: remove acpi module loading - now supported by the kernel automatically |
933 |
- fix en_GB translation (#271201) |
934 |
- translation updates: as, bn_IN, bg, ca, cs, de, el, es, fi, gu, hi, it, ja, ko, kn, ml, |
935 |
mr, nb, nl, pa, pl, pt, pt_BR, ro, sl, sr, sr@Latn, sv, ta, te, zh_CN |
936 |
|
937 |
* Wed Aug 29 2007 Bill Nottingham <notting@redhat.com> - 8.56-1 |
938 |
- rename_device: fix open() call |
939 |
- rc.sysinit: optimize out some excess greps (<harald@redhat.com>) |
940 |
- halt: support newer nut syntax, conflict with old versions (#252973, <tsmetana@redhat.com>) |
941 |
- fix buildreq from popt -> popt-devel |
942 |
- newer popt is in /lib|/lib64 - require it, and link dynamically |
943 |
- rc.sysinit: added support for cryptsetup-uuids (bug #242078, <harald@redhat.com>) |
944 |
- netconsole: fix status(), assorted other cleanups |
945 |
- translation updates: fr, ro, sk |
946 |
|
947 |
* Fri Jul 27 2007 Bill Nottingham <notting@redhat.com> |
948 |
- add /etc/networks (#239602) |
949 |
- rc.sysinit: fix quotacheck, remove obsolete convertquota (#249003, <tometzky@batory.org.pl>) |
950 |
- rc.sysinit: add gfs2 to the 'don't mount here' list (#248985) |
951 |
- netfs: check for rpcbind, not portmap (#245595) |
952 |
- ifup-eth: set 'primary' later for bonding devices (#236897, <agospoda@redhat.com>) |
953 |
- translation updates: cy, en_GB, mk, ml, ms, pl, sk, ta, zh_CN |
954 |
|
955 |
* Tue Jul 17 2007 Nils Philippsen <nphilipp@redhat.com> |
956 |
- avoid calling unicode_start unnecessarily often during startup/shutdown which |
957 |
causes certain monitor/video card combos to flicker heavily (#237839) |
958 |
|
959 |
* Tue May 15 2007 Bill Nottingham <notting@redhat.com> 8.54-1 |
960 |
- translation updates: as, bg, cs, ja, ms |
961 |
- redirect bogus errors from cryptsetup to /dev/null <karsten@redhat.com> |
962 |
|
963 |
* Thu Apr 19 2007 Bill Nottingham <notting@redhat.com> 8.53-1 |
964 |
- init.d/halt: use sound saving wrapper from alsa-utils, conflict with |
965 |
older versions (#236916) |
966 |
- usernetctl: drop user gid (#229372) |
967 |
- translation updates: ta, pt_BR, nb, as, hi, de |
968 |
|
969 |
* Mon Apr 16 2007 Bill Nottingham <notting@redhat.com> 8.52-1 |
970 |
- lang.sh: fix locales where SYSFONT is not the default (#229996) |
971 |
- ifup-wireless: properly quote arguments (#234756) |
972 |
- readonly-root: add options for mounting state (#234916) |
973 |
- rwtab: updates (#219339, <law@redhat.com>) |
974 |
- add netconsole init script (#235952) |
975 |
- disable link checking when PERSISTENT_DHCLIENT is set (#234075) |
976 |
- restore file context on /etc/resolv.conf (#230776, <dwalsh@redhat.com>) |
977 |
- ifup-post: only use the first address (#230157, <michal@harddata.com>) |
978 |
- ifup-ipsec: allow overriding of my_identifier (#229343, <cmadams@hiwaay.net>) |
979 |
- ifup-wireless: set link up before itweaking wireless parameters (#228253) |
980 |
- rc.sysinit: restorecon on mount points when relabeling (#220322) |
981 |
- init.ipv6-global: cleanup & optimize sysctl usage (#217595) |
982 |
- ifup-eth: support ETHTOOL_OPTS on bridge devices (#208043, <bbaetz@acm.org>) |
983 |
- network-functions-ipv6: as we don't use NETWORKING_IPV6, silence errors (#195845) |
984 |
- fix description (#229919) |
985 |
- translation updates |
986 |
|
987 |
* Fri Feb 23 2007 Bill Nottingham <notting@redhat.com> 8.51-1 |
988 |
- fix 'Fedora Fedora' in rc.sysinit |
989 |
- halt: use kexec -x to not shut down network (#223932, <mchristi@redhat.com>) |
990 |
- network_functions: fix is_bonding_device logic (#229643) |
991 |
- translation updates: nb |
992 |
|
993 |
* Mon Feb 19 2007 Bill Nottingham <notting@redhat.com> 8.50-1 |
994 |
- lang.csh, lang.sh: if $LANG is set, don't override it (#229102) |
995 |
- initlog.1: fix man page formatting (<esr@thyrsus.com>) |
996 |
- network-functions: simplify bonding test (#215887, <herbert.xu@redhat.com>) |
997 |
- fix ifup-post when lookup fails (#220318, <hiroshi.fujishima+redhat@gmail.com>) |
998 |
- add bridging docs (#221412, <markmc@redhat.com>) |
999 |
- release bonding slaves properly (#220525) |
1000 |
- fix ppp-watch with ONBOOT=yes (#216749) |
1001 |
- support VLAN_PLUS_VID_NO_PAD (#222975, #223011) |
1002 |
- remove NETWORKING_IPV6; to disable, use a modprobe rule |
1003 |
- translation updates: ms, de, el, pt_BR, fi, bs, sr, it, ko |
1004 |
|
1005 |
* Tue Dec 19 2006 Bill Nottingham <notting@redhat.com> 8.49-1 |
1006 |
- rc.sysinit: remove raidautorn (#219226) |
1007 |
- ifup-eth: set MACADDR, MTU before initializing bonding slaves, etc (#218792) |
1008 |
- translation updates: mr, ms, hi, te, ml |
1009 |
|
1010 |
* Tue Nov 28 2006 Bill Nottingham <notting@redhat.com> 8.48-1 |
1011 |
- add a step to rename any temporarily renamed devices (#208740, #214817) |
1012 |
- make sure network modules don't get accidentally reloaded (#211474) |
1013 |
- rc.sysinit: fix dmraid test (#216334) |
1014 |
- init.d/halt: don't unmount network filesystems |
1015 |
- ipsec: Add a way to manually manage racoon.conf (#159343, <mitr@redhat.com>) |
1016 |
- sysconfig.txt: Document ~/.i18n (#199323, <mitr@redhat.com>) |
1017 |
- some translation updates |
1018 |
|
1019 |
* Mon Nov 6 2006 Bill Nottingham <notting@redhat.com> 8.47-1 |
1020 |
- lang.{sh,csh}: handle sinhalese as well in CJKI clauses (#212438) |
1021 |
- rc.sysinit: add '--auto=yes' to mdadm invocation (#213671) |
1022 |
- rename_device: fix incorrect handling of .bak files |
1023 |
- mount tmpfs with -n (#213132) |
1024 |
- various SUBCHANNELS related s390 fixage (#204803) |
1025 |
- lang.{sh,csh}: support iso-8859-8 (#212738, <matan@svgalib.org>) |
1026 |
|
1027 |
* Fri Oct 27 2006 Bill Nottingham <notting@redhat.com> 8.46-1 |
1028 |
- ifup-eth: restorecon on moved lease file |
1029 |
- rc.sysinit: handle "nodmraid" and "nompath" command line options (#209377, <pjones@redhat.com>) |
1030 |
- revert early-login support (#210836, essentially) |
1031 |
- blacklist CJKI on the virtual console (#120819) |
1032 |
- rc.sysinit: use dmraid.static (#211297) |
1033 |
- use sysfs interface for bonding (#202443, <agospoda@redhat.com>) |
1034 |
- use /etc/statetab, /etc/statetab.d for local state (#211839, <markmc@redhat.com>) |
1035 |
- fix or_IN and similar locales (#212219) |
1036 |
- use SUBCHANNELS as the primary key for s390 network devices (#204803) |
1037 |
- translation updates |
1038 |
|
1039 |
* Fri Oct 6 2006 Bill Nottingham <notting@redhat.com> 8.45-1 |
1040 |
- lang.csh/lang.sh - do *not* stty iutf8; too much chaos with SIGTTOU |
1041 |
(reverts: #186961; fixes #209469) |
1042 |
- translation updates: ms |
1043 |
|
1044 |
* Wed Oct 4 2006 Bill Nottingham <notting@redhat.com> 8.44-1 |
1045 |
- separate tmpfs-usage for state from readonly-root |
1046 |
- set keymap correctly in non-utf8 locale (#167363) |
1047 |
- setsysfont: run unicode_stop if in non-unicode locale |
1048 |
- lang.csh/lang.sh: set iutf8 if appropriate (#186961) |
1049 |
- lang.csh/lang.sh: handle non-utf8 locales correctly (#200100) |
1050 |
- rc.sysinit: redirect stderr from setsysfont (#209204, indirectly) |
1051 |
- rwtab: fix iscsi file location (#208864) |
1052 |
- translation updates: el, da, as, or |
1053 |
- fix stateless updates (#206331, <law@redhat.com>) |
1054 |
|
1055 |
* Wed Sep 27 2006 Bill Nottingham <notting@redhat.com> 8.43-1 |
1056 |
- move ccwgroup initialization to a udev rule (should fix #199139, |
1057 |
#199655, #169161) |
1058 |
- init.d/functions: don't write to gdmfifo |
1059 |
- remove unused-since-RHL-7 consolechars code, update docs (#206106) |
1060 |
- stateless updates (#206331, <law@redhat.com>) |
1061 |
- translation updates (el, ms, hr, sl) |
1062 |
|
1063 |
* Thu Sep 21 2006 Bill Nottingham <notting@redhat.com> 8.42-1 |
1064 |
- run rc.sysinit, /etc/rc in monitor mode (part of #184340) |
1065 |
- use a better check for 'native' services (#190989, #110761, adapted |
1066 |
from <matthias@rpmforge.net>) |
1067 |
|
1068 |
* Tue Sep 19 2006 Bill Nottingham <notting@redhat.com> 8.41-1 |
1069 |
- fix network ipv6 hang (#207137, others) |
1070 |
- rc.sysinit: change blkid.tab path to /etc/blkid/blkid.tab |
1071 |
- rename_device: reset DEVPATH also when renaming (#206884, <phil@fifi.org>) |
1072 |
- sysconfig.txt: clarify onboot/onparent usage |
1073 |
|
1074 |
* Fri Sep 15 2006 Bill Nottingham <notting@redhat.com> 8.40-1 |
1075 |
- translation updates |
1076 |
- rename_device: use '__tmpXXXX' instead of 'devXXXX' as a temporary device |
1077 |
name to avoid any realistic namespace clashes |
1078 |
- rc.sysinit: set default affinity if specified on commandline (#203359) |
1079 |
- always pass path to '.' (#206035) |
1080 |
- run setsysfont, loadkeys always when /dev/tty{0,1} exist (#150769) |
1081 |
- allow going to a shell when system is shut down cleanly (from <dwalsh@redhat.com>) |
1082 |
|
1083 |
* Tue Sep 5 2006 Bill Nottingham <notting@redhat.com> 8.39-1 |
1084 |
- translation updates |
1085 |
- Handle partitions on multipath/dmraid better (<pjones@redhat.com>) |
1086 |
- make /dev/mapper/control ourselves (<pjones@redhat.com>) |
1087 |
- init.d/network: simplify 'status' call |
1088 |
- fix actual 169.254 networks (#203591) |
1089 |
- rc.sysinit: don't run vgscan (#191879) |
1090 |
- init.d/halt: don't umount /dev/root<foo> (<oblin@mandriva.com>) |
1091 |
- rc.sysinit: catch more dmraid errors (#200683) |
1092 |
- support 'tmp' option in /etc/crypttab (#201382, <mitr@redhat.com>, |
1093 |
<lv@lekv.de>) |
1094 |
- IPv6 updates (<pb@bieringer.de>, includes a fix for #143452) |
1095 |
|
1096 |
* Tue Aug 1 2006 Bill Nottingham <notting@redhat.com> 8.38-1 |
1097 |
- translation updates |
1098 |
- bring down bonding slaves on ifdown (#199706) |
1099 |
- support LINKDELAY for dhcp (#191137) |
1100 |
- netfs: run multipath on netdev devices (#180977) |
1101 |
- halt: use /proc/mounts instead of /etc/mtab (#198426, <mitr@redhat.com>) |
1102 |
- rc.sysinit: fix getkey race (#191453, <mitr@redhat.com>) |
1103 |
- spec cleanups (#188614, <kloczek@rudy.mif.pg.gda.pl>) |
1104 |
- support aliases on vlan (#193133, <mitr@redhat.com>) |
1105 |
- clean up ifcfg file handling (<mitr@redhat.com>, <michal@harddata.com>) |
1106 |
- GRE and IPIP tunnel support (#168990, <mitr@redhat.com>, |
1107 |
<razvan.vilt@linux360.ro>, <aaron.hope@unh.edu>, <sean@enertronllc.com>) |
1108 |
- rc.sysinit: don't format encrypted swap always (#127378) |
1109 |
- don't try to add routes to alias devices (#199825, #195656) |
1110 |
|
1111 |
* Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.37-1 |
1112 |
- update translations |
1113 |
|
1114 |
* Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.36-1 |
1115 |
- rework automatic swapon - only run if AUTOSWAP=yes, and fix errors |
1116 |
(#198695, #196179, #196208) |
1117 |
- redo single so it starts last in runlevel 1, and doesn't kill/start |
1118 |
services itself |
1119 |
- add configurable delay for killproc() (#198429, <jorton@redhat.com>) |
1120 |
- fix loop in rename_device (#199242, <markmc@redhat.com>) |
1121 |
- rc.sysinit: stateless updates (#197972, <law@redhat.com>) |
1122 |
- support for copying dhcp leases from initramfs (#198601, <markmc@redhat.com>) |
1123 |
- readonly-root: SELinux works now in the kernel, allow it |
1124 |
- init.d/network: don't bring down network if root is on a network device |
1125 |
- init.d/halt: don't use -i to halt; causes problems with iscsi |
1126 |
- add support for routing rule-$device (#132252, <mitr@redhat.com>) |
1127 |
- fix rhgb output (#192604, <tonynelson@georgeanelson.com>) |
1128 |
- fix crypttab options for LUKS (#197656, <mitr@redhat.com>) |
1129 |
- ipsec: various fixes & new features (#150682, #168972, <mitr@redhat.com>, <alex@milivojevic.org>) |
1130 |
- ipsec: add check for IKE_METHOD (#197576, <john_smyth@mail.ru>) |
1131 |
- rename_device: ignore alias devices, fix race (#186355) |
1132 |
- ifup/ifdown: don't mark as %%config |
1133 |
- rwtab: some additions/cleanup |
1134 |
|
1135 |
* Mon Jun 12 2006 Bill Nottingham <notting@redhat.com> 8.35-1 |
1136 |
- readonly root enhancments (modified from <law@redhat.com>, #193164) |
1137 |
- encrypted swap, non-root filesystem support (#127378, <mitr@redhat.com, <redhat@flyn.org>) |
1138 |
- clarify killproc usage (#193711, <mitr@redhat.com>) |
1139 |
- document BRIDGE= (#192576, <mitr@redhat.com>) |
1140 |
- rc.sysinit: allow for sulogin instead of automatic relabeling (<dwalsh@rehdat.com>) |
1141 |
|
1142 |
* Tue May 23 2006 Bill Nottingham <notting@redhat.com> 8.34-1 |
1143 |
- link glib2 dynamically now that it's in /lib, conflict with older |
1144 |
versions |
1145 |
- handle cups specially when cleaning /var (#189168) |
1146 |
- remove ifdown-aliases (<mitr@redhat.com>) |
1147 |
- ifup-ipsec: fix key handling when only one of AH or ESP is used |
1148 |
(#166257, <mituc@iasi.rdsnet.ro>) |
1149 |
- IPv6 updates, including RFC 3041 support (<pb@bieringer.de>) |
1150 |
- routing fixes, add METRIC support for default routes (#124045, <mitr@redhat.com>) |
1151 |
- fix handling of mount points with white space (#186713, <mitr@redhat.com>) |
1152 |
|
1153 |
* Thu Apr 20 2006 Bill Nottingham <notting@redhat.com> 8.33-1 |
1154 |
- support for readonly root |
1155 |
- rc.sysinit: remove call to zfcpconf.sh - that should be udev rules |
1156 |
- ifup*: add NETWORKDELAY and LINKDELAY (#176851, <mitr@redhat.com>) |
1157 |
- rc.sysinit: remove obsolete initrd code (<pjones@redhat.com>) |
1158 |
|
1159 |
* Mon Apr 10 2006 Bill Nottingham <notting@redhat.com> 8.32-1 |
1160 |
- netfs: fix redirect (#187505) |
1161 |
- rc.sysinit add forcequotacheck (#168118, <mitr@redhat.com>) |
1162 |
- functions/pidof: various fixes (#182623, others <mitr@redhat.com>) |
1163 |
- add support for DHCP on bridges (#125259, <mitr@redhat.com>, |
1164 |
anders@kaseorg.com>) |
1165 |
- rc.sysinit: use pidof, not killall (#185429, <pjones@redhat.com>) |
1166 |
- ppp fixes (#129195, #163950, #92023, <mitr@redhat.com>, <avi@argo.co.il>) |
1167 |
- ifup/ifdown: unset $WINDOW (#174336, <mitr@redhat.com>) |
1168 |
|
1169 |
* Fri Mar 17 2006 Bill Nottingham <notting@redhat.com> 8.31.2-1 |
1170 |
- add udev helper to rename network devices on device creation |
1171 |
|
1172 |
* Tue Mar 14 2006 Bill Nottingham <notting@redhat.com> 8.31.1-1 |
1173 |
- fix context of /dev/pts (#185436) |
1174 |
- translation updates |
1175 |
|
1176 |
* Sun Mar 5 2006 Bill Nottingham <notting@redhat.com> 8.31-1 |
1177 |
- fix kexec support (<jmoyer@redhat.com>) |
1178 |
- translation updates |
1179 |
|
1180 |
* Tue Feb 28 2006 Bill Nottingham <notting@redhat.com> 8.30-1 |
1181 |
- hotplug: don't cause modules to be reloaded on ifdown/rmmod (#179809) |
1182 |
- fix endless loops in ifup/ifdown (#177792, #182466) |
1183 |
- fix enabling of enforcing SELinux mode after relabel (#181893) |
1184 |
- remove debugging code from ifup-bnep |
1185 |
- add /proc, /sys mounting back to rc.sysinit |
1186 |
Note: booting without an initrd is deprecated |
1187 |
- translation updates |
1188 |
|
1189 |
* Tue Feb 14 2006 Peter Jones <pjones@redhat.com> 8.29-1 |
1190 |
- scrub another possible error message from dmraid output |
1191 |
|
1192 |
* Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.28-1 |
1193 |
- kill nash-hotplug before starting udev (<pjones@redhat.com>) |
1194 |
- silence warnings on /dev/pts remount (<pjones@redhat.com>) |
1195 |
- more translation updates |
1196 |
|
1197 |
* Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.27-1 |
1198 |
- translation updates |
1199 |
- lang.sh: revert fix for #176832, it's broken |
1200 |
- ifup-aliases fixes (<pjones@redhat.com>,<mitr@redhat.com>) |
1201 |
|
1202 |
* Tue Feb 7 2006 Bill Nottingham <notting@redhat.com> 8.26-1 |
1203 |
- revert "rc.sysinit: don't mount usbfs, libusb no longer uses it" change |
1204 |
- add some ugly hacks to make sure net hotplug doesn't run after unclean |
1205 |
shutdown (#177795) |
1206 |
- don't mount /sys and /proc in rc.sysinit - the initrd already does |
1207 |
(<pjones@redhat.com>) |
1208 |
- halt: try to unmount tmpfs filesystems before swapoff (#174000, |
1209 |
<mitr@redhat.com>) |
1210 |
|
1211 |
* Thu Feb 2 2006 Bill Nottingham <notting@redhat.com> 8.25-1 |
1212 |
- ifup: don't run the arping check if the address is already on the device |
1213 |
|
1214 |
* Wed Feb 1 2006 Bill Nottingham <notting@redhat.com> 8.24-1 |
1215 |
- init.d/functions: fix sendmail startup |
1216 |
- sysconfig.txt: fix typos (<mitr@redhat.com>) |
1217 |
|
1218 |
* Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 8.23-1 |
1219 |
- rc.sysinit: do a better job of not activating already active dmraids |
1220 |
|
1221 |
* Tue Jan 31 2006 Bill Nottingham <notting@redhat.com> 8.22-1 |
1222 |
- remove references to /usr/X11R6/bin (#177938) |
1223 |
- rc.sysinit: fix SELinux message formatting (#178532) |
1224 |
- rc.sysinit: clean cvs as well (#178539, <ville.skytta@iki.fi>) |
1225 |
- init.d/halt: move halt.local so that it runs before / is remounted r/o (#179314) |
1226 |
- rc.sysinit: don't activate already active dmraids (<pjones@redhat.com>) |
1227 |
- rc.sysinit: don't mount usbfs, libusb no longer uses it |
1228 |
- init.d/functions: Add -p to status() (#134363, <mitr@redhat.com>) |
1229 |
- init.d/functions: Separate /var/run/*.pid handling and pidof calls |
1230 |
to private functions (#63440, <mitr@redhat.com>) |
1231 |
- init.d/functions: update for current LSB, including -p pidfile |
1232 |
(#99325, #134363, <mitr@redhat.com>, <tobias.burnus@physik.fu-berlin.de>) |
1233 |
- getkey: various cleanups, add man page (#54481, <mitr@redhat.com>) |
1234 |
- lang.sh: don't always call consoletype (<laroche@redhat.com>) |
1235 |
|
1236 |
* Fri Jan 20 2006 Bill Nottingham <notting@redhat.com> 8.21-1 |
1237 |
- move handling of network hotplug events here, add appropriate udev |
1238 |
rules, obsolete hotplug |
1239 |
- get rid of some path lookups (#178321, <mclasen@redhat.com>) |
1240 |
- get hwaddrs from sysfs as opposed to ip | sed |
1241 |
- translation updates |
1242 |
- lang.sh: don't run unicode_start for subshells (#176832) |
1243 |
- halt: ignore sysfs but not /sys<otherstuff> (#177612, <bnocera@redhat.com>) |
1244 |
- add service(8) man page (#44857) <mitr@redhat.com> |
1245 |
|
1246 |
* Wed Dec 21 2005 Bill Nottingham <notting@redhat.com> 8.20-1 |
1247 |
- remove kmodule. udev handles module loading now |
1248 |
- require appropriate udev |
1249 |
|
1250 |
* Thu Dec 15 2005 Bill Nottingham <notting@redhat.com> 8.19-1 |
1251 |
- Require syslog, for alternate implementations thereof (#172885) |
1252 |
- Fix fsck invocation for weeding out netdev devices (#175803) |
1253 |
|
1254 |
* Fri Dec 2 2005 Bill Nottingham <notting@redhat.com> 8.18-1 |
1255 |
- use new dhclient file paths, add appropriate conflict (#169164) |
1256 |
|
1257 |
* Wed Oct 5 2005 Bill Nottingham <notting@redhat.com> 8.17-1 |
1258 |
- make sure corefile limiting works for user processes as well |
1259 |
(#166511, <ville.skytta@iki.fi>) |
1260 |
- ifup-routes: handle no EOF in the route file (#156972) |
1261 |
- rc.sysinit: tweak mesage (#156972) |
1262 |
- ifdown-eth: clean up error message (#135167) |
1263 |
- rc.sysinit: call kpartx on multipath devices (#160227) |
1264 |
- ifup-eth: move wireless options before bridge options (#122801) |
1265 |
- ifup-wireless: silence error (#90601) |
1266 |
- init.d/functions: change translated string (#54682) |
1267 |
|
1268 |
* Tue Sep 27 2005 Than Ngo <than@redhat.com> 8.16-1 |
1269 |
- fix typo bug |
1270 |
|
1271 |
* Mon Sep 26 2005 Than Ngo <than@redhat.com> 8.15-1 |
1272 |
- support proper dial-in configuration, thanks to Peter Bieringer (#158380) |
1273 |
|
1274 |
* Thu Sep 22 2005 Bill Nottingham <notting@redhat.com> |
1275 |
- kmodule: don't probe for uninteresting devices. speeds things up |
1276 |
- network-functions: deal with broken networks better (#168947) |
1277 |
- rc.sysinit: automatically reboot if labels are really out of date |
1278 |
(<dwalsh@redhat.com>) |
1279 |
- network-functions: throw out nameif error messages |
1280 |
- rc.sysinit: use multipath.static (#168321) |
1281 |
- rc.sysinit: use ignorelocking (#168195) |
1282 |
|
1283 |
* Mon Sep 12 2005 Bill Nottingham <notting@redhat.com> 8.14-1 |
1284 |
- fix usage of the module blacklist (#168020) |
1285 |
|
1286 |
* Fri Sep 9 2005 Bill Nottingham <notting@redhat.com> 8.13-1 |
1287 |
- fix on-boot relabelling (<dwalsh@redhat.com>) |
1288 |
|
1289 |
* Mon Aug 22 2005 Bill Nottingham <notting@redhat.com> 8.12-1 |
1290 |
- ifup-eth: fix interface renaming (#158774) |
1291 |
- rc.sysinit: use modprobe, not insmod (#159120, <tmus@tmus.dk>) |
1292 |
- remove workaround for the fonts-not-initialized-on-secondary-consoles |
1293 |
problem (fixed in 2.6.12-rc4 and later) |
1294 |
- setsysfont: correctly bracket systfontacm (#159706) |
1295 |
- rc.sysinit: always use udevsend, even if no modules (#160987) |
1296 |
- ifdown-aliases: add 'cd' to the proper dir (#161170) |
1297 |
- add diskdump restore support (<tuchida@redhat.com>), |
1298 |
conflict with appropriate diskdumputils |
1299 |
- rc.sysinit: dmraid/multipath support |
1300 |
- remove LVM1 support |
1301 |
- init.d/functions: handle odd quoting in args (#161316, <stransky@redhat.com>) |
1302 |
- ifup-wireless: set rate in quotes (#163123) |
1303 |
- handle lvm & fsck for network block devices (#148764, |
1304 |
<alewis@redhat.com>) |
1305 |
- initlog: fix invalid free calls, (#165033), (#163973,<dwalsh@redhat.com>) |
1306 |
- sysconfig.txt: remove hdparm docs, since the code isn't there (#162962) |
1307 |
- updated translations: ms, ja, ko, et, zh_CN, zh_TW, sr, ar |
1308 |
|
1309 |
* Tue May 10 2005 Bill Nottingham <notting@redhat.com> 8.11-1 |
1310 |
- fix mis-bringup of interfaces due to accidentally matched HWADDR |
1311 |
(a.k.a. ONBOOT=no not working) (#153669, #157252) |
1312 |
- support automatic relabeling later if rebooted w/o SELinux |
1313 |
(<dwalsh@redhat.com>) |
1314 |
- rc.sysinit: fix fixfiles invocation (#157182) |
1315 |
- btmp should be 0600 (#156900) |
1316 |
- translation updates: fr, bg, ru, mk, pa, es |
1317 |
|
1318 |
* Fri Apr 29 2005 Bill Nottingham <notting@redhat.com> 8.10-1 |
1319 |
- fix hang on stale GDM sockets (#156355) |
1320 |
|
1321 |
* Wed Apr 27 2005 Bill Nottingham <notting@redhat.com> 8.09-1 |
1322 |
- rc.sysinit: clean up screen sockets (#155969) |
1323 |
- functions: use pidof -c in various functions |
1324 |
- ifup-ppp: fix static routes with ppp demand dialing (#20142, |
1325 |
<ohrn+redhat@chalmers.se>) |
1326 |
- add btmp support (#155537) |
1327 |
- don't send dhcp hostname (revert of fix for #149667) |
1328 |
- more early-login modifications (<mclasen@redhat.com>) |
1329 |
- functions: fix echo (#155270) |
1330 |
|
1331 |
* Mon Apr 18 2005 Karsten Hopp <karsten@redhat.de> 8.08-3 |
1332 |
- fix ifup-routes script (#155195) |
1333 |
|
1334 |
* Mon Apr 18 2005 Florian La Roche <laroche@redhat.com> |
1335 |
- fix strstr call in rc.sysinit |
1336 |
|
1337 |
* Fri Apr 15 2005 Bill Nottingham <notting@redhat.com> 8.08-1 |
1338 |
- update translation base |
1339 |
- automatically send hostname for DHCP if it's available and not |
1340 |
overridden (#149667) |
1341 |
- load user-defined module scripts from /etc/sysconfig/modules at |
1342 |
boot (#123927) |
1343 |
- halt: reverse sort the mount list, avoiding errors |
1344 |
(#147254, <jamesodhunt@hotmail.com>) |
1345 |
- ifup-wireless: add SECURITYMODE (#145407) |
1346 |
- network-functions: don't error out if hotplug doesn't exist (#140008) |
1347 |
- ifup: always return errors on trying to bring up nonexistent devices (#131461) |
1348 |
- ifup: fix error message (#143674) |
1349 |
- rc.sysinit: add a autorelabel boot target (#154496) |
1350 |
- prefdm: if something else is specified as $DISPLAYMANAGER, try that (#147304) |
1351 |
- remove support for the old firewall type |
1352 |
- network: optimize some (#138557, <drepper@redhat.com>) |
1353 |
- prefdm: fix prefdm arg handling (#154312, <khc@pm.waw.pl>) |
1354 |
- gdm early-login support (adapted from <rstrode@redhat.com>) |
1355 |
- ifup-routes: make sure commented lines are handled correctly (#154353, |
1356 |
#114548, <link@pobox.com>) |
1357 |
- some sysconfig.txt updates (<link@pobox.com>, <jvdias@redhat.com>) |
1358 |
- rc.sysinit: fix restorecon invocation (#153100) |
1359 |
- initlog: free some of the more egregious memory leaks (#85935) |
1360 |
- initlog: fix potential memory overread (#153685, <in-redhat@baka.org>) |
1361 |
- remove some conflicts, %%post scripts, etc. that were only relelvant |
1362 |
for upgrades from pre-7.0 |
1363 |
- other minor fixes, see ChangeLog |
1364 |
|
1365 |
* Thu Mar 31 2005 Bill Nottingham <notting@redhat.com> 8.07-1 |
1366 |
- bring back initlog for third-party scripts until a new framework is |
1367 |
in place |
1368 |
|
1369 |
* Wed Mar 30 2005 Bill Nottingham <notting@redhat.com> 8.06-1 |
1370 |
- handle alternate VLAN naming schemes (#115001, <kas@informatics.muni.cz>) |
1371 |
- ifup-ipsec: handle non-ascii keys (#150552) |
1372 |
- add proper ipsec route (#146169, #140654) |
1373 |
- add a restorecon for /tmp to rc.sysinit |
1374 |
- document ONHOTPLUG in sysconfig.txt |
1375 |
- fix mistranslation (#151120) |
1376 |
- don't return 1 for stopping a process if it isn't running at all |
1377 |
- don't explicitly set fwd polices for ipsec traffic. Let setkey |
1378 |
handle it. |
1379 |
|
1380 |
* Mon Mar 7 2005 Bill Nottingham <notting@redhat.com> 8.05-1 |
1381 |
- ipv6 cleanups (<pb@bieringer.de>) |
1382 |
- rc.sysinit: fix rngd check (#130350) |
1383 |
... then turn it off entirely |
1384 |
- rc.sysinit: get rid of duplicate date printout (#149795) |
1385 |
- ifdown: handle being called on down devices better |
1386 |
- handle saved resolv.conf on all device types |
1387 |
- fix network-functions cleanup |
1388 |
- netfs: fix _netdev unmounting (#147610, <alewis@redhat.com>) |
1389 |
- dhcp release cleanups (<jvdias@redhat.com>) |
1390 |
- ifup-bnep: bluetooth update <dwmw2@infradead.org> |
1391 |
- more ipsec stuff (#147001, <ckjohnson@gwi.net>) |
1392 |
|
1393 |
* Wed Jan 19 2005 Bill Nottingham <notting@redhat.com> 8.04-1 |
1394 |
- split out ifup/ifdown general case to ifup/ifdown-eth; |
1395 |
add ifup/ifdown-bnep (<dwmw2@redhat.com>) |
1396 |
- ifup-ipsec: add fwd policies (#145507) |
1397 |
- fix multiple scsi_hostadapter loads (#145432) |
1398 |
- enable syncookies in sysctl.conf (#145201) |
1399 |
|
1400 |
* Wed Jan 12 2005 Bill Nottingham <notting@redhat.com> 8.03-1 |
1401 |
- use udevsend to handle hotplug events (requires recent udev) |
1402 |
- remove pump, dhcpcd support |
1403 |
- fix ONxxx (#136531, <cww@redhat.com>) |
1404 |
- fix various fgreps to not catch commented lines (#136531, expanded |
1405 |
from <cww@redhat.com>) |
1406 |
- set ETHTOOL_OPTS on addressless devices (#144682, <mpoole@redhat.com>) |
1407 |
- kill dhcp client even if BOOTOPROTO is now static (#127726, others) |
1408 |
- replace the use of route/ifconfig with ip in IPv6 code, remove support |
1409 |
for ipv6calc (<pb@bierenger.de>, <pekkas@netcore.fi>) |
1410 |
- fix quoting in daemon() (#144634) |
1411 |
- make sysctl be silent (#144483) |
1412 |
|
1413 |
* Mon Jan 3 2005 Bill Nottingham <notting@redhat.com> 8.02-1 |
1414 |
- remove initlog, minilogd |
1415 |
- add a flag to kmodule for use with kudzu's socket mode, use it |
1416 |
- change setting of IPv6 default route (#142308, <pb@bieringer.de>) |
1417 |
- netfs: don't unmount NFS root FS (#142169) |
1418 |
|
1419 |
* Mon Dec 6 2004 Bill Nottingham <notting@redhat.com> 8.01-1 |
1420 |
- further bootup noise reductions |
1421 |
- rc.d/rc.sysinit: do implicit unicode conversion on keymap |
1422 |
|
1423 |
* Mon Nov 29 2004 Bill Nottingham <notting@redhat.com> 8.00-1 |
1424 |
- fix previous fix (#139656) |
1425 |
|
1426 |
* Wed Nov 24 2004 Bill Nottingham <notting@redhat.com> 7.99-1 |
1427 |
- clear and repopulate mtab before mounting other filesystems (#139656) |
1428 |
- remove more devfs compat |
1429 |
|
1430 |
* Tue Nov 23 2004 Bill Nottingham <notting@redhat.com> 7.98-1 |
1431 |
- various kmodule speedups |
1432 |
- rc.d/init.d/netfs: don't mount GFS (#140281) |
1433 |
- fix various minilogd bogosities (#106338) |
1434 |
|
1435 |
* Mon Nov 15 2004 Karsten Hopp <karsten@redhat.de> 7.97-1 |
1436 |
- configure CTC protocol if CTCPROT is set (#133088) |
1437 |
|
1438 |
* Mon Nov 15 2004 Bill Nottingham <notting@redhat.com> |
1439 |
- fix check_link_down to still check negotiation if link is |
1440 |
listed as "up" on entering (#110164, <dbaron@dbaron.org>) |
1441 |
|
1442 |
* Thu Nov 11 2004 Karsten Hopp <karsten@redhat.de> 7.96-1 |
1443 |
- parse OPTIONS for QETH, CTC, LCS interfaces (#136256, mainframe) |
1444 |
|
1445 |
* Tue Nov 9 2004 Bill Nottingham <notting@redhat.com> |
1446 |
- fix typo (#134787, <bnocera@redhat.com>) |
1447 |
|
1448 |
* Sun Nov 7 2004 Bill Nottingham <notting@redhat.com> 7.95-1 |
1449 |
- various translation updates |
1450 |
|
1451 |
* Tue Nov 2 2004 Bill Nottingham <notting@redhat.com> |
1452 |
- take an axe to rc.sysinit: |
1453 |
- remove delay on unclean startup |
1454 |
- remove hdparm code |
1455 |
- remove LVM1 code |
1456 |
- remove old raidtab code in favor of mdadm |
1457 |
- remove support for old isapnp tools |
1458 |
- move all block device mangling before fsck. run fsck *once*, not twice |
1459 |
- some more LC_ALL=C stuff |
1460 |
|
1461 |
* Sun Oct 31 2004 Florian La Roche <laroche@redhat.com> |
1462 |
- /etc/rc.d/rc: use "LC_ALL=C grep" for small speedup |
1463 |
- /etc/rc.d/rc.sysinit: |
1464 |
- do not read udev.conf, this seems to be all in the start_udev script |
1465 |
- fix detection of "nomodules" kernel command line option |
1466 |
- read /proc/cmdline earlier and convert rhgb to use that, too |
1467 |
- load_module(): change redirection to /dev/null |
1468 |
- some checks for RHGB_STARTED="" looked strange |
1469 |
- /etc/sysconfig/network-scripts/ifup-ppp: |
1470 |
- remove a call to basename with shell builtins |
1471 |
- /etc/sysconfig/network-scripts/network-functions: |
1472 |
- remove some calls to basename/sed with shell builtins |
1473 |
|
1474 |
* Wed Oct 27 2004 Bill Nottingham <notting@redhat.com> 7.93.2-1 |
1475 |
- fix prefdm fallback to installed display managers (#137274) |
1476 |
- fix incorrect rhgb temporary path (#137391) |
1477 |
|
1478 |
* Mon Oct 18 2004 Bill Nottingham <notting@redhat.com> 7.93-1 |
1479 |
- translation updates |
1480 |
- fix handling of GATEWAYDEV (#133575, <pekkas@netcore.fi>) |
1481 |
|
1482 |
* Sun Oct 17 2004 Bill Nottingham <notting@redhat.com> 7.91-1 |
1483 |
- rc.d/rc.sysinit: remove devlabel call |
1484 |
- mdadm support, now that raidtools is gone (#126636, #88785) |
1485 |
- call ipv6to4 scripts in /etc/ppp/(ip-up|ip-down) (#124390, <dwmw2@redhat.com>) |
1486 |
- cleanup a couple of nits that could affect bug #134754 |
1487 |
- make sure we return to rhgb after fsck (#133966, #112839, #134449) |
1488 |
- automatically reboot when fsck calls for it, instead of requiring |
1489 |
manual intervention (#117641 and duplicates) |
1490 |
- ifup-wireless: fix key for open vs. restricted (#135235, <dax@gurulabs.com>) |
1491 |
- translation updates |
1492 |
|
1493 |
* Fri Oct 08 2004 Karsten Hopp <karsten@redhat.de> 7.90-1 |
1494 |
- fix portname for LCS devices |
1495 |
|
1496 |
* Fri Oct 08 2004 Bill Nottingham <notting@redhat.com> |
1497 |
- remove sysconfig/rawdevices, as initscript is removed |
1498 |
|
1499 |
* Thu Oct 07 2004 Florian La Roche <Florian.LaRoche@redhat.de> |
1500 |
- change /etc/sysctl.conf to not allow source routed packets per default |
1501 |
|
1502 |
* Fri Oct 6 2004 Bill Nottingham <notting@redhat.com> - 7.88-1 |
1503 |
- fix requires |
1504 |
|
1505 |
* Tue Oct 5 2004 Dan Walsh <dwalsh@redhat.com> - 7.87-1 |
1506 |
- Change SELinux relabel to not remount / |
1507 |
|
1508 |
* Mon Oct 4 2004 Bill Nottingham <notting@redhat.com> |
1509 |
- use runuser instead of su; require it |
1510 |
- init.d/halt: use right file name for random seed (#134432) |
1511 |
|
1512 |
* Fri Oct 1 2004 Bill Nottingham <notting@redhat.com> - 7.86-1 |
1513 |
- use /etc/hotplug/blacklist to blacklist modules in hardware init (#132719) |
1514 |
- filter indic locales on the console (#134198) |
1515 |
|
1516 |
* Wed Sep 29 2004 Bill Nottingham <notting@redhat.com> - 7.85-1 |
1517 |
- ifup, network-functions: fix worked-by-accident shell quoting |
1518 |
- lang.csh: remove setting of dspmbyte (#89549, <mitr@redhat.com>) |
1519 |
- SELinux fixes |
1520 |
- clean up prefdm |
1521 |
- init.d/functions: export LC_MESSAGES (#133786) |
1522 |
- allow daemon to coredump if requested (#130175) |
1523 |
- network-functions: be more liberal in what we accept for link types (#90602, #127984) |
1524 |
- fix overzealousness with -range aliases (#65415) |
1525 |
- rc.sysinit: use s-c-keyboard, not kbdconfig (#133929) |
1526 |
- fix checkpid logic, clean up potential errors (#134030) |
1527 |
- translation updates |
1528 |
|
1529 |
* Wed Sep 22 2004 Bill Nottingham <notting@redhat.com> - 7.84-1 |
1530 |
- only start udev once |
1531 |
|
1532 |
* Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 7.83-1 |
1533 |
- conflict with old udev |
1534 |
- use udev if it's present |
1535 |
|
1536 |
* Tue Sep 21 2004 Bill Nottingham <notting@redhat.com> |
1537 |
- don't mount usbfs without usb. also, at least be consistent in filesystem type |
1538 |
|
1539 |
* Fri Sep 17 2004 Bill Nottingham <notting@redhat.com> - 7.82-1 |
1540 |
- fix handling of nonexistent devices (#132839) |
1541 |
- rhgb enhancements (<veillard@redhat.com>, #132665) |
1542 |
- initscripts.spec: require nash (#132513) |
1543 |
- translation updates |
1544 |
|
1545 |
* Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 7.81-1 |
1546 |
- load iucv device config after /etc/sysconfig/network so that |
1547 |
GATEWAY doesn't get overwritten |
1548 |
|
1549 |
* Fri Sep 10 2004 Bill Nottingham <notting@redhat.com> - 7.80-1 |
1550 |
- fix IPv6 6to4 & NAT (#118928, <pb@bieringer.de>, <pekkas@netcore.fi>) |
1551 |
|
1552 |
* Fri Sep 10 2004 Karsten Hopp <karsten@redhat.com> - 7.79-1 |
1553 |
- load ctc device config after /etc/sysconfig/network so that |
1554 |
GATEWAY doesn't get overwritten |
1555 |
|
1556 |
* Wed Sep 8 2004 Dan Walsh <dwalshg@redhat.com> - 7.78-2 |
1557 |
- fix setting SELinux contexts on udev-created-in-initrd devices |
1558 |
- Let restorecon check if selinux is enabled. |
1559 |
|
1560 |
* Wed Sep 8 2004 Bill Nottingham <notting@redhat.com> - 7.78-1 |
1561 |
- set SELinux contexts on udev-created-in-initrd devices, if necessary |
1562 |
|
1563 |
* Wed Sep 1 2004 Bill Nottingham <notting@redhat.com> - 7.77-1 |
1564 |
- mount usbfs (#131347) |
1565 |
- start any automatic raid devices |
1566 |
- remove triggers for ancient releases, bulletproof remaining ones (#131356) |
1567 |
|
1568 |
* Wed Sep 1 2004 Jeremy Katz <katzj@redhat.com> - 7.76-1 |
1569 |
- udev uses UDEV_TMPFS now |
1570 |
|
1571 |
* Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 7.75-1 |
1572 |
- fix sysfs configuration of qeth and lcs network interfaces |
1573 |
(eth, tr, hsi) |
1574 |
|
1575 |
* Mon Aug 30 2004 Karsten Hopp <karsten@redhat.de> 7.74-1 |
1576 |
- fix support for LCS portnumbers (mainframe) |
1577 |
|
1578 |
* Fri Aug 27 2004 Jason Vas Dias <jvdias@redhat.com> 7.73-1 |
1579 |
- Add support for running the DHCPv6 client to ifup |
1580 |
- (new DHCPV6C=yes/no ifcfg-${IF} variable) + update sysconfig.txt |
1581 |
|
1582 |
* Fri Aug 27 2004 Bill Nottingham <notting@redhat.com> 7.72-1 |
1583 |
- flip the kernel conflict to a Requires: |
1584 |
|
1585 |
* Thu Aug 26 2004 Karsten Hopp <karsten@redhat.de> 7.71-1 |
1586 |
- ifcfg-iucv/ctc: drop REMIP and use GATEWAY instead |
1587 |
|
1588 |
* Thu Aug 26 2004 Bill Nottingham <notting@redhat.com> 7.70-1 |
1589 |
- autoload hardware modules on startup |
1590 |
- minor fsck cleanup (#115028, <leonard-rh-bugzilla@den.ottolander.nl>) |
1591 |
- ifup: support STP bridging (#123324) |
1592 |
- rc.sysinit: do a SELinux relabel if forced |
1593 |
- rc.sysinit: remove devfs compat and the remaining 2.4 compat |
1594 |
- ifup-wireless: support multiple keys (#127957) |
1595 |
- fix firmware loading (#129155, <bnocera@redhat.com>) |
1596 |
|
1597 |
* Tue Aug 24 2004 Karsten Hopp <karsten@redhat.de> 7.68-1 |
1598 |
- execute zfcfconf.sh if available (mainframe) |
1599 |
|
1600 |
* Mon Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.67-1 |
1601 |
- fix change_resolv_conf: if pre-existing /etc/resolv.conf |
1602 |
- non-existent or empty, replace with new file contents. |
1603 |
|
1604 |
* Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1 |
1605 |
- Allow users to use generic /etc/dhclient.conf if per-device |
1606 |
- /etc/dhclient-${DEVICE}.conf is non-existent or empty |
1607 |
|
1608 |
* Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1 |
1609 |
- Preserve "options" settings in resolv.conf (bug 125712) |
1610 |
|
1611 |
* Fri Aug 20 2004 Jeremy Katz <katzj@redhat.com> - 7.65-1 |
1612 |
- look at /etc/udev/udev.conf, not /etc/sysconfig/udev (#130431) |
1613 |
|
1614 |
* Fri Aug 20 2004 Bill Nottingham <notting@redhat.com> 7.64-1 |
1615 |
- rc.d/rc.sysinit: check for dev file too (#130350) |
1616 |
|
1617 |
* Thu Aug 19 2004 Than Ngo <than@redhat.com> 7.63-1 |
1618 |
- allow CBCP with own number (#125710) |
1619 |
|
1620 |
* Thu Aug 19 2004 Bill Nottingham <notting@redhat.com> 7.62-1 |
1621 |
- fix up resolv.conf munging (#129921) |
1622 |
- use rngd if available |
1623 |
- run start_udev if necessary (#120605) |
1624 |
- readonly root updates (#129893, <markmc@redhat.com>) |
1625 |
- ifup-wireless: quote key (#129930) |
1626 |
- remove rawdevices (#130048) |
1627 |
- handle binfmt_misc in rc.sysinit for the case where it's built in (#129954) |
1628 |
- remove mkkerneldoth |
1629 |
- don't remove linguas in lang.* (part of #9733) |
1630 |
- fix nfs unmounting (#129765) |
1631 |
- fix URL (#129433) |
1632 |
|
1633 |
* Tue Aug 11 2004 Jason Vas Dias <jvdias@redhat.com> 7.61-1 |
1634 |
- fix for bug 120093: add PERSISTENT_DHCLIENT option to ifcfg files |
1635 |
|
1636 |
* Tue Aug 3 2004 Karsten Hopp <karsten@redhat.de> 7.60-1 |
1637 |
- write peerid into sysfs for IUCV devices (mainframe) |
1638 |
|
1639 |
* Tue Aug 3 2004 Bill Nottingham <notting@redhat.com> |
1640 |
- don't remove /dev/mapper/control - nash will do it if it has to (#127115) |
1641 |
|
1642 |
* Fri Jul 30 2004 Jason Vas Dias <jvdias@redhat.com> 7.60-1 |
1643 |
- fix for bug 125712: add 'change_resolv.conf' function |
1644 |
|
1645 |
* Tue Jul 27 2004 Bill Nottingham <notting@redhat.com> |
1646 |
- rc.d/init.d/network: don't bring interfaces down twice (#127487) |
1647 |
|
1648 |
* Wed Jul 14 2004 Bill Nottingham <notting@redhat.com> |
1649 |
- fix bonding + no IP (#127285) |
1650 |
- wrap second LVM initialization in vgscan check to avoid extraneous messages (#127639) |
1651 |
|
1652 |
* Wed Jul 7 2004 Bill Nottingham <notting@redhat.com> |
1653 |
- move random stuff to rc.sysinit/halt; move all swap to after this. |
1654 |
prereq of bug #123278 |
1655 |
|
1656 |
* Fri Jul 2 2004 Bill Nottingham <notting@redhat.com> 7.59-1 |
1657 |
- set context on ICE directory after making it (#127099, <concert@europe.com>) |
1658 |
- don't mount GFS filesystems in rc.sysinit |
1659 |
|
1660 |
* Tue Jun 29 2004 Bill Nottingham <notting@redhat.com> 7.58-1 |
1661 |
- rc.d/rc.sysinit: hack: make ICE directory on boot (#86480) |
1662 |
- set devicetype for xDSL (#126194) |
1663 |
- ignore locking failures when starting lvm volumes (#126192, <radu@primit.ro>) |
1664 |
- unset LC_MESSAGES for rhgb (#126020, <ynakai@redhat.com>) |
1665 |
- bonding fixes |
1666 |
- setsysfont: remove error (#100559) |
1667 |
- remove duplicate setting of network routes (#125450) |
1668 |
- vlan fixes (#107504, <hrunting@texas.net>) |
1669 |
- ifup-aliases: remove bogus route setting (#120908) |
1670 |
|
1671 |
* Tue May 25 2004 Bill Nottingham <notting@redhat.com> 7.57-1 |
1672 |
- readonly root fixes (<alexl@redhat.com>) |
1673 |
|
1674 |
* Tue May 25 2004 Karsten Hopp <karsten@redhat.de> 7.56-1 |
1675 |
- special TYPE for qeth devices to differenciate them from ethX |
1676 |
|
1677 |
* Mon May 24 2004 Bill Nottingham <notting@redhat.com> |
1678 |
- fix pppd vs. ppp typo in conflicts (#123680) |
1679 |
|
1680 |
* Fri May 21 2004 Bill Nottingham <notting@redhat.com> |
1681 |
- fix bridging confusing module order (#122848, <luto@myrealbox.com>) |
1682 |
- rc.d/rc.sysinit: don't mount cifs (#122501) |
1683 |
|
1684 |
* Tue May 18 2004 Karsten Hopp <karsten@redhat.de> 7.55-1 |
1685 |
- add support for ccwgroup devices on mainframe |
1686 |
|
1687 |
* Thu May 13 2004 Than Ngo <than@redhat.com> 7.54-1 |
1688 |
- add patch to enable PIE build of usernetctl |
1689 |
|
1690 |
* Fri May 7 2004 Jeremy Katz <katzj@redhat.com> - 7.53-1 |
1691 |
- little lvm tweak (#121963) |
1692 |
|
1693 |
* Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.52-1 |
1694 |
- ipv4 addresses are ints, not longs (#122479) |
1695 |
|
1696 |
* Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.51-1 |
1697 |
- get rid of LVM error when no volumes are defined (#121197) |
1698 |
- fix selinux short-circuit test (#121143, <michal@harddata.com>) |
1699 |
- /dev/mapper/control is a special file, check it accordingly (#121963) |
1700 |
- support ETHTOOL_OPTS on bonding slaves (#119430, <hrunting@texas.net>) |
1701 |
- handle multiple spaces correctly in rc.sysinit, network-functions |
1702 |
(#118583, <pallas@kadan.cz>) |
1703 |
- cleanup fd leaks, mem leaks, other bogosities |
1704 |
(#119987, <linux_4ever@yahoo.com>) |
1705 |
- rc.d/init.d/network: remove ipv6 bogosity (#114128) |
1706 |
- translation updates |
1707 |
|
1708 |
* Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> 7.50-1 |
1709 |
- fix LVM issues in rc.sysinit (#120458, #119975) |
1710 |
- deal with fixed racoon parser |
1711 |
- translation updates from translators |
1712 |
- fix USB loading (#120911) |
1713 |
|
1714 |
* Fri Mar 26 2004 Bill Nottingham <notting@redhat.com> 7.49-1 |
1715 |
- use alsa for mixer saving in halt |
1716 |
- don't umount /proc in halt (#118880) |
1717 |
- various translation updates from translators |
1718 |
|
1719 |
* Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.48-1 |
1720 |
- disable enforcing in emergency mode for now, relabel some commonly |
1721 |
mislabeled files on boot |
1722 |
|
1723 |
* Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.47-1 |
1724 |
- translation: catch more input strings (#106285, <mitr@volny.cz>) |
1725 |
- remove autologin from prefdm (#108969) |
1726 |
- return to rhgb after ./unconfigured (#109807, <jkeating@j2solutions.net>) |
1727 |
- handle iso15 in setsysfont (#110243) |
1728 |
- clean up samba & vmware in rc.sysinit (#113104) |
1729 |
- some sysconfig.txt documentation (#110427, #118063) |
1730 |
- fix bug in umount-on-halt (#113088, <giardina@airlab.elet.polimi.it>) |
1731 |
- handle CIFS in netfs (#115691) |
1732 |
- make sure hotplug isn't stuck unset (#116666, <aoliva@redhat.com>) |
1733 |
- handle network fs better in rc.sysinit (#111290) |
1734 |
- nomodules applies to usb/firewire too (#113278) |
1735 |
- ipsec fix (#116922, <felipe_alfaro@linuxmail.org>) |
1736 |
- make sure rc exits cleanly (#117827, <enrico.scholz@informatik.tu-chemnitz.de>) |
1737 |
- fsck root FS from initrd, for dynamic majors (#117575, <sct@redhat.com>) |
1738 |
|
1739 |
* Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com> |
1740 |
- Use ':' instead of '.' as separator for chown. |
1741 |
|
1742 |
* Mon Feb 2 2004 Bill Nottingham <notting@redhat.com> 7.46-1 |
1743 |
- some more rc.sysinit tweaks and refactoring |
1744 |
|
1745 |
* Fri Jan 30 2004 Bill Nottingham <notting@redhat.com> 7.45-1 |
1746 |
- fix rc.sysinit typo |
1747 |
- rc.d/init.d/network: clear out environment (#113937, #111584) |
1748 |
|
1749 |
* Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 7.44-1 |
1750 |
- NFSv4 support (<chucklever@bigfoot.com>, <steved@redhat.com>) |
1751 |
- handle 2.6-style 'install ethX ...' lines correctly |
1752 |
- mount sysfs by default |
1753 |
- time to clean up the cruft. remove: |
1754 |
- boot-time depmod |
1755 |
- linking of /boot/System.map to /boot/System.map-`uname -r` |
1756 |
- /var/log/ksyms.X |
1757 |
- libredhat-kernel support |
1758 |
|
1759 |
* Fri Jan 16 2004 Dan Walsh <dwalsh@redhat.com> 7.43-2 |
1760 |
- Remove selinux run_init code from service script. It is no longer needed. |
1761 |
|
1762 |
* Fri Dec 5 2003 Jeremy Katz <katzj@redhat.com> 7.43-1 |
1763 |
- basic lvm2 support |
1764 |
|
1765 |
* Tue Oct 28 2003 Bill Nottingham <notting@redhat.com> 7.42-1 |
1766 |
- show rhgb details on service failures |
1767 |
|
1768 |
* Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 7.41-1 |
1769 |
- tweak some rhgb interactions (#100894, #107725) |
1770 |
- fix dvorak keymap loading (#106854) |
1771 |
|
1772 |
* Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.40-1 |
1773 |
- add better fix to support nickname (#105785) |
1774 |
|
1775 |
* Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.39-1 |
1776 |
- add support nickname (#105785) |
1777 |
|
1778 |
* Fri Oct 17 2003 Bill Nottingham <notting@redhat.com> 7.38-1 |
1779 |
- rhgb updates, now pass 'rhgb' to use it, instead of passing 'nogui' |
1780 |
to disable it |
1781 |
|
1782 |
* Fri Oct 10 2003 Bill Nottingham <notting@redhat.com> 7.37-1 |
1783 |
- bridging updates (#104421, <dwmw2@redhat.com>) |
1784 |
|
1785 |
* Wed Oct 8 2003 Bill Nottingham <notting@redhat.com> 7.36-1 |
1786 |
- mount /dev/pts before starting rhgb |
1787 |
|
1788 |
* Wed Oct 1 2003 Bill Nottingham <notting@redhat.com> 7.35-1 |
1789 |
- load acpi modules on startup if necessary |
1790 |
- fix typo in ipsec comments & sysconfig.txt |
1791 |
|
1792 |
* Mon Sep 15 2003 Than Ngo <than@redhat.com> 7.34-1 |
1793 |
- use upsdrvctl to start the shutdown process |
1794 |
|
1795 |
* Mon Sep 15 2003 Bill Nottingham <notting@redhat.com> 7.33-1 |
1796 |
- ipsec fixes (#104227, <harald@redhat.com>) |
1797 |
- ppp fixes (#104128, #97845, #85447) |
1798 |
|
1799 |
* Thu Sep 11 2003 Bill Nottingham <notting@redhat.com> 7.32-1 |
1800 |
- fix ip calls for some device names (#104187) |
1801 |
- ipsec fixes |
1802 |
|
1803 |
* Fri Sep 5 2003 Bill Nottingham <notting@redhat.com> 7.31-1 |
1804 |
- fix bonding + dhcp (#91399) |
1805 |
- fix typo (#103781) |
1806 |
- sysconfig/network-scripts/ifup: fix use of local |
1807 |
|
1808 |
- fix shutdown with NFS root (#100556, <Julian.Blake@cern.ch>) |
1809 |
- remove /var/run/confirm when done with /etc/rc (#100898) |
1810 |
- ipcalc: fix some memory handling (#85478, <miked@ed.ac.uk>) |
1811 |
- handle sorting > 10 network devices (#98209) |
1812 |
- unset ONPARENT after use (#101384) |
1813 |
- random other fixes |
1814 |
- bridging support (<dwmw2@redhat.com>) |
1815 |
|
1816 |
* Fri Aug 15 2003 Bill Nottingham <notting@redhat.com> 7.30-1 |
1817 |
- IPv6 updates (#86210, #91375, <pekkas@netcore.fi>) |
1818 |
|
1819 |
* Fri Aug 8 2003 Bill Nottingham <notting@redhat.com> 7.29-1 |
1820 |
- setsysfont: don't echo to /dev/console (#102004) |
1821 |
- fix ethernet device renaming deadlock (#101566) |
1822 |
- consoletype: don't return 'vt' on vioconsole (#90465) |
1823 |
- ifup: fix short-circuit (#101445) |
1824 |
|
1825 |
* Fri Jul 18 2003 Nalin Dahyabhai <nalin@redhat.com> |
1826 |
- ifup-routes: pass the interface name to handle_file() so that we don't try |
1827 |
to use the routes file's name as an interface name |
1828 |
|
1829 |
* Wed Jul 9 2003 Bill Nottingham <notting@redhat.com> 7.28-1 |
1830 |
- switch from $CONFIG.keys to keys-$CONFIG |
1831 |
|
1832 |
* Tue Jul 8 2003 Bill Nottingham <notting@redhat.com> 7.27-1 |
1833 |
- add a check to consoletype for the current foreground console |
1834 |
- use it when running unicode_start (#98753) |
1835 |
|
1836 |
* Wed Jul 2 2003 Bill Nottingham <notting@redhat.com> 7.26-1 |
1837 |
- ipsec support (see sysconfig.txt, ifup-ipsec) |
1838 |
- read $CONFIG.keys, for non-world-readable keys |
1839 |
- allow default window size for routes to be set with WINDOW= (#98112) |
1840 |
- support setting device options with ethtool opts |
1841 |
- fix s390 bootup spew (#98078) |
1842 |
- support renaming interfaces with nameif based on hwaddr |
1843 |
|
1844 |
* Mon Jun 23 2003 Bill Nottingham <notting@redhat.com> 7.25-1 |
1845 |
- fix DNS punching in the case of other rules for the DNS server |
1846 |
(#97686, <martin@zepler.org>) |
1847 |
- initlog, ppp-watch, and usernetctl tweaks (<linux_4ever@yahoo.com>) |
1848 |
- fix grep for mingetty (#97188) |
1849 |
- fix rhgb-client bad syntax |
1850 |
- change network device searching, use correct naming, fix route issues |
1851 |
(<harald@redhat.com>) |
1852 |
- other random tweaks |
1853 |
|
1854 |
* Fri May 23 2003 Bill Nottingham <notting@redhat.com> 7.24-1 |
1855 |
- now even still yet more tweaks for graphical boot |
1856 |
|
1857 |
* Thu May 22 2003 Bill Nottingham <notting@redhat.com> 7.23-1 |
1858 |
- even still yet more tweaks for graphical boot |
1859 |
|
1860 |
* Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.22-1 |
1861 |
- still yet more tweaks for graphical boot |
1862 |
|
1863 |
* Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.21-1 |
1864 |
- yet more tweaks for graphical boot |
1865 |
|
1866 |
* Fri May 2 2003 Bill Nottingham <notting@redhat.com> 7.20-1 |
1867 |
- more tweaks for graphical boot |
1868 |
|
1869 |
* Wed Apr 30 2003 Bill Nottingham <notting@redhat.com> 7.18-1 |
1870 |
- some tweaks for graphical boot |
1871 |
|
1872 |
* Mon Apr 21 2003 Florian La Roche <Florian.LaRoche@redhat.de> |
1873 |
- initscripts-s390.patch: remove not needed parts about PNP= |
1874 |
- inittab.390: sync with normal version |
1875 |
- rc.sysinit: remove two further calls to /sbin/consoletype with $CONSOLETYPE |
1876 |
|
1877 |
* Fri Apr 18 2003 Florian La Roche <Florian.LaRoche@redhat.de> |
1878 |
- sysconfig/init.s390: set LOGLEVEL=3 as for other archs |
1879 |
- rc.d/init.d/network, rc.d/rc: change confirmation mode to |
1880 |
not use an environment variable |
1881 |
- rc.d/init.d/functions: make strstr() even shorter, remove old |
1882 |
"case" version that has been already commented out |
1883 |
- rc.d/rc.sysinit: |
1884 |
- no need to set NETWORKING=no, it is not used/exported |
1885 |
- do not export BOOTUP |
1886 |
- delete two "sleep 1" calls that wants to add time to go |
1887 |
into confirmation mode. There is enough time to press a |
1888 |
key anyway or use "confirm" in /proc/cmdline. |
1889 |
- read /proc/cmdline into a variable |
1890 |
- use strstr() to search in /proc/cmdline |
1891 |
- add "forcefsck" as possible option in /proc/cmdline |
1892 |
- while removing lock files, no need to call `basename` |
1893 |
- add unamer=`uname -r` and reduce number of forks |
1894 |
- do not fork new bash to create /var/log/ksyms.0 |
1895 |
|
1896 |
* Thu Apr 03 2003 Karsten Hopp <karsten@redhat.de> 7.15-1 |
1897 |
- Mainframe has no /dev/ttyX devices and no mingetty, don't |
1898 |
initialize them. This gave error messages during startup |
1899 |
|
1900 |
* Mon Mar 17 2003 Nalin Dahyabhai <nalin@redhat.com> |
1901 |
- init.d/network: don't advertise "probe: true" in the header if we don't |
1902 |
recognize "probe" as an argument |
1903 |
|
1904 |
* Wed Mar 12 2003 Bill Nottingham <notting@redhat.com> 7.14-1 |
1905 |
* - do not handle changed chain name; change was reverted |
1906 |
|
1907 |
* Tue Feb 25 2003 Bill Nottingham <notting@redhat.com> 7.13-1 |
1908 |
- handle 7.x SYSFONTACM settings in setsysfont (#84183) |
1909 |
|
1910 |
* Mon Feb 24 2003 Bill Nottingham <notting@redhat.com> 7.12-1 |
1911 |
- handle changed chain name |
1912 |
- init vts used in all cases |
1913 |
|
1914 |
* Fri Feb 21 2003 Bill Nottingham <notting@redhat.com> 7.10-1 |
1915 |
- handle LANGUAGE specially for zh_CN.GB18030 and gdm (#84773) |
1916 |
|
1917 |
* Thu Feb 20 2003 Bill Nottingham <notting@redhat.com> 7.09-1 |
1918 |
- initialize two ttys past # of mingettys (for GDM) |
1919 |
- fix zeroconf route |
1920 |
- redhat-config-network writes $NAME.route for some static routes |
1921 |
(e.g., ppp); handle that (#84193) |
1922 |
|
1923 |
* Tue Feb 18 2003 Bill Nottingham <notting@redhat.com> 7.08-1 |
1924 |
- load keybdev & mousedev even if hid is already loaded/static |
1925 |
- run fewer scripts through action (#49670, #75279, #81531) |
1926 |
|
1927 |
* Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 7.07-1 |
1928 |
- fix nicknames & profiles (#82246) |
1929 |
- fix check_device_down (#83780, <pzb@datstacks.com>) |
1930 |
- vlan fixes (<tis@foobar.fi>) |
1931 |
- fix groff macros (#83531, <tsekine@sdri.co.jp>) |
1932 |
- various updated translations |
1933 |
- fix checkpid for multiple pids (#83401) |
1934 |
|
1935 |
* Fri Jan 31 2003 Bill Nottingham <notting@redhat.com> 7.06-1 |
1936 |
- 802.1Q VLAN support (<tis@foobar.fi>, #82593) |
1937 |
- update translations |
1938 |
|
1939 |
* Thu Jan 30 2003 Bill Nottingham <notting@redhat.com> 7.05-1 |
1940 |
- fix syntax error in rc.sysinit when there are fsck errors |
1941 |
- fix zh_TW display on console (#82235) |
1942 |
|
1943 |
* Wed Jan 15 2003 Bill Nottingham <notting@redhat.com> 7.04-1 |
1944 |
- tweak some translatable strings |
1945 |
- fix for rc.sysinit on machines that pass arguments to mingetty |
1946 |
(<nalin@redhat.com>) |
1947 |
|
1948 |
* Tue Jan 14 2003 Bill Nottingham <notting@redhat.com> 7.03-1 |
1949 |
- move system font setting sooner (<milan.kerslager@pslib.cz>) |
1950 |
- fix link checking for dhcp, use both ethtool and mii-tool |
1951 |
- fix CJK text on the console, and locale-archive held open |
1952 |
on shutdown |
1953 |
- IPv6 updates <pekkas@netcore.fi>, <pb@bieringer.de> |
1954 |
- speedup tweaks (<drepper@redhat.com>) |
1955 |
- use glib2 for ppp-watch (#78690, <kisch@mindless.com>) |
1956 |
- add zeroconf route (#81738) |
1957 |
- fix ifup-ppp for dial-on-demand, and onboot (<goeran@uddeborg.pp.se>) |
1958 |
- tweak raidtab parsing, don't worry about not-in-fstab RAID devices |
1959 |
(#71087, #78467, <aja@mit.edu>) |
1960 |
- don't automatically bring up aliases if 'ONPARENT=no' is set (#78992) |
1961 |
- getkey cleanups/tweaks (#76071, <ben@enchantedforest.org>) |
1962 |
- rework halt_get_remaining (#76831, <michal@harddata.com>) |
1963 |
- ipcalc: fix calculation of /32 addresses (#76646) |
1964 |
- various other tweaks and fixes |
1965 |
|
1966 |
* Fri Dec 20 2002 Bill Nottingham <notting@redhat.com> 7.01-1 |
1967 |
- %%config(noreplace) inittab |
1968 |
|
1969 |
* Tue Dec 17 2002 Nalin Dahyabhai <nalin@redhat.com> |
1970 |
- add a "nofirewire" option to /etc/rc.sysinit, analogous to "nousb" |
1971 |
|
1972 |
* Tue Dec 17 2002 Bill Nottingham <notting@redhat.com> 7.00-1 |
1973 |
- tweaks for potential GUI bootup |
1974 |
- loop checking for network link state, don't unilterally wait five |
1975 |
seconds |
1976 |
|
1977 |
* Fri Dec 14 2002 Karsten Hopp <karsten@redhat.de> 6.99-1 |
1978 |
- remove call to /sbin/update for S/390, too |
1979 |
|
1980 |
* Wed Dec 11 2002 Bill Nottingham <notting@redhat.com> 6.98-1 |
1981 |
- remove call to /sbin/update |
1982 |
- fix netprofile |
1983 |
|
1984 |
* Mon Dec 2 2002 Bill Nottingham <notting@redhat.com> 6.97-1 |
1985 |
- IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>) |
1986 |
- devlabel support (<Gary_Lerhaupt@Dell.com>) |
1987 |
- do lazy NFS umounts |
1988 |
|
1989 |
* Tue Nov 19 2002 Florian La Roche <Florian.LaRoche@redhat.de> |
1990 |
- correctly remove non-packaged files for mainframe |
1991 |
|
1992 |
* Tue Nov 12 2002 Bill Nottingham <notting@redhat.com> 6.96-1 |
1993 |
- fix various static-routes brokeness (#74317, #74318, #74320, #76619, |
1994 |
#75604) |
1995 |
- fix handling of SYSFONTACM in setsysfont (#75662) |
1996 |
- fix lang.csh for CJK (#76908, <ynakai@redhat.com>) |
1997 |
- IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>) |
1998 |
- other minor tweaks |
1999 |
|
2000 |
* Mon Sep 16 2002 Than Ngo <than@redhat.com> |
2001 |
- owns directory /etc/ppp/peers (bug #74037) |
2002 |
|
2003 |
* Wed Sep 4 2002 Bill Nottingham <notting@redhat.com> 6.95-1 |
2004 |
- fix syntax error in duplicate route removal section of ifup |
2005 |
|
2006 |
* Wed Sep 4 2002 Nalin Dahyabhai <nalin@redhat.com> 6.94-1 |
2007 |
- fix syntax error calling unicode_start when SYSFONTACM isn't set |
2008 |
|
2009 |
* Mon Sep 2 2002 Bill Nottingham <notting@redhat.com> |
2010 |
- fix calling of unicode_start in lang.{sh,csh} |
2011 |
- ipv6 tweak |
2012 |
|
2013 |
* Wed Aug 28 2002 Bill Nottingham <notting@redhat.com> |
2014 |
- don't infinite loop on ifdown |
2015 |
- remove disabling of DMA; this can cause problems |
2016 |
- move swap startup to after LVM (#66588) |
2017 |
|
2018 |
* Tue Aug 20 2002 Bill Nottingham <notting@redhat.com> |
2019 |
- don't cycle through eth0-eth9 on dhcp link check (#68127) |
2020 |
- don't retry indefinitely on ppp startup |
2021 |
- activate network profile passed on kernel commandline via netprofile= |
2022 |
- fix iptables invocations again |
2023 |
- translation refresh |
2024 |
|
2025 |
* Wed Aug 14 2002 Bill Nottingham <notting@redhat.com> |
2026 |
- fix silly typo in rc.sysinit |
2027 |
- increase timeout for link to 5 seconds (#70545) |
2028 |
|
2029 |
* Tue Aug 13 2002 Bill Nottingham <notting@redhat.com> |
2030 |
- require /etc/redhat-release (#68903) |
2031 |
- fix tty2-tty6 (sort of) |
2032 |
- fix iptables invocations (#70807, #71201, #68368) |
2033 |
- other minor tweaks |
2034 |
|
2035 |
* Wed Jul 24 2002 Bill Nottingham <notting@redhat.com> |
2036 |
- fix unicode checks in rc.sysinit, lang.{sh,csh} to handle UTF-8@euro |
2037 |
|
2038 |
* Tue Jul 16 2002 Bill Nottingham <notting@redhat.com> |
2039 |
- use iptables, not ipchains |
2040 |
|
2041 |
* Tue Jul 16 2002 Florian La Roche <Florian.LaRoche@redhat.de> |
2042 |
- /sbin/service: set PATH before calling startup scripts |
2043 |
HOME and TERM are also set during bootup, but they should not make |
2044 |
a difference for well-written daemons. |
2045 |
|
2046 |
* Mon Jul 15 2002 Bill Nottingham <notting@redhat.com> |
2047 |
- fix boot-time cleanup of /var |
2048 |
- update po files |
2049 |
|
2050 |
* Thu Jul 11 2002 Florian La Roche <Florian.LaRoche@redhat.de> |
2051 |
- /etc/init.d/functions: |
2052 |
daemon(): avoid starting another bash |
2053 |
killproc(): avoid starting another bash for the default case |
2054 |
- do not call "insmod -p" before loading the "st" module |
2055 |
|
2056 |
* Tue Jul 09 2002 Florian La Roche <Florian.LaRoche@redhat.de> |
2057 |
- allow an option for ups poweroff #68123 |
2058 |
- change grep for ONBOOT= #63903 |
2059 |
- allow building with a cross-compiler #64362,#64255 |
2060 |
- faster check in network-functions:check_default_route() |
2061 |
- better checks for backup files |
2062 |
- drastically reduce the number of consoletype invocations |
2063 |
- do not export "GATEWAY" in network-functions |
2064 |
- code cleanups in rc.sysinit |
2065 |
|
2066 |
* Fri Jul 05 2002 Florian La Roche <Florian.LaRoche@redhat.de> |
2067 |
- rc.sysinit: do not load raid modules unless /etc/raidtab exists |
2068 |
- many cleanups for more consistent shell programming and also |
2069 |
many smaller speedups within network scripts, no un-necessary sourcing |
2070 |
of files etc |
2071 |
- nearly re-code /etc/rc.d/rc |
2072 |
|
2073 |
* Thu Jun 27 2002 Bill Nottingham <notting@redhat.com> |
2074 |
- a couple minor unicode tweaks in rc.sysinit |
2075 |
|
2076 |
* Wed Jun 26 2002 Bill Nottingham <notting@redhat.com> |
2077 |
- move /proc/bus/usb mount, in case USB is in the initrd |
2078 |
|
2079 |
* Wed Jun 26 2002 Preston Brown <pbrown@redhat.com> |
2080 |
- don't try to set wireless freq/channel when in Managed mode |
2081 |
|
2082 |
* Wed Jun 26 2002 Florian La Roche <Florian.LaRoche@redhat.de> |
2083 |
- start some sh coding cleanups |
2084 |
- change to /etc/init.d/functions |
2085 |
- eliminate some un-necessary PATH settings |
2086 |
- eliminate some TEXTDOMAIN settings |
2087 |
|
2088 |
* Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 6.78-1 |
2089 |
- fix UTF-8 checks |
2090 |
|
2091 |
* Wed Jun 05 2002 Than Ngo <than@redhat.com> 6.77-1 |
2092 |
- fixed a bug in setting defaultgateway |
2093 |
|
2094 |
* Thu May 30 2002 Bill Nottingham <notting@redhat.com> 6.76-1 |
2095 |
- call unicode_start in lang.{sh,csh}, setsysfont when necessary |
2096 |
|
2097 |
* Tue May 28 2002 Bill Nottingham <notting@redhat.com> 6.75-1 |
2098 |
- add check for link for dhcp back in |
2099 |
|
2100 |
* Fri Apr 19 2002 Bill Nottingham <notting@redhat.com> 6.67-1 |
2101 |
- fix silly cut&paste bug in hdparm settings in initscripts |
2102 |
|
2103 |
* Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 6.65-1 |
2104 |
- Update translations |
2105 |
|
2106 |
* Sun Apr 14 2002 Bill Nottingham <notting@redhat.com> 6.64-1 |
2107 |
- make sure chatdbg is set before using it (#63448, <Bertil@Askelid.com>) |
2108 |
- allow tweaking of more devices with hdparm (#53511), and |
2109 |
tweak non-disk devices iff they explicitly have a config file |
2110 |
for that device (#56575, #63415) |
2111 |
- some translation updates |
2112 |
|
2113 |
* Fri Apr 12 2002 Bill Nottingham <notting@redhat.com> 6.63-1 |
2114 |
- ipcalc cleanups (#58410) |
2115 |
- quit stripping binaries |
2116 |
- do LVM init after RAID init too (#63238) |
2117 |
- export all locale variables (#56142) |
2118 |
- run sysctl -p after network init as well |
2119 |
|
2120 |
* Tue Apr 09 2002 Bill Nottingham <notting@redhat.com> 6.62-1 |
2121 |
- delete X/VNC locks on startup (#63035) |
2122 |
- shut up DMA disabling, move it to after ide-scsi (#62873, #62956) |
2123 |
- use full path to /sbin/ifconfig (#59457) |
2124 |
- /sbin/service: change to root directory before staring/stopping; |
2125 |
also sanitize environment |
2126 |
|
2127 |
* Tue Apr 02 2002 Bill Nottingham <notting@redhat.com> 6.61-1 |
2128 |
- when disabling DMA, don't use things in /usr |
2129 |
|
2130 |
* Thu Mar 28 2002 Bill Nottingham <notting@redhat.com> 6.60-1 |
2131 |
- disable DMA on CD-ROMs at bootup |
2132 |
|
2133 |
* Wed Mar 27 2002 Bill Nottingham <notting@redhat.com> 6.59-1 |
2134 |
- add local hook to halt |
2135 |
|
2136 |
* Fri Mar 15 2002 Than Ngo <than@redhat.com> 6.58-1 |
2137 |
- fix usernetctl for working with neat |
2138 |
|
2139 |
* Thu Mar 14 2002 Bill Nottingham <notting@redhat.com> 6.57-1 |
2140 |
- update translations |
2141 |
|
2142 |
* Tue Mar 12 2002 Bill Nottingham <notting@redhat.com> 6.56-1 |
2143 |
- use nameif for interfaces where we don't agree on HWADDR with the |
2144 |
config file (<harald@redhat.com>) |
2145 |
- LSB support tweaks |
2146 |
|
2147 |
* Tue Mar 12 2002 Mike A. Harris <mharris@redhat.com> 6.55-1 |
2148 |
- Removed process accounting stuff from rc.sysinit and halt scripts as it is |
2149 |
now handled by the psacct initscript in the psacct package |
2150 |
|
2151 |
* Thu Feb 28 2002 Bill Nottingham <notting@redhat.com> |
2152 |
- conflict with older psacct |
2153 |
|
2154 |
* Fri Feb 22 2002 Bill Nottingham <notting@redhat.com> |
2155 |
- fix invocation of need_hostname (#58946), a couple other minor tweaks |
2156 |
|
2157 |
* Tue Feb 12 2002 Mike A. Harris <mharris@redhat.com> |
2158 |
- rc.sysinit: changed /var/log/pacct to /var/account/pacct for FHS 2.2 compliance |
2159 |
|
2160 |
* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com> |
2161 |
- run /bin/setfont, not /usr/bin/setfont (kbd) |
2162 |
- lots-o-random bugfixes/tweaks (see ChangeLog) |
2163 |
|
2164 |
* Thu Jan 17 2002 Michael K. Johnson <johnsonm@redhat.com> |
2165 |
- Added support for libredhat-kernel.so.* symlink handling |
2166 |
|
2167 |
* Wed Nov 7 2001 Than Ngo <than@redhat.com> |
2168 |
- fix bug in setting netmask on s390/s390x (bug #55421) |
2169 |
nmbd daemon works now ;-) |
2170 |
|
2171 |
* Fri Nov 2 2001 Than Ngo <than@redhat.com> |
2172 |
- fixed typo bug ifup-ippp |
2173 |
|
2174 |
* Mon Oct 29 2001 Than Ngo <than@redhat.com> |
2175 |
- fix bug in channel bundling if MSN is missed |
2176 |
- support DEBUG option |
2177 |
|
2178 |
* Wed Sep 19 2001 Than Ngo <than@redhat.com> |
2179 |
- don't show user name by DSL connection |
2180 |
|
2181 |
* Sat Sep 8 2001 Bill Nottingham <notting@redhat.com> |
2182 |
- don't run hwclock --adjust on a read-only filesystem |
2183 |
|
2184 |
* Thu Sep 6 2001 Than Ngo <than@redhat.com> |
2185 |
* update initscripts-s390.patch for s390/s390x |
2186 |
|
2187 |
* Wed Sep 5 2001 Bill Nottingham <notting@redhat.com> |
2188 |
- translation updates |
2189 |
- quota and hwclock tweaks (<pbrown@redhat.com>) |
2190 |
|
2191 |
* Mon Sep 3 2001 Bill Nottingham <notting@redhat.com> |
2192 |
- fix severe alias problems (#52882) |
2193 |
|
2194 |
* Mon Sep 3 2001 Than Ngo <than@redhat.com> |
2195 |
- don't start pppbind if encapsulation is rawip (bug #52491) |
2196 |
|
2197 |
* Sun Sep 2 2001 Than Ngo <than@redhat.com> |
2198 |
- add ISDN patches from pekkas@netcore.fi and pb@bieringer.de (bug #52491) |
2199 |
- fix handling of ISDN LSZ Compresssion |
2200 |
|
2201 |
* Thu Aug 30 2001 Than Ngo <than@redhat.com> |
2202 |
- po/de.po: fix typo bug, lo instead 1o |
2203 |
|
2204 |
* Wed Aug 29 2001 David Sainty <dsainty@redhat.com> |
2205 |
- fix ifdown for multiple dhcpcd interfaces |
2206 |
|
2207 |
* Wed Aug 29 2001 Than Ngo <than@redhat.com> |
2208 |
- fix ISDN dial on demand bug |
2209 |
- fix typo bug in network-functions |
2210 |
|
2211 |
* Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com> |
2212 |
- document /etc/sysconfig/authconfig |
2213 |
|
2214 |
* Tue Aug 28 2001 Bill Nottingham <notting@redhat.com> 6.31-1 |
2215 |
- message un-tweaks (<johnsonm@redhat.com>) |
2216 |
- make getkey more useful, fix some of the autofsck stuff (<johnsonm@redhat.com>) |
2217 |
|
2218 |
* Mon Aug 27 2001 Bill Nottingham <notting@redhat.com> |
2219 |
- autofsck support, archive modules/symbol info (<johnsonm@redhat.com>) |
2220 |
|
2221 |
* Mon Aug 27 2001 Than Ngo <than@redhat.com> |
2222 |
- fix some typo bugs in ifup-ippp <ubeck@c3pdm.com> |
2223 |
|
2224 |
* Fri Aug 24 2001 Bill Nottingham <notting@redhat.com> |
2225 |
- sort output of halt_get_remaining (#52180) |
2226 |
- fix bad translation (#52503) |
2227 |
|
2228 |
* Wed Aug 22 2001 Bill Nottingham <notting@redhat.com> |
2229 |
- fix ifup-wireless (#52135) |
2230 |
|
2231 |
* Wed Aug 22 2001 Than Ngo <than@redhat.com> |
2232 |
- fix return code of isdnctrl (bug #52225) |
2233 |
|
2234 |
* Tue Aug 21 2001 Than Ngo <than@redhat.com> |
2235 |
- fix Bringing up isdn device again. It works now correct. |
2236 |
|
2237 |
* Tue Aug 21 2001 Than Ngo <than@redhat.com> |
2238 |
- fix shutdown/Bringing up isdn device |
2239 |
|
2240 |
* Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com> |
2241 |
- fix syntax error in lang.csh |
2242 |
- set codeset by echoing to /dev/tty instead of /proc/self/fd/15 |
2243 |
|
2244 |
* Sun Aug 19 2001 Bill Nottingham <notting@redhat.com> |
2245 |
- fix a broken call to check_device_down |
2246 |
- make all loopback addresses have host scope, not global scope. |
2247 |
Fixes #49374, possibly others |
2248 |
|
2249 |
* Wed Aug 15 2001 Bill Nottingham <notting@redhat.com> |
2250 |
- add is_available() network function, use it; cleans up ugly modprobe |
2251 |
error messages |
2252 |
- update translation info |
2253 |
- fix #51787 |
2254 |
|
2255 |
* Wed Aug 15 2001 Bernhard Rosenkraenzer <bero@redhat.com> |
2256 |
- adjust s390 patch |
2257 |
- fix up ifup-ctc and mkkerneldoth.s390 (both are s390 specific) |
2258 |
|
2259 |
* Mon Aug 13 2001 Yukihiro Nakai <ynakai@redhat.com> |
2260 |
- don't display Chinese Korean if we aren't on a pty |
2261 |
|
2262 |
* Sat Aug 11 2001 Florian La Roche <Florian.LaRoche@redhat.de> |
2263 |
- adjust s390 patches to current sources |
2264 |
|
2265 |
* Fri Aug 10 2001 Bill Nottingham <notting@redhat.com> |
2266 |
- use GDM_LANG if it's set in lang.sh/lang.csh (#51432, <otaylor@redhat.com>) |
2267 |
|
2268 |
* Fri Aug 10 2001 Than Ngo <than@redhat.com> |
2269 |
- don't set MSN if it' empty (it's now optional) |
2270 |
- don't give login name as a cmdline-option (Bug #23066) |
2271 |
- remove peer device file if ppp connection is down |
2272 |
- fix channel bundling |
2273 |
|
2274 |
* Thu Aug 9 2001 Bill Nottingham <notting@redhat.com> |
2275 |
- require SysVinit (#51335) |
2276 |
|
2277 |
* Wed Aug 8 2001 Bill Nottingham <notting@redhat.com> |
2278 |
- tweak raittab grep slightly (#51231) |
2279 |
- allow resetting of default route for DHCP addresses (#48994) |
2280 |
- save resolv.conf in ifup-ppp for restoration by ifdown-post (#50759) |
2281 |
- when munging firewall rules for dns, only allow dest ports 1025-65535 (#44038, #40833) |
2282 |
- allow shell characters in ppp names (#43719) |
2283 |
- allow setting DHCP arguments, just kill dhcpcd instead of using -k (#46492) |
2284 |
- behave sanely if ifup called when dhcpcd is running (#49392, #51038) |
2285 |
|
2286 |
* Mon Aug 6 2001 Bill Nottingham <notting@redhat.com> |
2287 |
- honor HOTPLUG=no if running under hotplug (#47483) |
2288 |
- use awk, not grep, for modprobe -c checks (#49616) |
2289 |
- don't print ugly messages for the case where the device doesn't exist, |
2290 |
and there is no alias (i.e., PCMCIA ONBOOT=yes (#various)) |
2291 |
- run kbdconfig in /.unconfigured mode (#43941) |
2292 |
- use a bigger buffer size argument to dmesg (#44024) |
2293 |
- detach loopback devices on shutdown (#43919, #45826) |
2294 |
|
2295 |
* Thu Aug 2 2001 Bill Nottingham <notting@redhat.com> |
2296 |
- fix halt_get_remaining() (#50720) |
2297 |
|
2298 |
* Tue Jul 31 2001 Bill Nottingham <notting@redhat.com> |
2299 |
- mount all FS types r/o at halt (#50461) |
2300 |
- don't use mii-tool at all (#various) |
2301 |
|
2302 |
* Thu Jul 26 2001 Bill Nottingham <notting@redhat.com> |
2303 |
- don't use kbd commands in setsysfont now that we've switched back to |
2304 |
console-tools (#50075) |
2305 |
- sleep in check_link_down; some devices require it |
2306 |
- only bring link down if check_link_down fails |
2307 |
|
2308 |
* Wed Jul 25 2001 Bill Nottingham <notting@redhat.com> |
2309 |
- set link up before checking with mii-tool (#49949) |
2310 |
|
2311 |
* Tue Jul 24 2001 Bill Nottingham <notting@redhat.com> |
2312 |
- update netdev stuff to use _netdev |
2313 |
- IPv6 updates (<pekkas@netcore.fi>) |
2314 |
- fix downing of devices with static IPs (#49777, #49783) |
2315 |
- put ifcfg-lo back in the package |
2316 |
|
2317 |
* Fri Jul 20 2001 Preston Brown <pbrown@redhat.com> 6.06 |
2318 |
- updates for quota |
2319 |
|
2320 |
* Tue Jul 17 2001 Bill Nottingham <notting@redhat.com> |
2321 |
- own some more directories |
2322 |
- use -O nonetdev, require mount package that understands this |
2323 |
- fix do_netreport when called as non-root |
2324 |
- remove ip addresses from interfaces on ifdown |
2325 |
- oops, fix ifup/ifdown |
2326 |
|
2327 |
* Mon Jul 16 2001 Than Ngo <than@redhat.com> |
2328 |
- fix country_code for ISDN |
2329 |
|
2330 |
* Tue Jul 9 2001 Bill Nottingham <notting@redhat.com> |
2331 |
- fix '--check' |
2332 |
- prereq sh-utils (#43065) |
2333 |
- fix some invocations of reboot/halt (#45966) |
2334 |
- fix typo in ifup-wireless |
2335 |
- don't muck with /etc/issue each boot |
2336 |
- big IPv6 update (<pekkas@netcore.fi>) |
2337 |
|
2338 |
* Fri Jul 6 2001 Trond Eivind Glomsrød <teg@redhat.com> |
2339 |
- Add new directories required by new network tool |
2340 |
|
2341 |
* Thu Jul 05 2001 Karsten Hopp <karsten@redhat.de> |
2342 |
- disable hwclock on S390 (no such executable) |
2343 |
- Fix up kernel versioning on binary-only modules (S390) |
2344 |
- don't use newt scripts on S390 console |
2345 |
|
2346 |
* Sat Jul 01 2001 Trond Eivind Glomsrød <teg@redhat.com> |
2347 |
- reenable pump, but make sure dhcpcd is the default. This |
2348 |
way, upgrades of systems without dhcpcd has a better chance at |
2349 |
working. |
2350 |
|
2351 |
* Thu Jun 28 2001 Trond Eivind Glomsrød <teg@redhat.com> |
2352 |
- Disable pump completely |
2353 |
|
2354 |
* Wed Jun 27 2001 Than Ngo <than@redhat.com> |
2355 |
- fix pap/chap authentication for syncppp |
2356 |
- support ippp options |
2357 |
|
2358 |
* Mon Jun 25 2001 Bill Nottingham <notting@redhat.com> |
2359 |
- add ifup-wireless |
2360 |
|
2361 |
* Fri Jun 22 2001 Than Ngo <than@redhat.com> |
2362 |
- add support xDSL |
2363 |
|
2364 |
* Thu Jun 21 2001 Bill Nottingham <notting@redhat.com> |
2365 |
- more networking script fixes (#45364) |
2366 |
- add stuff for unmounting /initrd |
2367 |
|
2368 |
* Thu Jun 21 2001 Than Ngo <than@redhat.com> |
2369 |
- add support ISDN |
2370 |
|
2371 |
* Wed Jun 20 2001 Bill Nottingham <notting@redhat.com> |
2372 |
- fix extremely broken new network scripts |
2373 |
|
2374 |
* Wed Jun 20 2001 Bill Nottingham <notting@redhat.com> |
2375 |
- bump version to 5.89 |
2376 |
- make it build |
2377 |
|
2378 |
* Thu May 17 2001 Bill Nottingham <notting@redhat.com> |
2379 |
- don't run ifup ppp0 if ppp-watch gets SIGINT (#40585, ak@cave.hop.stu.neva.ru) |
2380 |
- fix do_netreport (#37716, #39603 <crlf@aeiou.pt>) |
2381 |
|
2382 |
* Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com> |
2383 |
- copyright: GPL -> license: GPL |
2384 |
- fix a syntax error in lang.csh |
2385 |
- skip commented-out i18n configuration lines in lang.csh |
2386 |
|
2387 |
* Fri May 11 2001 Preston Brown <pbrown@redhat.com> |
2388 |
- new network-scripts infrastructure; ifcfg-lo moved to /etc/sysconfig/networking |
2389 |
|
2390 |
* Wed May 2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.86-1 |
2391 |
- support kbd in setsysfont |
2392 |
- bzip2 source |
2393 |
|
2394 |
* Wed Apr 25 2001 Florian La Roche <Florian.LaRoche@redhat.de> |
2395 |
- add further s390 changes: |
2396 |
- ifup-iucv |
2397 |
- mkkerneldoth.s390 |
2398 |
|
2399 |
* Tue Apr 24 2001 Than Ngo <than@redhat.com> |
2400 |
- add shutdown UPS into halt (bug #34312) |
2401 |
|
2402 |
* Sat Apr 7 2001 Preston Brown <pbrown@redhat.com> |
2403 |
- broke out kernel.h updater from rc.sysinit into /sbin/mkkerneldoth |
2404 |
|
2405 |
* Fri Apr 6 2001 Bill Nottingham <notting@redhat.com> |
2406 |
- be a little more careful in do_netreport (#34933) |
2407 |
|
2408 |
* Tue Apr 3 2001 Bill Nottingham <notting@redhat.com> |
2409 |
- set umask explicitly to 022 in /etc/init.d/functions |
2410 |
|
2411 |
* Mon Apr 2 2001 Bill Nottingham <notting@redhat.com> |
2412 |
- fix segfault in usernetctl (#34353) |
2413 |
|
2414 |
* Mon Mar 26 2001 Bill Nottingham <notting@redhat.com> |
2415 |
- don't print errors in /etc/init.d/network if kernel.hotplug doesn't exist |
2416 |
|
2417 |
* Thu Mar 22 2001 Erik Troan <ewt@redhat.com> |
2418 |
- take advantage of new swapon behaviors |
2419 |
|
2420 |
* Wed Mar 14 2001 Bill Nottingham <notting@redhat.com> |
2421 |
- add cipe interfaces last (#31597) |
2422 |
|
2423 |
* Tue Mar 13 2001 Bill Nottingham <notting@redhat.com> |
2424 |
- fix typo in ifup (#31627) |
2425 |
- update translation source |
2426 |
|
2427 |
* Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com> |
2428 |
- fix typo in rc.sysinit |
2429 |
- fix ifup-routes not setting DEVICE properly |
2430 |
|
2431 |
* Mon Mar 12 2001 Preston Brown <pbrown@redhat.com> |
2432 |
- Work properly with new quota utilities |
2433 |
|
2434 |
* Mon Mar 5 2001 Bill Nottingham <notting@redhat.com> |
2435 |
- IPv6 fixes (#30506) |
2436 |
- make static-routes handling more sane and consistent (#29500, #29549) |
2437 |
- handle multiple USB controllers *correctly* |
2438 |
|
2439 |
* Wed Feb 28 2001 Nalin Dahyabhai <nalin@redhat.com> |
2440 |
- usernetctl, ppp-watch: cleanups |
2441 |
- netreport: use O_NOFOLLOW |
2442 |
- ifup-ppp: let ppp-watch watch over demand-dialed connections (#28927) |
2443 |
|
2444 |
* Tue Feb 27 2001 Bill Nottingham <notting@redhat.com> |
2445 |
- don't run isapnp on isapnp-enabled 2.4 kernels (part of #29450) |
2446 |
- disable hotplug during network initscript |
2447 |
- don't munge wireless keys in ifup; that will be done with the |
2448 |
PCMCIA wireless stuff |
2449 |
- run sndconfig --mungepnp for non-native-isapnp soundcards |
2450 |
- don't explicitly kill things in init.d/single, init will do it |
2451 |
- don't explicitly load usb-storage; mount the usbdevfs before initializing |
2452 |
host controller modules |
2453 |
|
2454 |
* Wed Feb 21 2001 Bill Nottingham <notting@redhat.com> |
2455 |
- initialize multiple USB controllers if necessary |
2456 |
|
2457 |
* Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com> |
2458 |
- close extra file descriptors before exec()ing commands in initlog |
2459 |
|
2460 |
* Mon Feb 19 2001 Bill Nottingham <notting@redhat.com> |
2461 |
- fix some substitions in init.d/functions (fixes various killproc issues) |
2462 |
- make sure ipv6 module alias is available if configured |
2463 |
- fix initlog segfaults in popt when called with bogus stuff (#28140) |
2464 |
|
2465 |
* Thu Feb 15 2001 Nalin Dahyabhai <nalin@redhat.com> |
2466 |
- make pidofproc() and killproc() try to use the PID associated with the full |
2467 |
pathname first before killing the daemon by its basename (for daemons that |
2468 |
share the same basename, i.e. "master" in postfix and cyrus-imapd) (#19016) |
2469 |
- fix status() as well |
2470 |
|
2471 |
* Wed Feb 14 2001 Bill Nottingham <notting@redhat.com> |
2472 |
- fix init.d/single to work around possible kernel problem |
2473 |
|
2474 |
* Tue Feb 13 2001 Bill Nottingham <notting@redhat.com> |
2475 |
- fix unmounting of loopback stuff (#26439, #14672) |
2476 |
|
2477 |
* Mon Feb 12 2001 Bill Nottingham <notting@redhat.com> |
2478 |
- fix ifup-post so that it will work right when not called from ifup |
2479 |
|
2480 |
* Sat Feb 10 2001 Florian La Roche <Florian.LaRoche@redhat.de> |
2481 |
- add all save changes for s390 s390x that won't break anything |
2482 |
patches are from Oliver Paukstadt @ millenux.com |
2483 |
|
2484 |
* Fri Feb 9 2001 Bill Nottingham <notting@redhat.com> |
2485 |
- muck with the font in lang.csh/lang.sh, but don't spit out errors (#26903) |
2486 |
|
2487 |
* Wed Feb 7 2001 Bill Nottingham <notting@redhat.com> |
2488 |
- ipv6 sync ups (#26502, #25775) |
2489 |
- fix hangs at shutdown (#25744) |
2490 |
- fix ifup-ppp (#26323) |
2491 |
|
2492 |
* Tue Feb 6 2001 Bill Nottingham <notting@redhat.com> |
2493 |
- modify firewall on ifup to allow any new DNS servers through (#25951) |
2494 |
- don't muck with the font in lang.csh/lang.sh (#26349) |
2495 |
- don't display Japanese if we aren't on a pty (#25041) |
2496 |
- load ide-scsi if passed on /proc/cmdline |
2497 |
|
2498 |
* Mon Feb 5 2001 Trond Eivind Glomsrød <teg@redhat.com> |
2499 |
- i18n updates |
2500 |
|
2501 |
* Fri Feb 2 2001 Bill Nottingham <notting@redhat.com> |
2502 |
- actually *ship* the ipv6 (and plusb) files |
2503 |
|
2504 |
* Thu Feb 1 2001 Trond Eivind Glomsrød <teg@redhat.com> |
2505 |
- i18n updates |
2506 |
|
2507 |
* Tue Jan 30 2001 Bill Nottingham <notting@redhat.com> |
2508 |
- various init.d/functions cleanups (#10761, from <mjt@tls.msk.ru>) |
2509 |
- in daemon(), only look at pidfile to determine if process is running |
2510 |
(#17244, others) |
2511 |
- ifup-ppp enhancements (#17388, from <ayn2@cornell.edu>) |
2512 |
- ipv6 support (#23576, originally by Peter Bieringer <pb@bieringer.de>) |
2513 |
- lots of other minor fixes (see ChangeLog) |
2514 |
|
2515 |
* Mon Jan 29 2001 Bill Nottingham <notting@redhat.com> |
2516 |
- add plusb support (#18892, patch from <eric.ayers@compgen.com>) |
2517 |
- don't ignore RETRYTIMEOUT when we never connect (#14071, patch from |
2518 |
<ak@cave.hop.stu.neva.ru>) |
2519 |
|
2520 |
* Wed Jan 24 2001 Bill Nottingham <notting@redhat.com> |
2521 |
- quiet LVM setup (#24841) |
2522 |
- fix inability to shutdown cleanly (#24889) |
2523 |
|
2524 |
* Tue Jan 23 2001 Bill Nottingham <notting@redhat.com> |
2525 |
- new i18n mechanism |
2526 |
|
2527 |
* Tue Jan 23 2001 Matt Wilson <msw@redhat.com> |
2528 |
- fixed typo in init.d/network - missing | in pipeline |
2529 |
|
2530 |
* Mon Jan 22 2001 Bill Nottingham <notting@redhat.com> |
2531 |
- do LVM setup through normal initscripts mechanisms |
2532 |
- ignore backup files in /etc/sysconfig/network-scripts |
2533 |
- lots of .po file updates |
2534 |
|
2535 |
* Tue Jan 2 2001 Bill Nottingham <notting@redhat.com> |
2536 |
- initial i18n support - originally from Conectiva |
2537 |
|
2538 |
* Mon Dec 11 2000 Bill Nottingham <notting@redhat.com> |
2539 |
- only load sound if persistent DMA buffers are necessary |
2540 |
- fix lots of bugs: #18619, #21187, #21283, #12097 |
2541 |
- integrate MAXFAIL option for ppp-watch |
2542 |
- don't load keymaps/fonts on a serial console |
2543 |
|
2544 |
* Tue Nov 21 2000 Karsten Hopp <karsten@redhat.de> |
2545 |
- changed hdparm section in rc.sysinit to allow different |
2546 |
parameters for each disk (if needed) by copying |
2547 |
/etc/sysconfig/harddisks to /etc/sysconfig/harddiskhda (hdb,hdc..) |
2548 |
- fix RFE #20967 |
2549 |
|
2550 |
* Tue Oct 31 2000 Than Ngo <than@redhat.com> |
2551 |
- fix the adding default route if GATEWAY=0.0.0.0 |
2552 |
|
2553 |
* Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com> |
2554 |
- handle "gw x.x.x.x" as the last pair of flags in ifup-routes (#18804) |
2555 |
- fix top-level makefile install target |
2556 |
- make usernetctl just fall-through if getuid() == 0 |
2557 |
|
2558 |
* Sun Sep 3 2000 Florian La Roche <Florian.LaRoche@redhat.com> |
2559 |
- /etc/init.d is already provided by chkconfig |
2560 |
|
2561 |
* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com> |
2562 |
- set "holdoff ${RETRYTIMEOUT} ktune" for demand-dialed PPP links |
2563 |
|
2564 |
* Tue Aug 22 2000 Bill Nottingham <notting@redhat.com> |
2565 |
- update documentation (#15475) |
2566 |
|
2567 |
* Tue Aug 22 2000 Than Ngo <than@redhat.de> |
2568 |
- add KDE2 support to prefdm |
2569 |
|
2570 |
* Mon Aug 21 2000 Bill Nottingham <notting@redhat.com> |
2571 |
- add usleep after kill -KILL in pidofproc, works around lockd issues (#14847) |
2572 |
- add some fallback logic to prefdm (#16464) |
2573 |
|
2574 |
* Fri Aug 18 2000 Bill Nottingham <notting@redhat.com> |
2575 |
- don't load usb drivers if they're compiled statically |
2576 |
- don't call ifdown-post twice for ppp (#15285) |
2577 |
|
2578 |
* Wed Aug 16 2000 Bill Nottingham <notting@redhat.com> |
2579 |
- fix /boot/kernel.h generation (#16236, #16250) |
2580 |
|
2581 |
* Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com> |
2582 |
- be more careful about creating files in netreport (#16164) |
2583 |
|
2584 |
* Sat Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com> |
2585 |
- move documentation for the DEMAND and IDLETIMEOUT values to the right |
2586 |
section of sysconfig.txt |
2587 |
|
2588 |
* Wed Aug 9 2000 Bill Nottingham <notting@redhat.com> |
2589 |
- load agpgart if necessary (hack) |
2590 |
- fix /boot/kernel.h stuff (jakub) |
2591 |
|
2592 |
* Mon Aug 7 2000 Bill Nottingham <notting@redhat.com> |
2593 |
- remove console-tools requirement |
2594 |
- in netfs, start portmap if needed |
2595 |
- cosmetic cleanups, minor tweaks |
2596 |
- don't probe USB controllers |
2597 |
|
2598 |
* Mon Aug 7 2000 Nalin Dahyabhai <nalin@redhat.com> |
2599 |
- fix demand-dialing support for PPP devices |
2600 |
- change updetach back to nodetach |
2601 |
|
2602 |
* Sun Aug 6 2000 Bill Nottingham <notting@redhat.com> |
2603 |
- add RETRYCONNECT option for ifcfg-pppX files (kenn@linux.ie) |
2604 |
|
2605 |
* Wed Jul 26 2000 Bill Nottingham <notting@redhat.com> |
2606 |
- fix unclean shutdown |
2607 |
|
2608 |
* Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com> |
2609 |
- s/nill/null/g |
2610 |
|
2611 |
* Tue Jul 25 2000 Bill Nottingham <notting@redhat.com> |
2612 |
- unmount usb filesystem on halt |
2613 |
- run /sbin/ifup-pre-local if it exists |
2614 |
|
2615 |
* Tue Jul 18 2000 Trond Eivind Glomsrød <teg@redhat.com> |
2616 |
- add "nousb" command line parameter |
2617 |
- fix some warnings when mounting /proc/bus/usb |
2618 |
|
2619 |
* Sat Jul 15 2000 Matt Wilson <msw@redhat.com> |
2620 |
- kill all the PreTransaction stuff |
2621 |
- directory ownership cleanups, add more LSB symlinks |
2622 |
- move all the stuff back in to /etc/rc.d/ |
2623 |
|
2624 |
* Thu Jul 13 2000 Bill Nottingham <notting@redhat.com> |
2625 |
- fix == tests in rc.sysinit |
2626 |
- more %%pretrans tweaks |
2627 |
|
2628 |
* Thu Jul 13 2000 Jeff Johnson <jbj@redhat.com> |
2629 |
- test if /etc/rc.d is a symlink already in pre-transaction syscalls. |
2630 |
|
2631 |
* Tue Jul 11 2000 Bill Nottingham <notting@redhat.com> |
2632 |
- implement the %%pre with RPM Magic(tm) |
2633 |
|
2634 |
* Sat Jul 8 2000 Bill Nottingham <notting@redhat.com> |
2635 |
- fix it to not follow /etc/rc.d |
2636 |
|
2637 |
* Fri Jul 7 2000 Bill Nottingham <notting@redhat.com> |
2638 |
- fix %%pre, again |
2639 |
|
2640 |
* Thu Jul 6 2000 Bill Nottingham <notting@redhat.com> |
2641 |
- tweak %%pre back to a mv (rpm is fun!) |
2642 |
- do USB initialization before fsck, so keyboard works if it fails |
2643 |
|
2644 |
* Mon Jul 3 2000 Bill Nottingham <notting@redhat.com> |
2645 |
- rebuild; allow 'fastboot' kernel command line option to skip fsck |
2646 |
|
2647 |
* Mon Jul 03 2000 Nalin Dahyabhai <nalin@redhat.com> |
2648 |
- fix demand-dialing with PPP |
2649 |
|
2650 |
* Sun Jul 02 2000 Trond Eivind Glomsrød <teg@redhat.com> |
2651 |
- don't use tail |
2652 |
|
2653 |
* Thu Jun 28 2000 Trond Eivind Glomsrød <teg@redhat.com> |
2654 |
- add support for USB controllers and HID devices |
2655 |
(mice, keyboards) |
2656 |
|
2657 |
* Tue Jun 27 2000 Trond Eivind Glomsrød <teg@redhat.com> |
2658 |
- add support for EIDE optimization |
2659 |
|
2660 |
* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> |
2661 |
- tweak %%pre |
2662 |
|
2663 |
* Wed Jun 21 2000 Preston Brown <pbrown@redhat.com> |
2664 |
- noreplace for adjtime file |
2665 |
|
2666 |
* Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com> |
2667 |
- ifup-ppp: add hooks for demand-dialing PPP |
2668 |
- functions: use basename of process when looking for its PID file |
2669 |
|
2670 |
* Thu Jun 15 2000 Bill Nottingham <notting@redhat.com> |
2671 |
- move from /etc/rc.d/init.d -> /etc/init.d |
2672 |
|
2673 |
* Tue Jun 13 2000 Bill Nottingham <notting@redhat.com> |
2674 |
- set soft limit, not hard, in daemon function |
2675 |
- /var/shm -> /dev/shm |
2676 |
|
2677 |
* Thu Jun 08 2000 Preston Brown <pbrown@redhat.com> |
2678 |
- use dhcpcd if pump fails. |
2679 |
- use depmod -A (faster) |
2680 |
|
2681 |
* Sun Jun 4 2000 Bernhard Rosenkraenzer <bero@redhat.com> |
2682 |
- add autologin support to prefdm |
2683 |
|
2684 |
* Thu Jun 1 2000 Bill Nottingham <notting@redhat.com> |
2685 |
- random networking fixes (alias routes, others) |
2686 |
- conf.modules -> modules.conf |
2687 |
|
2688 |
* Thu May 11 2000 Nalin Dahyabhai <nalin@redhat.com> |
2689 |
- fix incorrect grep invocation in rc.sysinit (bug #11267) |
2690 |
|
2691 |
* Wed Apr 19 2000 Bill Nottingham <notting@redhat.com> |
2692 |
- fix lang.csh, again (oops) |
2693 |
- use /poweroff, /halt to determine whether to poweroff |
2694 |
|
2695 |
* Thu Apr 14 2000 Bill Nottingham <notting@redhat.com> |
2696 |
- fix testing of RESOLV_MODS (which shouldn't be used anyways) |
2697 |
|
2698 |
* Tue Apr 04 2000 Ngo Than <than@redhat.de> |
2699 |
- fix overwrite problem of resolv.conf on ippp/ppp/slip connections |
2700 |
|
2701 |
* Mon Apr 3 2000 Bill Nottingham <notting@redhat.com> |
2702 |
- fix typo in functions file |
2703 |
- explicitly set --localtime when calling hwclock if necessary |
2704 |
|
2705 |
* Fri Mar 31 2000 Bill Nottingham <notting@redhat.com> |
2706 |
- fix typo in /etc/rc.d/init.d/network that broke linuxconf (#10472) |
2707 |
|
2708 |
* Mon Mar 27 2000 Bill Nottingham <notting@redhat.com> |
2709 |
- remove compatiblity chkconfig links |
2710 |
- run 'netfs stop' on 'network stop' if necessary |
2711 |
|
2712 |
* Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com> |
2713 |
- Mount /var/shm if required (2.3.99, 2.4) |
2714 |
|
2715 |
* Mon Mar 20 2000 Bill Nottingham <notting@redhat.com> |
2716 |
- don't create resolv.conf 0600 |
2717 |
- don't run ps as much (speed issues) |
2718 |
- allow setting of MTU |
2719 |
- other minor fixes |
2720 |
|
2721 |
* Sun Mar 19 2000 Bernhard Rosenkraenzer <bero@redhat.com> |
2722 |
- Start devfsd if installed and needed (Kernel 2.4...) |
2723 |
|
2724 |
* Wed Mar 8 2000 Bill Nottingham <notting@redhat.com> |
2725 |
- check that network devices are up before bringing them down |
2726 |
|
2727 |
* Wed Mar 8 2000 Jakub Jelinek <jakub@redhat.com> |
2728 |
- update sysconfig.txt |
2729 |
|
2730 |
* Tue Mar 7 2000 Bill Nottingham <notting@redhat.com> |
2731 |
- rerun sysctl on network start (for restarts) |
2732 |
|
2733 |
* Mon Feb 28 2000 Bill Nottingham <notting@redhat.com> |
2734 |
- don't read commented raid devices |
2735 |
|
2736 |
* Mon Feb 21 2000 Bill Nottingham <notting@redhat.com> |
2737 |
- fix typo in resolv.conf munging |
2738 |
|
2739 |
* Thu Feb 17 2000 Bill Nottingham <notting@redhat.com> |
2740 |
- sanitize repair prompt |
2741 |
- initial support for isdn-config stuff |
2742 |
|
2743 |
* Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com> |
2744 |
- add which as a package dependency (bug #9416) |
2745 |
|
2746 |
* Tue Feb 8 2000 Bill Nottingham <notting@redhat.com> |
2747 |
- fixes for sound module loading |
2748 |
|
2749 |
* Mon Feb 7 2000 Nalin Dahyabhai <nalin@redhat.com> |
2750 |
- check that LC_ALL/LINGUAS and LANG are set before referencing them in lang.csh |
2751 |
- fix check for /var/*/news, work around for bug #9140 |
2752 |
|
2753 |
* Fri Feb 4 2000 Nalin Dahyabhai <nalin@redhat.com> |
2754 |
- fix bug #9102 |
2755 |
|
2756 |
* Fri Feb 4 2000 Bill Nottingham <notting@redhat.com> |
2757 |
- if LC_ALL/LINGUAS == LANG, don't set them |
2758 |
|
2759 |
* Wed Feb 2 2000 Bill Nottingham <notting@redhat.com> |
2760 |
- fix problems with linuxconf static routes |
2761 |
|
2762 |
* Tue Feb 1 2000 Nalin Dahyabhai <nalin@redhat.com> |
2763 |
- shvar cleaning |
2764 |
- fix wrong default route ip in network-functions |
2765 |
|
2766 |
* Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com> |
2767 |
- attempt to restore default route if PPP takes it over |
2768 |
- man page fix for ipcalc |
2769 |
- shvar cleaning |
2770 |
- automate maintaining /boot/System.map symlinks |
2771 |
|
2772 |
* Mon Jan 31 2000 Bill Nottingham <notting@redhat.com> |
2773 |
- fix hanging ppp-watch |
2774 |
- fix issues with cleaning of /var/{run,lock} |
2775 |
|
2776 |
* Fri Jan 21 2000 Bill Nottingham <notting@redhat.com> |
2777 |
- fix pidof calls in pidofproc |
2778 |
|
2779 |
* Wed Jan 19 2000 Bill Nottingham <notting@redhat.com> |
2780 |
- fix ifup-ipx, don't munge resolv.conf if $DNS1 is already in it |
2781 |
|
2782 |
* Thu Jan 13 2000 Bill Nottingham <notting@redhat.com> |
2783 |
- link popt statically |
2784 |
|
2785 |
* Mon Jan 10 2000 Bill Nottingham <notting@redhat.com> |
2786 |
- don't try to umount /loopfs |
2787 |
|
2788 |
* Mon Dec 27 1999 Bill Nottingham <notting@redhat.com> |
2789 |
- switch to using sysctl |
2790 |
|
2791 |
* Mon Dec 13 1999 Bill Nottingham <notting@redhat.com> |
2792 |
- umount /proc *after* trying to turn off raid |
2793 |
|
2794 |
* Mon Dec 06 1999 Michael K. Johnson <johnsonm@redhat.com> |
2795 |
- improvements in clone device handling |
2796 |
- better signal handling in ppp-watch |
2797 |
- yet another attempt to fix those rare PAP/CHAP problems |
2798 |
|
2799 |
* Sat Nov 28 1999 Bill Nottingham <notting@redhat.com> |
2800 |
- impressive. Three new features, three new bugs. |
2801 |
|
2802 |
* Mon Nov 22 1999 Michael K. Johnson <johnsonm@redhat.com> |
2803 |
- fix more possible failed CHAP authentication (with chat scripts) |
2804 |
- fix ppp default route problem |
2805 |
- added ppp-watch man page, fixed usernetctl man page |
2806 |
- make ifup-ppp work again when called from netcfg and linuxconf |
2807 |
- try to keep ppp-watch from filling up logs by respawning pppd too fast |
2808 |
- handle all linuxconf-style alias files with linuxconf |
2809 |
|
2810 |
* Mon Nov 22 1999 Bill Nottingham <notting@redhat.com> |
2811 |
- load mixer settings for monolithic sound |
2812 |
- man page for ppp-watch |
2813 |
- add ARP variable for ifup |
2814 |
- some i18n fixes |
2815 |
|
2816 |
* Wed Nov 10 1999 Bill Nottingham <notting@redhat.com> |
2817 |
- control stop-a separately from sysrq |
2818 |
|
2819 |
* Mon Nov 08 1999 Michael K. Johnson <johnsonm@redhat.com> |
2820 |
- fix some failed CHAP authentication |
2821 |
- fix extremely unlikely, but slightly possible kill-random-process |
2822 |
bug in ppp-watch |
2823 |
- allow DNS{1,2} in any ifcfg-* file, not just PPP, and |
2824 |
add nameserver entries, don't just replace them |
2825 |
- don't use /tmp/confirm, use /var/run/confirm instead |
2826 |
|
2827 |
* Tue Nov 2 1999 Bill Nottingham <notting@redhat.com> |
2828 |
- fix lang.csh /tmp race oops |
2829 |
|
2830 |
* Wed Oct 27 1999 Bill Nottingham <notting@redhat.com> |
2831 |
- we now ship hwclock on alpha. |
2832 |
|
2833 |
* Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com> |
2834 |
- fix check for serial console, don't use -C argument to fsck |
2835 |
on serial console. |
2836 |
|
2837 |
* Mon Oct 18 1999 Bill Nottingham <notting@redhat.com> |
2838 |
- do something useful with linuxconf 'any' static routes. |
2839 |
|
2840 |
* Tue Oct 12 1999 Matt Wilson <msw@redhat.com> |
2841 |
- added patch from Owen to source i18n configuration before starting prefdm |
2842 |
|
2843 |
* Mon Oct 11 1999 Bill Nottingham <notting@redhat.com> |
2844 |
- support for linuxconf alias files |
2845 |
- add support for Jensen clocks. |
2846 |
|
2847 |
* Tue Oct 5 1999 Bill Nottingham <notting@redhat.com> |
2848 |
- assorted brown paper bag fixes |
2849 |
- check for programs/files before executing/sourcing them |
2850 |
- control stop-a like magic sysrq |
2851 |
|
2852 |
* Thu Sep 30 1999 Bill Nottingham <notting@redhat.com> |
2853 |
- req. e2fsprogs >= 1.15 |
2854 |
|
2855 |
* Fri Sep 24 1999 Bill Nottingham <notting@redhat.com> |
2856 |
- munge C locale definitions to en_US |
2857 |
- use fsck's completion bar |
2858 |
|
2859 |
* Thu Sep 23 1999 Michael K. Johnson <johnsonm@redhat.com> |
2860 |
- ppp-watch now always kills pppd pgrp to make sure dialers are dead, |
2861 |
and tries to hang up the modem |
2862 |
|
2863 |
* Tue Sep 21 1999 Bill Nottingham <notting@redhat.com> |
2864 |
- add a DEFRAG_IPV4 option |
2865 |
|
2866 |
* Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com> |
2867 |
- changed to more modern defaults for PPP connections |
2868 |
|
2869 |
* Mon Sep 20 1999 Bill Nottingham <notting@redhat.com> |
2870 |
- kill processes for umount in halt, too. |
2871 |
- fixes to remove /usr dependencies |
2872 |
|
2873 |
* Fri Sep 17 1999 Bill Nottingham <notting@redhat.com> |
2874 |
- load/save mixer settings in rc.sysinit, halt |
2875 |
|
2876 |
* Mon Sep 13 1999 Michael K. Johnson <johnsonm@redhat.com> |
2877 |
- add --remotename option to wvdial code |
2878 |
- make sure we do not have an earlier version of wvdial that doesn't |
2879 |
know how handle --remotename |
2880 |
- make ppp-watch background itself after 30 seconds even if |
2881 |
connection does not come up, at boot time only, so that a |
2882 |
non-functional PPP connection cannot hang boot. |
2883 |
|
2884 |
* Sun Sep 12 1999 Bill Nottingham <notting@redhat.com> |
2885 |
- a couple of /bin/sh -> /bin/bash fixes |
2886 |
- fix swapoff silliness |
2887 |
|
2888 |
* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com> |
2889 |
- chkconfig --del in %%preun, not %%postun |
2890 |
- use killall5 in halt |
2891 |
- swapoff non-/etc/fstab swap |
2892 |
|
2893 |
* Wed Sep 08 1999 Michael K. Johnson <johnsonm@redhat.com> |
2894 |
- ifdown now synchronous (modulo timeouts) |
2895 |
- several unrelated cleanups, primarily in ifdown |
2896 |
|
2897 |
* Tue Sep 7 1999 Bill Nottingham <notting@redhat.com> |
2898 |
- add an 'unconfigure' sort of thing |
2899 |
|
2900 |
* Mon Sep 06 1999 Michael K. Johnson <johnsonm@redhat.com> |
2901 |
- added ppp-watch to make "ifup ppp*" synchronous |
2902 |
|
2903 |
* Fri Sep 3 1999 Bill Nottingham <notting@redhat.com> |
2904 |
- require lsof |
2905 |
|
2906 |
* Wed Sep 1 1999 Bill Nottingham <notting@redhat.com> |
2907 |
- add interactive prompt |
2908 |
|
2909 |
* Tue Aug 31 1999 Bill Nottingham <notting@redhat.com> |
2910 |
- disable magic sysrq by default |
2911 |
|
2912 |
* Mon Aug 30 1999 Bill Nottingham <notting@redhat.com> |
2913 |
- new NFS unmounting from Bill Rugolsky <rugolsky@ead.dsa.com> |
2914 |
- fix ifup-sl/dip confusion |
2915 |
- more raid startup cleanup |
2916 |
- make utmp group 22 |
2917 |
|
2918 |
* Fri Aug 20 1999 Bill Nottingham <notting@redhat.com> |
2919 |
- pass hostname to pump |
2920 |
- add lang.csh |
2921 |
|
2922 |
* Thu Aug 19 1999 Bill Nottingham <notting@redhat.com> |
2923 |
- more wvdial updates |
2924 |
- fix a *stupid* bug in process reading |
2925 |
|
2926 |
* Fri Aug 13 1999 Bill Nottingham <notting@redhat.com> |
2927 |
- add new /boot/kernel.h boot kernel version file |
2928 |
- new RAID startup |
2929 |
|
2930 |
* Fri Aug 13 1999 Michael K. Johnson <johnsonm@redhat.com> |
2931 |
- use new linkname argument to pppd to make if{up,down}-ppp |
2932 |
reliable -- requires ppp-2.3.9 or higher |
2933 |
|
2934 |
* Mon Aug 2 1999 Bill Nottingham <notting@redhat.com> |
2935 |
- fix typo. |
2936 |
- add 'make check' |
2937 |
|
2938 |
* Wed Jul 28 1999 Michael K. Johnson <johnsonm@redhat.com> |
2939 |
- simple wvdial support for ppp connections |
2940 |
|
2941 |
* Mon Jul 26 1999 Bill Nottingham <notting@redhat.com> |
2942 |
- stability fixes for initlog |
2943 |
- initlog now has a config file |
2944 |
- add alias speedup from dharris@drh.net |
2945 |
- move netfs links |
2946 |
- usleep updates |
2947 |
|
2948 |
* Thu Jul 8 1999 Bill Nottingham <notting@redhat.com> |
2949 |
- remove timeconfig dependency |
2950 |
- i18n fixes from nkbj@image.dk |
2951 |
- move inputrc to setup package |
2952 |
|
2953 |
* Tue Jul 6 1999 Bill Nottingham <notting@redhat.com> |
2954 |
- fix killall links, some syntax errors |
2955 |
|
2956 |
* Fri Jun 25 1999 Bill Nottingham <notting@redhat.com> |
2957 |
- don't make module-info, System.map links |
2958 |
- handle utmpx/wtmpx |
2959 |
- fix lots of bugs in 4.21 release :) |
2960 |
|
2961 |
* Thu Jun 17 1999 Bill Nottingham <notting@redhat.com> |
2962 |
- set clock as soon as possible |
2963 |
- use INITLOG_ARGS everywhere |
2964 |
- other random fixes in networking |
2965 |
|
2966 |
* Mon Jun 14 1999 Bill Nottingham <notting@redhat.com> |
2967 |
- oops, don't create /var/run/utmp and then remove it. |
2968 |
- stomp RAID bugs flat. Sort of. |
2969 |
|
2970 |
* Mon May 24 1999 Bill Nottingham <notting@redhat.com> |
2971 |
- clean out /var better |
2972 |
- let everyone read /var/run/ppp*.dev |
2973 |
- fix network startup so it doesn't depend on /usr |
2974 |
|
2975 |
* Tue May 11 1999 Bill Nottingham <notting@redhat.com> |
2976 |
- various fixes to rc.sysinit |
2977 |
- fix raid startup |
2978 |
- allow for multi-processor /etc/issues |
2979 |
|
2980 |
* Sun Apr 18 1999 Matt Wilson <msw@redhat.com> |
2981 |
- fixed typo - "Determing" to "Determining" |
2982 |
|
2983 |
* Fri Apr 16 1999 Preston Brown <pbrown@redhat.com> |
2984 |
- updated inputrc so that home/end/del work on console, not just X |
2985 |
|
2986 |
* Thu Apr 08 1999 Bill Nottingham <notting@redhat.com> |
2987 |
- fix more logic in initlog |
2988 |
- fix for kernel versions in ifup-aliases |
2989 |
- log to /var/log/boot.log |
2990 |
|
2991 |
* Wed Apr 07 1999 Bill Nottingham <notting@redhat.com> |
2992 |
- fix daemon() function so you can specify pid to look for |
2993 |
|
2994 |
* Wed Apr 07 1999 Erik Troan <ewt@redhat.com> |
2995 |
- changed utmp,wtmp to be group writeable and owned by group utmp |
2996 |
|
2997 |
* Tue Apr 06 1999 Bill Nottingham <notting@redhat.com> |
2998 |
- fix loading of consolefonts/keymaps |
2999 |
- three changelogs. three developers. one day. Woohoo! |
3000 |
|
3001 |
* Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com> |
3002 |
- fixed ifup-ipx mix-up over . and _ |
3003 |
|
3004 |
* Tue Apr 06 1999 Erik Troan <ewt@redhat.com> |
3005 |
- run /sbin/ifup-local after bringing up an interface (if that file exists) |
3006 |
|
3007 |
* Mon Apr 5 1999 Bill Nottingham <notting@redhat.com> |
3008 |
- load keymaps & console font early |
3009 |
- fixes for channel bonding, strange messages with non-boot network interfaces |
3010 |
|
3011 |
* Sat Mar 27 1999 Cristian Gafton <gafton@redhat.com> |
3012 |
- added sysvinitfiles as a documenattaion file |
3013 |
|
3014 |
* Fri Mar 26 1999 Bill Nottingham <notting@redhat.com> |
3015 |
- nfsfs -> netfs |
3016 |
|
3017 |
* Mon Mar 22 1999 Bill Nottingham <notting@redhat.com> |
3018 |
- don't source /etc/sysconfig/init if $BOOTUP is already set |
3019 |
|
3020 |
* Fri Mar 19 1999 Bill Nottingham <notting@redhat.com> |
3021 |
- don't run linuxconf if /usr isn't mounted |
3022 |
- set macaddr before bootp |
3023 |
- zero in the /var/run/utmpx file (gafton) |
3024 |
- don't set hostname on ppp/slip (kills X) |
3025 |
|
3026 |
* Wed Mar 17 1999 Bill Nottingham <notting@redhat.com> |
3027 |
- exit ifup if pump fails |
3028 |
- fix stupid errors in reading commands from subprocess |
3029 |
|
3030 |
* Tue Mar 16 1999 Bill Nottingham <notting@redhat.com> |
3031 |
- fix ROFS logging |
3032 |
- make fsck produce more happy output |
3033 |
- fix killproc logic |
3034 |
|
3035 |
* Mon Mar 15 1999 Bill Nottingham <notting@redhat.com> |
3036 |
- doc updates |
3037 |
- support for SYSFONTACM, other console-tools stuff |
3038 |
- add net route for interface if it isn't there. |
3039 |
- fix for a bash/bash2 issue |
3040 |
|
3041 |
* Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com> |
3042 |
- pam_console lockfile cleanup added to rc.sysinit |
3043 |
|
3044 |
* Sun Mar 14 1999 Bill Nottingham <notting@redhat.com> |
3045 |
- fixes in functions for 'action' |
3046 |
- fixes for pump |
3047 |
|
3048 |
* Wed Mar 10 1999 Bill Nottingham <notting@redhat.com> |
3049 |
- Mmm. Must always remove debugging code. before release. *thwap* |
3050 |
- pump support |
3051 |
- mount -a after mount -a -t nfs |
3052 |
|
3053 |
* Thu Feb 25 1999 Bill Nottingham <notting@redhat.com> |
3054 |
- put preferred support back in |
3055 |
|
3056 |
* Thu Feb 18 1999 Bill Nottingham <notting@redhat.com> |
3057 |
- fix single-user mode (source functions, close if) |
3058 |
|
3059 |
* Wed Feb 10 1999 Bill Nottingham <notting@redhat.com> |
3060 |
- turn off xdm in runlevel 5 (now a separate service) |
3061 |
|
3062 |
* Thu Feb 4 1999 Bill Nottingham <notting@redhat.com> |
3063 |
- bugfixes (ifup-ppp, kill -TERM, force fsck, hwclock --adjust, setsysfont) |
3064 |
- add initlog support. Now everything is logged (and bootup looks different) |
3065 |
|
3066 |
* Thu Nov 12 1998 Preston Brown <pbrown@redhat.com> |
3067 |
- halt now passed the '-i' flag so that network interfaces disabled |
3068 |
|
3069 |
* Tue Nov 10 1998 Michael K. Johnson <johnsonm@redhat.com> |
3070 |
- handle new linuxconf output for ipaliases |
3071 |
|
3072 |
* Mon Oct 15 1998 Erik Troan <ewt@redhat.com> |
3073 |
- fixed raid start stuff |
3074 |
- added raidstop to halt |
3075 |
|
3076 |
* Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com> |
3077 |
- handle LC_ALL |
3078 |
|
3079 |
* Mon Oct 12 1998 Preston Brown <pbrown@redhat.com> |
3080 |
- adjusted setsysfont to always run setfont, even if only w/default font |
3081 |
|
3082 |
* Tue Oct 06 1998 Cristian Gafton <gafton@redhat.com> |
3083 |
- rc.sysvinit should be working with all kernel versions now |
3084 |
- requires e2fsprogs (for fsck) |
3085 |
- set INPUTRC and LESSCHARSET on linux-lat |
3086 |
|
3087 |
* Wed Sep 16 1998 Jeff Johnson <jbj@redhat.com> |
3088 |
- /etc/rc.d/rc: don't run /etc/rc.d/rcN.d/[KS]??foo.{rpmsave,rpmorig} scripts. |
3089 |
- /etc/rc.d/rc.sysinit: raid startup (Nigel.Metheringham@theplanet.net). |
3090 |
- /sbin/setsysfont: permit unicode fonts. |
3091 |
|
3092 |
* Mon Aug 17 1998 Erik Troan <ewt@redhat.com> |
3093 |
- don't add 'Red Hat Linux' to /etc/issue; use /etc/redhat-release as is |
3094 |
|
3095 |
* Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com> |
3096 |
- paranoia improvements to .rhkmvtag |
3097 |
- if psacct with /sbin/accton, than turn off accounting |
3098 |
|
3099 |
* Tue Jul 7 1998 Jeff Johnson <jbj@redhat.com> |
3100 |
- start/stop run levels changed. |
3101 |
- ipx_configure/ipx_internal_net moved to /sbin. |
3102 |
|
3103 |
* Wed Jul 01 1998 Erik Troan <ewt@redhat.com> |
3104 |
- usernetctl didn't understand "" around USERCTL attribute |
3105 |
|
3106 |
* Wed Jul 1 1998 Jeff Johnson <jbj@redhat.com> |
3107 |
- Use /proc/version to find preferred modules. |
3108 |
- Numerous buglets fixed. |
3109 |
|
3110 |
* Sun Jun 07 1998 Erik Troan <ewt@redhat.com> |
3111 |
- rc.sysinit looks for bootfile= as well as BOOT_IMAGE to set |
3112 |
/lib/modules/preferred symlink |
3113 |
|
3114 |
* Mon Jun 01 1998 Erik Troan <ewt@redhat.com> |
3115 |
- ipcalc should *never* have been setgid anything |
3116 |
- depmod isn't run properly for non-serial numbered kernels |
3117 |
|
3118 |
* Wed May 06 1998 Donnie Barnes <djb@redhat.com> |
3119 |
- added system font and language setting |
3120 |
|
3121 |
* Mon May 04 1998 Michael K. Johnson <johnsonm@redhat.com> |
3122 |
- Added missing files to packagelist. |
3123 |
|
3124 |
* Sat May 02 1998 Michael K. Johnson <johnsonm@redhat.com> |
3125 |
- Added lots of linuxconf support. Should still work on systems that |
3126 |
do not have linuxconf installed, but linuxconf gives enhanced support. |
3127 |
- In concert with linuxconf, added IPX support. Updated docs to reflect it. |
3128 |
|
3129 |
* Fri May 01 1998 Erik Troan <ewt@redhat.com> |
3130 |
- rc.sysinit uses preferred directory |
3131 |
|
3132 |
* Sun Apr 05 1998 Erik Troan <ewt@redhat.com> |
3133 |
- updated rc.sysinit to deal with kernel versions with release numbers |
3134 |
|
3135 |
* Sun Mar 22 1998 Erik Troan <ewt@redhat.com> |
3136 |
- use ipcalc to calculate the netmask if one isn't specified |
3137 |
|
3138 |
* Tue Mar 10 1998 Erik Troan <ewt@redhat.com> |
3139 |
- added and made use of ipcalc |
3140 |
|
3141 |
* Tue Mar 10 1998 Erik Troan <ewt@redhat.com> |
3142 |
- removed unnecessary dhcp log from /tmp |
3143 |
|
3144 |
* Mon Mar 09 1998 Erik Troan <ewt@redhat.com> |
3145 |
- if bootpc fails, take down the device |
3146 |
|
3147 |
* Mon Mar 09 1998 Erik Troan <ewt@redhat.com> |
3148 |
- added check for mktemp failure |
3149 |
|
3150 |
* Thu Feb 05 1998 Erik Troan <ewt@redhat.com> |
3151 |
- fixed support for user manageable cloned devices |
3152 |
|
3153 |
* Mon Jan 12 1998 Michael K. Johnson <johnsonm@redhat.com> |
3154 |
- /sbin/ isn't always in $PATH, so call /sbin/route in ifup-routes |
3155 |
|
3156 |
* Wed Dec 31 1997 Erik Troan <ewt@redhat.com> |
3157 |
- touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys |
3158 |
- the logic for when /var/lock/subsys/kerneld is touched was backwards |
3159 |
|
3160 |
* Tue Dec 30 1997 Erik Troan <ewt@redhat.com> |
3161 |
- tried to get /proc stuff right one more time (uses -t nonfs,proc now) |
3162 |
- added support for /fsckoptions |
3163 |
- changed 'yse' to 'yes' in KERNELD= line |
3164 |
|
3165 |
* Tue Dec 09 1997 Erik Troan <ewt@redhat.com> |
3166 |
- set domainname to "" if none is specified in /etc/sysconfig/network |
3167 |
- fix /proc mounting to get it in /etc/mtab |
3168 |
|
3169 |
* Mon Dec 08 1997 Michael K. Johnson <johnsonm@redhat.com> |
3170 |
- fixed inheritance for clone devices |
3171 |
|
3172 |
* Fri Nov 07 1997 Erik Troan <ewt@redhat.com> |
3173 |
- added sound support to rc.sysinit |
3174 |
|
3175 |
* Fri Nov 07 1997 Michael K. Johnson <johnsonm@redhat.com> |
3176 |
- Added missing "then" clause |
3177 |
|
3178 |
* Thu Nov 06 1997 Michael K. Johnson <johnsonm@redhat.com> |
3179 |
- Fixed DEBUG option in ifup-ppp |
3180 |
- Fixed PPP persistance |
3181 |
- Only change IP forwarding if necessary |
3182 |
|
3183 |
* Tue Oct 28 1997 Donnie Barnes <djb@redhat.com> |
3184 |
- removed the skeleton init script |
3185 |
- added the ability to 'nice' daemons |
3186 |
|
3187 |
* Tue Oct 28 1997 Erik Troan <ewt@redhat.com> |
3188 |
- touch /var/lock/subsys/kerneld if it's running, and after mounting /var |
3189 |
- applied dhcp fix |
3190 |
|
3191 |
* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com> |
3192 |
- added status|restart to init scripts |
3193 |
|
3194 |
* Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com> |
3195 |
- touch random seed file before chmod'ing it. |
3196 |
|
3197 |
* Wed Oct 15 1997 Erik Troan <ewt@redhat.com> |
3198 |
- run domainname if NISDOMAIN is set |
3199 |
|
3200 |
* Wed Oct 15 1997 Michael K. Johnson <johnsonm@redhat.com> |
3201 |
- Make the random seed file mode 600. |
3202 |
|
3203 |
* Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com> |
3204 |
- bring down ppp devices if ifdown-ppp is called while ifup-ppp is sleeping. |
3205 |
|
3206 |
* Mon Oct 13 1997 Erik Troan <ewt@redhat.com> |
3207 |
- moved to new chkconfig conventions |
3208 |
|
3209 |
* Sat Oct 11 1997 Erik Troan <ewt@redhat.com> |
3210 |
- fixed rc.sysinit for hwclock compatibility |
3211 |
|
3212 |
* Thu Oct 09 1997 Erik Troan <ewt@redhat.com> |
3213 |
- run 'ulimit -c 0' before running scripts in daemon function |
3214 |
|
3215 |
* Wed Oct 08 1997 Donnie Barnes <djb@redhat.com> |
3216 |
- added chkconfig support |
3217 |
- made all rc*.d symlinks have missingok flag |
3218 |
|
3219 |
* Mon Oct 06 1997 Erik Troan <ewt@redhat.com> |
3220 |
- fixed network-scripts to allow full pathnames as config files |
3221 |
- removed some old 3.0.3 pcmcia device handling |
3222 |
|
3223 |
* Wed Oct 01 1997 Michael K. Johnson <johnsonm@redhat.com> |
3224 |
- /var/run/netreport needs to be group-writable now that /sbin/netreport |
3225 |
is setguid instead of setuid. |
3226 |
|
3227 |
* Tue Sep 30 1997 Michael K. Johnson <johnsonm@redhat.com> |
3228 |
- Added network-functions to spec file. |
3229 |
- Added report functionality to usernetctl. |
3230 |
- Fixed bugs I introduced into usernetctl while adding clone device support. |
3231 |
- Clean up entire RPM_BUILD_ROOT directory in %%clean. |
3232 |
|
3233 |
* Mon Sep 29 1997 Michael K. Johnson <johnsonm@redhat.com> |
3234 |
- Clone device support in network scripts, rc scripts, and usernetctl. |
3235 |
- Disassociate from controlling tty in PPP and SLIP startup scripts, |
3236 |
since they act as daemons. |
3237 |
- Spec file now provides start/stop symlinks, since they don't fit in |
3238 |
the CVS archive. |
3239 |
|
3240 |
* Tue Sep 23 1997 Donnie Barnes <djb@redhat.com> |
3241 |
- added mktemp support to ifup |
3242 |
|
3243 |
* Thu Sep 18 1997 Donnie Barnes <djb@redhat.com> |
3244 |
- fixed some init.d/functions bugs for stopping httpd |
3245 |
|
3246 |
* Tue Sep 16 1997 Donnie Barnes <djb@redhat.com> |
3247 |
- reworked status() to adjust for processes that change their argv[0] in |
3248 |
the process table. The process must still have it's "name" in the argv[0] |
3249 |
string (ala sendmail: blah blah). |
3250 |
|
3251 |
* Mon Sep 15 1997 Erik Troan <ewt@redhat.com> |
3252 |
- fixed bug in FORWARD_IPV4 support |
3253 |
|
3254 |
* Sun Sep 14 1997 Erik Troan <ewt@redhat.com> |
3255 |
- added support for FORWARD_IPV4 variable |
3256 |
|
3257 |
* Thu Sep 11 1997 Donald Barnes <djb@redhat.com> |
3258 |
- added status function to functions along with better killproc |
3259 |
handling. |
3260 |
- added /sbin/usleep binary (written by me) and man page |
3261 |
- changed BuildRoot to /var/tmp instead of /tmp |
3262 |
|
3263 |
* Tue Jun 10 1997 Michael K. Johnson <johnsonm@redhat.com> |
3264 |
- /sbin/netreport sgid rather than suid. |
3265 |
- /var/run/netreport writable by group root. |
3266 |
|
3267 |
- /etc/ppp/ip-{up|down} no longer exec their local versions, so |
3268 |
now ifup-post and ifdown-post will be called even if ip-up.local |
3269 |
and ip-down.local exist. |
3270 |
|
3271 |
* Tue Jun 03 1997 Michael K. Johnson <johnsonm@redhat.com> |
3272 |
- Added missing -f to [ invocation in ksyms check. |
3273 |
|
3274 |
* Fri May 23 1997 Michael K. Johnson <johnsonm@redhat.com> |
3275 |
- Support for net event notification: |
3276 |
Call /sbin/netreport to request that SIGIO be sent to you whenever |
3277 |
a network interface changes status (won't work for brining up SLIP |
3278 |
devices). |
3279 |
Call /sbin/netreport -r to remove the notification request. |
3280 |
- Added ifdown-post, and made all the ifdown scrips call it, and |
3281 |
added /etc/ppp/ip-down script that calls /etc/ppp/ip-down.local |
3282 |
if it exists, then calls ifdown-post. |
3283 |
- Moved ifup and ifdown to /sbin |
3284 |
|
3285 |
* Tue Apr 15 1997 Michael K. Johnson <johnsonm@redhat.com> |
3286 |
- usernetctl put back in ifdown |
3287 |
- support for slaved interfaces |
3288 |
|
3289 |
* Wed Apr 02 1997 Erik Troan <ewt@redhat.com> |
3290 |
- Created ifup-post from old ifup |
3291 |
- PPP, PLIP, and generic ifup use ifup-post |
3292 |
|
3293 |
* Fri Mar 28 1997 Erik Troan <ewt@redhat.com> |
3294 |
- Added DHCP support |
3295 |
- Set hostname via reverse name lookup after configuring a networking |
3296 |
device if the current hostname is (none) or localhost |
3297 |
|
3298 |
* Tue Mar 18 1997 Erik Troan <ewt@redhat.com> |
3299 |
- Got rid of xargs dependency in halt script |
3300 |
- Don't mount /proc twice (unmount it in between) |
3301 |
- sulogin and filesystem unmounting only happened for a corrupt root |
3302 |
filesystem -- it now happens when other filesystems are corrupt as well |
3303 |
|
3304 |
* Tue Mar 04 1997 Michael K. Johnson <johnsonm@redhat.com> |
3305 |
- PPP fixes and additions |
3306 |
|
3307 |
* Mon Mar 03 1997 Erik Troan <ewt@redhat.com> |
3308 |
- Mount proc before trying to start kerneld so we can test for /proc/ksyms |
3309 |
properly. |
3310 |
|
3311 |
* Wed Feb 26 1997 Michael K. Johnson <johnsonm@redhat.com> |
3312 |
- Added MTU for PPP. |
3313 |
- Put PPPOPTIONS at the end of the options string instead of at the |
3314 |
beginning so that they override other options. Gives users more rope... |
3315 |
- Don't do module-based stuff on non-module systems. Ignore errors if |
3316 |
st module isn't there and we try to load it. |
3317 |
|
3318 |
* Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com> |
3319 |
- Changed ifup-ppp and ifdown-ppp not to use doexec, because the argv[0] |
3320 |
provided by doexec goes away when pppd gets swapped out. |
3321 |
- ifup-ppp now sets remotename to the logical name of the device. |
3322 |
This will BREAK current PAP setups on netcfg-managed interfaces, |
3323 |
but we needed to do this to add a reasonable interface-specific |
3324 |
PAP editor to netcfg. |
3325 |
|
3326 |
* Fri Feb 07 1997 Erik Troan <ewt@redhat.com> |
3327 |
- Added usernetctl wrapper for user mode ifup and ifdown's and man page |
3328 |
- Rewrote ppp and slip kill and retry code |
3329 |
- Added doexec and man page |