|
|
cbe35e |
Summary: The inittab file and the /etc/init.d scripts
|
|
|
cbe35e |
Name: initscripts
|
|
|
e7a468 |
Version: 9.49.39
|
|
|
cbe35e |
# ppp-watch is GPLv2+, everything else is GPLv2
|
|
|
cbe35e |
License: GPLv2 and GPLv2+
|
|
|
cbe35e |
Group: System Environment/Base
|
|
|
e7a468 |
Release: 1%{?dist}
|
|
|
e7a468 |
URL: https://github.com/fedora-sysv/initscripts
|
|
|
e7a468 |
Source: https://github.com/fedora-sysv/initscripts/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
|
cbe35e |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
cbe35e |
Obsoletes: initscripts-legacy <= 9.39
|
|
|
cbe35e |
Requires: /bin/awk, sed, coreutils
|
|
|
cbe35e |
Requires: /sbin/sysctl
|
|
|
cbe35e |
Requires: grep
|
|
|
cbe35e |
Requires: module-init-tools
|
|
|
cbe35e |
Requires: util-linux >= 2.16
|
|
|
cbe35e |
Requires: bash >= 3.0
|
|
|
cbe35e |
Requires: sysvinit-tools >= 2.87-5
|
|
|
cbe35e |
Conflicts: systemd < 23-1
|
|
|
cbe35e |
Conflicts: systemd-units < 23-1
|
|
|
e7a468 |
Conflicts: lvm2 < 2.02.100-5
|
|
|
cbe35e |
Conflicts: dmraid < 1.0.0.rc16-18
|
|
|
cbe35e |
Requires: systemd
|
|
|
cbe35e |
Requires: iproute, /sbin/arping, findutils
|
|
|
cbe35e |
# Not strictly required, but nothing else requires it
|
|
|
cbe35e |
Requires: /etc/system-release
|
|
|
cbe35e |
Requires: udev >= 125-1
|
|
|
cbe35e |
Requires: cpio
|
|
|
cbe35e |
Requires: hostname
|
|
|
cbe35e |
Conflicts: ipsec-tools < 0.8.0-2
|
|
|
db8f6c |
Conflicts: NetworkManager < 0.9.9.0-37.git20140131.el7
|
|
|
cbe35e |
Requires(pre): /usr/sbin/groupadd
|
|
|
cbe35e |
Requires(post): /sbin/chkconfig, coreutils
|
|
|
cbe35e |
Requires(preun): /sbin/chkconfig
|
|
|
cbe35e |
BuildRequires: glib2-devel popt-devel gettext pkgconfig
|
|
|
cbe35e |
Provides: /sbin/service
|
|
|
cbe35e |
|
|
|
cbe35e |
%description
|
|
|
db8f6c |
The initscripts package contains basic system scripts used
|
|
|
db8f6c |
during a boot of the system. It also contains scripts which
|
|
|
db8f6c |
activate and deactivate most network interfaces.
|
|
|
cbe35e |
|
|
|
cbe35e |
%package -n debugmode
|
|
|
cbe35e |
Summary: Scripts for running in debugging mode
|
|
|
cbe35e |
Requires: initscripts
|
|
|
cbe35e |
Group: System Environment/Base
|
|
|
cbe35e |
|
|
|
cbe35e |
%description -n debugmode
|
|
|
cbe35e |
The debugmode package contains some basic scripts that are used to run
|
|
|
cbe35e |
the system in a debugging mode.
|
|
|
cbe35e |
|
|
|
cbe35e |
Currently, this consists of various memory checking code.
|
|
|
cbe35e |
|
|
|
cbe35e |
%prep
|
|
|
cbe35e |
%setup -q
|
|
|
cbe35e |
|
|
|
cbe35e |
%build
|
|
|
cbe35e |
make
|
|
|
cbe35e |
|
|
|
cbe35e |
%install
|
|
|
cbe35e |
rm -rf $RPM_BUILD_ROOT
|
|
|
cbe35e |
make ROOT=$RPM_BUILD_ROOT SUPERUSER=`id -un` SUPERGROUP=`id -gn` mandir=%{_mandir} install
|
|
|
cbe35e |
|
|
|
cbe35e |
%find_lang %{name}
|
|
|
cbe35e |
|
|
|
cbe35e |
%ifnarch s390 s390x
|
|
|
cbe35e |
rm -f \
|
|
|
cbe35e |
$RPM_BUILD_ROOT/etc/sysconfig/network-scripts/ifup-ctc \
|
|
|
cbe35e |
%else
|
|
|
cbe35e |
rm -f \
|
|
|
cbe35e |
$RPM_BUILD_ROOT/etc/sysconfig/init.s390
|
|
|
cbe35e |
%endif
|
|
|
cbe35e |
|
|
|
cbe35e |
touch $RPM_BUILD_ROOT/etc/crypttab
|
|
|
cbe35e |
chmod 600 $RPM_BUILD_ROOT/etc/crypttab
|
|
|
cbe35e |
|
|
|
cbe35e |
%pre
|
|
|
cbe35e |
/usr/sbin/groupadd -g 22 -r -f utmp
|
|
|
cbe35e |
|
|
|
cbe35e |
%post
|
|
|
cbe35e |
touch /var/log/wtmp /var/run/utmp /var/log/btmp
|
|
|
cbe35e |
chown root:utmp /var/log/wtmp /var/run/utmp /var/log/btmp
|
|
|
cbe35e |
chmod 664 /var/log/wtmp /var/run/utmp
|
|
|
cbe35e |
chmod 600 /var/log/btmp
|
|
|
cbe35e |
|
|
|
cbe35e |
/usr/sbin/chkconfig --add network
|
|
|
cbe35e |
/usr/sbin/chkconfig --add netconsole
|
|
|
cbe35e |
if [ $1 -eq 1 ]; then
|
|
|
cbe35e |
/usr/bin/systemctl daemon-reload > /dev/null 2>&1 || :
|
|
|
cbe35e |
fi
|
|
|
cbe35e |
|
|
|
cbe35e |
%preun
|
|
|
cbe35e |
if [ $1 = 0 ]; then
|
|
|
cbe35e |
/usr/sbin/chkconfig --del network
|
|
|
cbe35e |
/usr/sbin/chkconfig --del netconsole
|
|
|
cbe35e |
fi
|
|
|
cbe35e |
|
|
|
cbe35e |
%triggerun -- initscripts < 7.62
|
|
|
cbe35e |
/usr/sbin/chkconfig --del random
|
|
|
cbe35e |
/usr/sbin/chkconfig --del rawdevices
|
|
|
cbe35e |
exit 0
|
|
|
cbe35e |
|
|
|
cbe35e |
%postun
|
|
|
cbe35e |
if [ $1 -ge 1 ]; then
|
|
|
cbe35e |
/usr/bin/systemctl daemon-reload > /dev/null 2>&1 || :
|
|
|
cbe35e |
fi
|
|
|
cbe35e |
|
|
|
cbe35e |
%clean
|
|
|
cbe35e |
rm -rf $RPM_BUILD_ROOT
|
|
|
cbe35e |
|
|
|
cbe35e |
%files -f %{name}.lang
|
|
|
cbe35e |
%defattr(-,root,root)
|
|
|
cbe35e |
%dir /etc/sysconfig/network-scripts
|
|
|
cbe35e |
%config(noreplace) %verify(not md5 mtime size) /etc/adjtime
|
|
|
cbe35e |
%config(noreplace) /etc/sysconfig/init
|
|
|
cbe35e |
%config(noreplace) /etc/sysconfig/netconsole
|
|
|
cbe35e |
%config(noreplace) /etc/sysconfig/readonly-root
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown
|
|
|
cbe35e |
/usr/sbin/ifdown
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown-post
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup
|
|
|
cbe35e |
/usr/sbin/ifup
|
|
|
6d407d |
/usr/libexec/initscripts/brandbot
|
|
|
cbe35e |
%dir /etc/sysconfig/console
|
|
|
cbe35e |
%dir /etc/sysconfig/modules
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/network-functions
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/network-functions-ipv6
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/init.ipv6-global
|
|
|
cbe35e |
%config(noreplace) /etc/sysconfig/network-scripts/ifcfg-lo
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-post
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown-ppp
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-ppp
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-routes
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown-routes
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-plip
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-plusb
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-bnep
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown-bnep
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-eth
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown-eth
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-ipv6
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown-ipv6
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-sit
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown-sit
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-tunnel
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown-tunnel
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-aliases
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-ippp
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown-ippp
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-wireless
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-isdn
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifdown-isdn
|
|
|
cbe35e |
%ifarch s390 s390x
|
|
|
cbe35e |
/etc/sysconfig/network-scripts/ifup-ctc
|
|
|
cbe35e |
%endif
|
|
|
cbe35e |
%config(noreplace) /etc/networks
|
|
|
e7a468 |
%config(noreplace) /etc/rwtab
|
|
|
e7a468 |
%config(noreplace) /etc/statetab
|
|
|
cbe35e |
%dir /etc/rwtab.d
|
|
|
cbe35e |
%dir /etc/statetab.d
|
|
|
cbe35e |
/usr/lib/systemd/rhel-*
|
|
|
cbe35e |
/usr/lib/systemd/system/*
|
|
|
cbe35e |
/etc/inittab
|
|
|
cbe35e |
%dir /etc/rc.d
|
|
|
cbe35e |
%dir /etc/rc.d/rc[0-9].d
|
|
|
cbe35e |
/etc/rc[0-9].d
|
|
|
cbe35e |
%dir /etc/rc.d/init.d
|
|
|
cbe35e |
/etc/rc.d/init.d/*
|
|
|
cbe35e |
%config(noreplace) /etc/sysctl.conf
|
|
|
cbe35e |
/usr/lib/sysctl.d/00-system.conf
|
|
|
cbe35e |
/etc/sysctl.d/99-sysctl.conf
|
|
|
cbe35e |
%exclude /etc/profile.d/debug*
|
|
|
cbe35e |
/etc/profile.d/*
|
|
|
cbe35e |
/usr/sbin/sys-unconfig
|
|
|
cbe35e |
/usr/bin/ipcalc
|
|
|
cbe35e |
/usr/bin/usleep
|
|
|
cbe35e |
%attr(4755,root,root) /usr/sbin/usernetctl
|
|
|
cbe35e |
/usr/sbin/consoletype
|
|
|
cbe35e |
/usr/sbin/genhostid
|
|
|
cbe35e |
/usr/sbin/sushell
|
|
|
cbe35e |
%attr(2755,root,root) /usr/sbin/netreport
|
|
|
cbe35e |
/usr/lib/udev/rules.d/*
|
|
|
cbe35e |
/usr/lib/udev/rename_device
|
|
|
db8f6c |
/usr/lib/udev/udev-kvm-check
|
|
|
cbe35e |
/usr/sbin/service
|
|
|
cbe35e |
/usr/sbin/ppp-watch
|
|
|
cbe35e |
%{_mandir}/man*/*
|
|
|
cbe35e |
%dir %attr(775,root,root) /var/run/netreport
|
|
|
cbe35e |
%dir /etc/ppp
|
|
|
cbe35e |
%dir /etc/ppp/peers
|
|
|
cbe35e |
/etc/ppp/ip-up
|
|
|
cbe35e |
/etc/ppp/ip-down
|
|
|
cbe35e |
/etc/ppp/ip-up.ipv6to4
|
|
|
cbe35e |
/etc/ppp/ip-down.ipv6to4
|
|
|
cbe35e |
/etc/ppp/ipv6-up
|
|
|
cbe35e |
/etc/ppp/ipv6-down
|
|
|
cbe35e |
%dir /etc/NetworkManager
|
|
|
cbe35e |
%dir /etc/NetworkManager/dispatcher.d
|
|
|
cbe35e |
/etc/NetworkManager/dispatcher.d/00-netreport
|
|
|
cbe35e |
%doc sysconfig.txt sysvinitfiles static-routes-ipv6 ipv6-tunnel.howto ipv6-6to4.howto changes.ipv6 COPYING
|
|
|
bdb792 |
%doc examples
|
|
|
cbe35e |
/var/lib/stateless
|
|
|
cbe35e |
%ghost %attr(0600,root,utmp) /var/log/btmp
|
|
|
cbe35e |
%ghost %attr(0664,root,utmp) /var/log/wtmp
|
|
|
cbe35e |
%ghost %attr(0664,root,utmp) /var/run/utmp
|
|
|
db8f6c |
%ghost %attr(0644,root,root) /etc/sysconfig/kvm
|
|
|
cbe35e |
%ghost %verify(not md5 size mtime) %config(noreplace,missingok) /etc/crypttab
|
|
|
cbe35e |
%dir /usr/lib/tmpfiles.d
|
|
|
cbe35e |
/usr/lib/tmpfiles.d/initscripts.conf
|
|
|
cbe35e |
%dir /usr/libexec/initscripts
|
|
|
cbe35e |
%dir /usr/libexec/initscripts/legacy-actions
|
|
|
8f0cb5 |
%ghost %{_localstatedir}/log/dmesg
|
|
|
8f0cb5 |
%ghost %{_localstatedir}/log/dmesg.old
|
|
|
cbe35e |
|
|
|
cbe35e |
%files -n debugmode
|
|
|
cbe35e |
%defattr(-,root,root)
|
|
|
cbe35e |
%config(noreplace) /etc/sysconfig/debug
|
|
|
cbe35e |
/etc/profile.d/debug*
|
|
|
cbe35e |
|
|
|
cbe35e |
%changelog
|
|
|
e7a468 |
* Wed May 03 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.49.39-1
|
|
|
e7a468 |
- sysconfig.txt: mention previously introduced NO_DHCP_HOSTNAME option
|
|
|
e7a468 |
- DHCP_FQDN and DHCP_SEND_HOSTNAME introduced
|
|
|
e7a468 |
- re-add missing $HOSTNAME initialization
|
|
|
e7a468 |
- ifup: add support for VLAN_EGRESS_PRIORITY_MAP
|
|
|
e7a468 |
- rhel-autorelabel: synchronize cached writes before reboot
|
|
|
e7a468 |
|
|
|
e7a468 |
* Thu Mar 30 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.49.38-1
|
|
|
e7a468 |
- ifdown-eth: we need to flush global scope as well
|
|
|
e7a468 |
- killproc/status: add missing '-b <binary>' option
|
|
|
e7a468 |
- specfile: mark 'rwtab' and 'statetab' as config files
|
|
|
e7a468 |
- spec: we need newer lvm
|
|
|
e7a468 |
- rwtab: add /var/lib/systemd/timers
|
|
|
e7a468 |
- ifup-eth: remove quote marks
|
|
|
e7a468 |
- 9.70-sync: Move everything to github
|
|
|
e7a468 |
- 9.70-sync: rwtab updated
|
|
|
e7a468 |
- 9.70-sync: service file updated
|
|
|
e7a468 |
- 9.70-sync: syconfig.txt updated
|
|
|
e7a468 |
- 9.70-sync: systemd/rhel-import-state updated
|
|
|
e7a468 |
- 9.70-sync: sysconfig/network-scripts/* updated - part 2
|
|
|
e7a468 |
- 9.70-sync: sysconfig/network-scripts/* updated - part 1
|
|
|
e7a468 |
- 9.70-sync: rc.d/init.d/network updated
|
|
|
e7a468 |
- 9.70-sync: rc.d/init.d/netconsole updated
|
|
|
e7a468 |
- 9.70-sync: rc.d/init.d/functions updated
|
|
|
e7a468 |
- 9.70-sync: ipv6-6to4.howto example updated
|
|
|
e7a468 |
- 9.70-sync: examples/networking/ifcfg-bridge updated
|
|
|
e7a468 |
- network: load NetworkManager connection via dbus
|
|
|
e7a468 |
- network: check for running NetworkManager via dbus
|
|
|
f8649b |
|
|
|
8f0cb5 |
* Mon Sep 12 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.37-1
|
|
|
8f0cb5 |
- rhel-import-state: fix broken order of parameters
|
|
|
efde90 |
|
|
|
8f0cb5 |
* Fri Sep 09 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.36-1
|
|
|
8f0cb5 |
- import-state: copy just some attributes
|
|
|
8f0cb5 |
|
|
|
8f0cb5 |
* Tue Aug 02 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.35-1
|
|
|
8f0cb5 |
- functions: systemctl show now returns an error when unit does not exist
|
|
|
8f0cb5 |
|
|
|
8f0cb5 |
* Fri Jul 15 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.34-1
|
|
|
8f0cb5 |
- import-state: restore also sensitivity part of SELinux context
|
|
|
1ea338 |
|
|
|
8f0cb5 |
* Thu Jul 14 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.33-1
|
|
|
8f0cb5 |
- network: run after network-pre.target
|
|
|
8f0cb5 |
|
|
|
8f0cb5 |
* Thu Jun 23 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.32-1
|
|
|
8f0cb5 |
- ifup-eth: fix setting preferred_lft and valid_lft
|
|
|
8f0cb5 |
|
|
|
8f0cb5 |
* Mon Jun 13 2016 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.31-1
|
|
|
8f0cb5 |
- ipv6: wait for all global IPv6 addresses to leave the "tentative" state
|
|
|
8f0cb5 |
- source_config: tell NetworkManger to load ifcfg file even for NM_CONTROLLED=no
|
|
|
8f0cb5 |
- ifup-aliases: inherit ARPCHECK from parent device
|
|
|
8f0cb5 |
- rhel-dmesg: don't start in containers
|
|
|
8f0cb5 |
- ifup-eth: fix typo in error message (#1038776)
|
|
|
8f0cb5 |
- sysctl.conf: steal comments about /usr,/etc,... from fedora's sysctl.conf
|
|
|
8f0cb5 |
- rwtab: /var/lib/nfs needs to copy the files
|
|
|
8f0cb5 |
- functions: improve killing loops
|
|
|
8f0cb5 |
- ipcalc: detect invalid mask
|
|
|
8f0cb5 |
- ifup: set valid_lft and preferred_lft to forever for static ip
|
|
|
8f0cb5 |
- service: use systemd mangle for given service
|
|
|
8f0cb5 |
- ifup-post: check resolve.conf also with DNS2
|
|
|
8f0cb5 |
- ifdown-post: remove resolv.conf only in specific cases
|
|
|
8f0cb5 |
- spec: ghost /var/log/dmesg
|
|
|
8f0cb5 |
- network-functions: is_available_wait should wait even in the case that is_available returns 2
|
|
|
8f0cb5 |
- autorelabel: turn quota off before relabeling
|
|
|
1ea338 |
- autorelabel: call dracut-initramfs-restore before forced reboot
|
|
|
1ea338 |
|
|
|
6d407d |
* Wed Sep 16 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.30-1
|
|
|
6d407d |
- ifup-eth: some bridge options are applied later
|
|
|
6d407d |
|
|
|
6d407d |
* Tue Sep 15 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.29-1
|
|
|
6d407d |
- service: improve status and stop function for daemon with intscripts
|
|
|
6d407d |
|
|
|
6d407d |
* Mon Aug 31 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.28-1
|
|
|
6d407d |
- init.d/functions: reload systemd if it can't see an initscript
|
|
|
6d407d |
|
|
|
6d407d |
* Fri Aug 07 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.27-1
|
|
|
6d407d |
- network-functions: fix wireless detection
|
|
|
6d407d |
|
|
|
6d407d |
* Wed Jul 01 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.26-1
|
|
|
6d407d |
- import-state: don't run restorecon when it does not exist
|
|
|
6d407d |
- network-functions: reeplace iwconfig with iw
|
|
|
6d407d |
- fedora-readonly: use --make-slave with --bind mounts
|
|
|
6d407d |
|
|
|
6d407d |
* Wed Jun 17 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.25-1
|
|
|
6d407d |
- network: tell NM to reload its configuration during start
|
|
|
6d407d |
- bonding: warn if the ifup for slave device failed
|
|
|
6d407d |
- brandbot: move to /usr/libexec/initscripts
|
|
|
6d407d |
- sysctl.conf: drop SHMALL and SHMMAX, they have sane default values in kernel
|
|
|
6d407d |
- rename_device: allow non-channel nics for s390x machines
|
|
|
6d407d |
- network-functions: fix check in install_bonding_driver
|
|
|
6d407d |
- ifup-aliases: don't return with error when arping fails
|
|
|
6d407d |
- network-functions: fix change_resolv_conf after grep update
|
|
|
6d407d |
- clarify daemon() usage message
|
|
|
6d407d |
- ifup: don't call NM for loopback
|
|
|
6d407d |
- ifup: add missing quotes
|
|
|
6d407d |
|
|
|
bdb792 |
* Thu Jan 15 2015 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.24-1
|
|
|
bdb792 |
- rhel-import-state.service: run a little bit later
|
|
|
bdb792 |
|
|
|
bdb792 |
* Tue Dec 16 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.23-1
|
|
|
bdb792 |
- ifdown-ipv6: reset addrgenmode to eui64 for device
|
|
|
bdb792 |
- ifup: fix typo
|
|
|
bdb792 |
|
|
|
bdb792 |
* Wed Nov 12 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.22-1
|
|
|
bdb792 |
- adjust LINKDELAY when STP is on
|
|
|
bdb792 |
|
|
|
bdb792 |
* Fri Oct 24 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.21-1
|
|
|
bdb792 |
- ifup,vlan: fix typo
|
|
|
bdb792 |
|
|
|
bdb792 |
* Thu Oct 09 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.20-1
|
|
|
bdb792 |
- rhel-import-state: do not clobber /
|
|
|
bdb792 |
|
|
|
bdb792 |
* Tue Sep 23 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.19-1
|
|
|
bdb792 |
- minor fixes
|
|
|
bdb792 |
|
|
|
bdb792 |
* Wed Sep 17 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.18-1
|
|
|
bdb792 |
- is_available_wait: properly propage return value from is_available
|
|
|
bdb792 |
- man: update sys-unconfig.8
|
|
|
bdb792 |
- rename_devices: comments need to have a blank before them
|
|
|
bdb792 |
- add example ifcfg files
|
|
|
bdb792 |
- network-functions: improve bonding_masters grep
|
|
|
bdb792 |
- ifup: if we were unable to determine DEVICE always call nmcli up
|
|
|
bdb792 |
- ifup-tunnel: call ifup-ipv6 in the end
|
|
|
bdb792 |
- ifup: also set multicast_snooping after the bridge is up
|
|
|
bdb792 |
- ifup-eth: some options for bridge can be applied after the bridge is up
|
|
|
bdb792 |
- custom naming for VLAN devices
|
|
|
bdb792 |
- ifup-wireless: add support for wowlan
|
|
|
bdb792 |
- vi.po: fix parentheses
|
|
|
bdb792 |
- network-functions: ETHTOOL_DELAY introduction patch
|
|
|
bdb792 |
- ipcalc: -c allow netmask
|
|
|
bdb792 |
- ipcalc: parse prefix more safely
|
|
|
bdb792 |
- use pie and relro by default
|
|
|
bdb792 |
- sys-unconfig: use poweroff instead of halt
|
|
|
bdb792 |
- ifup-aliases: improve duplicate address detection
|
|
|
bdb792 |
- network-functions: handle BONDING_OPTS better
|
|
|
bdb792 |
- fedora-readonly: fix prefix detection (#1059749)
|
|
|
bdb792 |
- network: tell nm to wake the slaves
|
|
|
bdb792 |
- bridging: add possibility to set prio and ageing
|
|
|
bdb792 |
- network: add support for team devices
|
|
|
bdb792 |
- inittab: fix path and mention set-default
|
|
|
bdb792 |
- fedora-domainname: DefaultDependencies=no
|
|
|
465f7f |
|
|
|
db8f6c |
* Wed Apr 02 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.17-1
|
|
|
db8f6c |
- add configurable DEVTIMEOUT
|
|
|
db8f6c |
|
|
|
db8f6c |
* Tue Apr 01 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.16-1
|
|
|
db8f6c |
- network: detect if / is on netfs (#1029677)
|
|
|
db8f6c |
- is_nm_handling: fix RE (#1083040)
|
|
|
db8f6c |
|
|
|
db8f6c |
* Tue Mar 11 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.15-1
|
|
|
db8f6c |
- network: try to not compete with NM during boot (#1068621)
|
|
|
db8f6c |
|
|
|
db8f6c |
* Thu Feb 27 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.14-1
|
|
|
db8f6c |
- update ifup/ifdown NetworkManager interaction (#1036701, #1061810)
|
|
|
db8f6c |
- service: fix action matching
|
|
|
db8f6c |
- service: add condrestart to allowed commands (#1069222)
|
|
|
db8f6c |
|
|
|
db8f6c |
* Wed Feb 12 2014 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.13-1
|
|
|
db8f6c |
- delete IPX support
|
|
|
db8f6c |
- update ifup/ifdown NetworkManager interaction (#1036701, #1061810)
|
|
|
db8f6c |
- set shmmax and shmall defaults to match rhel6 values (#1056547)
|
|
|
db8f6c |
|
|
|
db8f6c |
* Wed Dec 04 2013 Lukas Nykryn <lnykryn@redhat.com> - 9.49.12-1
|
|
|
db8f6c |
- use iw instead of iwconfig and friends (#915343)
|
|
|
db8f6c |
- don't care about rc.local anymore (#1034156)
|
|
|
db8f6c |
- udev-kvm-check: simplify reading of threshold (#1031568)
|
|
|
db8f6c |
- brandbot: read only first line (#1031490)
|
|
|
db8f6c |
|
|
|
db8f6c |
* Thu Nov 14 2013 Václav PavlÃn <vpavlin@redhat.com> - 9.49.11-1
|
|
|
db8f6c |
- Revert: provide KVM guest count and limit info message (#1014731)
|
|
|
db8f6c |
- add C implementation of reverted patch
|
|
|
db8f6c |
|
|
|
db8f6c |
* Wed Nov 13 2013 Václav PavlÃn <vpavlin@redhat.com> - 9.49.10-1
|
|
|
db8f6c |
- provide KVM guest count and limit info message (#1014731)
|
|
|
db8f6c |
|
|
|
db8f6c |
* Tue Nov 12 2013 Václav PavlÃn <vpavlin@redhat.com> - 9.49.9-1
|
|
|
db8f6c |
- spec: update description of the initscript package
|
|
|
db8f6c |
|
|
|
db8f6c |
* Tue Nov 12 2013 Václav PavlÃn <vpavlin@redhat.com> - 9.49.8-1
|
|
|
db8f6c |
- service: suggest using systemctl if unknown action is used (#1029350)
|
|
|
db8f6c |
- rename_device: remove comments and trailing whitespaces (#1027945)
|
|
|
db8f6c |
- readonly-root: restore selinux context after bind mount (#1029342)
|
|
|
db8f6c |
|
|
|
cbe35e |
* Tue Nov 05 2013 Lukas Nykryn <lnykryn@redhat.com> - 9.49.7-1
|
|
|
cbe35e |
- readonly-root: Add /var/log/audit/audit.log to rwtab (#1026815)
|
|
|
cbe35e |
- brandot: fix posssible segfault (#1024922)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 20 2013 Lukas Nykryn <lnykryn@redhat.com> - 9.49.6-1
|
|
|
cbe35e |
- brandbot: tool to write branding to /etc/os-release (#1009947)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Sep 12 2013 Václav PavlÃn <vpavlin@redhat.com> - 9.49.5-1
|
|
|
cbe35e |
- readonly-root: bind-mount only necessary subset of entries in rwtab
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 10 2013 Lukas Nykryn <lnykryn@redhat.com> - 9.49.4-1
|
|
|
cbe35e |
- ifdown: fix typo in nmcli call (#1006222)
|
|
|
cbe35e |
- ipcalc: support RFC3021 (#997271)
|
|
|
cbe35e |
- enable 'network' service at boot time for interfaces not supported by NetworkManager (#1003936)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 30 2013 Lukas Nykryn <lnykryn@redhat.com> - 9.49.3-1
|
|
|
cbe35e |
- update functions who call nmcli (#1002958)
|
|
|
cbe35e |
- create /var/log/dmesg for compatibility reasons (#854002)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 19 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.2-1
|
|
|
cbe35e |
- symlink /etc/sysctl.conf -> /etc/sysctl.d/
|
|
|
cbe35e |
- man: only action specified in LSB are redirected to systemd
|
|
|
cbe35e |
- service: filter actions that are not supported by systemctl in service (#947823)
|
|
|
cbe35e |
- install_bonding_driver: drop check for existing device (#991335)
|
|
|
cbe35e |
- consider IPV6INIT undefined as YES
|
|
|
cbe35e |
- don't care about network filesystems
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jul 15 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.49.1-1
|
|
|
cbe35e |
- rename fedora-* to rhel-*
|
|
|
cbe35e |
- first rhel7 version
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 12 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.48-1
|
|
|
cbe35e |
- man: add systemd man pages to service.8 "see also" section
|
|
|
cbe35e |
- add possibility to set domainname through /etc/sysconfig/network
|
|
|
cbe35e |
- rename_device: don't wait for lock with lower permissions
|
|
|
cbe35e |
- 256term.csh: remove quotes around variable (#979796)
|
|
|
cbe35e |
- drop useless variables from /etc/sysconfig/init
|
|
|
cbe35e |
- readonly-root: rpcidmapd restart is not needed anymore
|
|
|
cbe35e |
- ifup-eth: print error only if arping is really called (#974603)
|
|
|
cbe35e |
- readonly-root: Add /var/lib/samba to rwtab
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri May 31 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.47-1
|
|
|
cbe35e |
- network-functions: to determine state of nscd check socket not lock (#960779)
|
|
|
cbe35e |
- sysconfig.txt advised saslauthd -a instad of -v
|
|
|
cbe35e |
- update translations from transifex
|
|
|
cbe35e |
- drop translation for other initscripts
|
|
|
cbe35e |
- tweak ifup/ifdown usage and man page (#961917)
|
|
|
cbe35e |
- ctrl-alt-delete.target is provided by systemd package
|
|
|
cbe35e |
- remove some defaults from arch specific sysctl.conf
|
|
|
cbe35e |
- readonly-root: remount rpc_pipefs if readonly-root is used
|
|
|
cbe35e |
- service: mention legacy actions and systemctl redirection in man page
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 12 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.46-1
|
|
|
cbe35e |
- add /var/lib/NetworkManager
|
|
|
cbe35e |
- add ipip6 tunneling support (#928232, raorn@raorn.name)
|
|
|
cbe35e |
- bonding: set master up before slaves
|
|
|
cbe35e |
- set net.ipv6.conf.SYSCTLDEVICE.autoconf in ifup-ipv6
|
|
|
cbe35e |
- ifdown: don't call nmcli on interface that is alread down
|
|
|
cbe35e |
- remove some defaults from sysctl.conf (move to systemd)
|
|
|
cbe35e |
- call flush addresses with scope global
|
|
|
cbe35e |
- service: action should not be empty when calling legacy-actions (#947817)
|
|
|
cbe35e |
- ifup-eth: ignore arping errors (#928379)
|
|
|
cbe35e |
- replace tunctl with ip tuntap (#947875)
|
|
|
cbe35e |
- reload sysctl settings for vlans on ifup
|
|
|
cbe35e |
- try dhcpv6 after v4 failed (#846618)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 15 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.45-2
|
|
|
cbe35e |
- provides /sbin/service
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 15 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.45-1
|
|
|
cbe35e |
- turn on symlink protections in sysctl (#922030)
|
|
|
cbe35e |
- add systemd-random-seed.service to Before= in fedora-readonly.service (#888615)
|
|
|
cbe35e |
- mention rule6 files in sysconfig.txt
|
|
|
cbe35e |
- skip nmcli for wireless device (#863707)
|
|
|
cbe35e |
- remove config-noreplace from /etc/inittab (#627474)
|
|
|
cbe35e |
- remount-rootfs.service got renamed to systemd-remount-fs.service
|
|
|
cbe35e |
- compile netreport and usernetctl with full RELRO and PIE (#853178)
|
|
|
cbe35e |
- move stuff directly to /usr (#905492)
|
|
|
cbe35e |
- Remove NETWORKING_IPV6 from sysconfig.txt (#918622)
|
|
|
cbe35e |
- fix greps to correctly handle comments and quotation
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Feb 20 2013 Lukáš Nykrýn <lnykryn@redhat.com> - 9.44-1
|
|
|
cbe35e |
- limit udev rule for network renaming (#907365, mschmidt@redhat.com)
|
|
|
cbe35e |
- fix path for arpwatch, seems to be in /var/lib on Fedora 18
|
|
|
cbe35e |
- fix the path for lvm cache, there is no file /etc/lvm/.cache ( but there is one /etc/lvm/cache )
|
|
|
cbe35e |
- fix path for dhcpd, is /var/lib/dhcpd since 2005 ( see 31cdb58df77 on the dhcp package git )
|
|
|
cbe35e |
- fix the patch for apache modules in rwtab, that are now in /var/cache/httpd
|
|
|
cbe35e |
- remove no longer used directory ( at least in Fedora ), hald is deprecated,
|
|
|
cbe35e |
/var/tux cannot be found and xend seems to use a subdirectory of /var/lib/xen
|
|
|
cbe35e |
- correct the path for puppet directory in /etc/rwtab, now use /var/lib/puppet by default
|
|
|
cbe35e |
- allow passing -F from /.autorelabel to fixfiles when relabeling system (#904279)
|
|
|
cbe35e |
- correctly detect Open vSwitch device types
|
|
|
cbe35e |
- clear DEVICE and TYPE variables before every iteration (#902463)
|
|
|
cbe35e |
- sets BONDING_OPTS before interface is brougth up
|
|
|
cbe35e |
- check an IP address for existence in ifup-alias (#852005)
|
|
|
cbe35e |
- sync FSF address with GPL 2 text.
|
|
|
cbe35e |
- fix rpmlint's spaces vs tabs warning.
|
|
|
cbe35e |
- fix bogus %changelog dates.
|
|
|
cbe35e |
- build with $RPM_LD_FLAGS.
|
|
|
cbe35e |
- use -sf, not -s. (#901827)
|
|
|
cbe35e |
- add /usr/libexec/initscripts to file list (#894475)
|
|
|
cbe35e |
- rename term256 to 256term (glob sort) (#849429)
|
|
|
cbe35e |
- readd missing shebang. (#885821)
|
|
|
cbe35e |
- migrate even further away from /etc/sysconfig/network for hostname, and /etc/sysconfig/i18n.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Dec 7 2012 Bill Nottingham <notting@redhat.com> - 9.43-1
|
|
|
cbe35e |
- 60-net.rules: explicitly set the interface name (#870859)
|
|
|
cbe35e |
- ifup-eth: set firewall zone before ifup-ipv6 for DHCPv6 (#802415)
|
|
|
cbe35e |
- migrate to /etc/locale.conf, /etc/vconsole.conf (#881923)
|
|
|
cbe35e |
- rename_device: fix bogus locking
|
|
|
cbe35e |
- fix wireless device detection for kernel 3.6 (#875328)
|
|
|
cbe35e |
- drop fedora-storage-init, fedora-wait-storage (<prajinoha@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 31 2012 Bill Nottingham <notting@redhat.com> - 9.42-1
|
|
|
cbe35e |
- Halloween release!
|
|
|
cbe35e |
- add a default /etc/sysctl.conf that describes how to change values, and where the defaults now live. (#760254)
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
- fedora-autorelabel: don't pass -F to fixfiles (#863662, <dwalsh@redhat.com>)
|
|
|
cbe35e |
- fix calling of firewall-cmd in ifup-post/ifdown-post (<jpopelka@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 5 2012 Bill Nottingham <notting@redhat.com> - 9.41-1
|
|
|
cbe35e |
- debugmode: MALLOC_CHECK_ is not thread safe. Don't enable it by default (#853175)
|
|
|
cbe35e |
- Add support for 256 color terminals (<pbrady@redhat.com>)
|
|
|
cbe35e |
- ifdown-eth: be less strict about VLAN name (#505314, <vpavlin@redhat.com>)
|
|
|
cbe35e |
- drop prefdm
|
|
|
cbe35e |
- ifup-eth: allow duplicate address detection to be disabled (<bcodding@uvm.edu>)
|
|
|
cbe35e |
- process rule6-* for sit devices (#840009, <lnykryn@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 6 2012 Bill Nottingham <notting@redhat.com> - 9.40-1
|
|
|
cbe35e |
- drop support for booting non-systemd systems
|
|
|
cbe35e |
- drop legacy commands: getkey, fstab-decode, testd
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jun 29 2012 Bill Nottingham <notting@redhat.com> - 9.39-1
|
|
|
cbe35e |
- assorted documentation cleanups
|
|
|
cbe35e |
- typo, spelling, licenese clean up (<ville.skytta@iki.fi>)
|
|
|
cbe35e |
- service: add support for legacy custom actions packaged in
|
|
|
cbe35e |
/usr/libexec/initscripts/legacy-actions/<script>/<action>
|
|
|
cbe35e |
- network-functions: handle quoted HWADDR (#835372)
|
|
|
cbe35e |
- allow bridge names that start with '-' (<danken@redhat.com>)
|
|
|
cbe35e |
- remove all non-legacy uses of /sbin/route (#682308)
|
|
|
cbe35e |
- move default sysctl.conf to /usr/lib/sysctl.d (#760254)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 16 2012 Bill Nottingham <notting@redhat.com> - 9.37-1
|
|
|
cbe35e |
- Add support for firewalld zones (#802415, from <jpopelka@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 12 2012 Bill Nottingham <notting@redhat.com> - 9.36-1
|
|
|
cbe35e |
- ifup-aliases: fix IFS usage mangling of device names (#802119)
|
|
|
cbe35e |
- ifup/ifdown: fix typo (#802055, <lubek@users.sourceforge.net>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 9 2012 Bill Nottingham <notting@redhat.com> - 9.35-1
|
|
|
cbe35e |
- use the same DHCP lease file names as NetworkManager, where appropriate
|
|
|
cbe35e |
- copy network state from initramfs with a systemd service, not inline (<wwoods@redhat.com>)
|
|
|
cbe35e |
- sysconfig.txt: clean up section on disabling IPv6
|
|
|
cbe35e |
- ifup: allow for ifup-$TYPE/ifdown-$TYPE
|
|
|
cbe35e |
- fedora-readonly.service: drop StandardInput=tty (#785662)
|
|
|
cbe35e |
- sysconfig.txt: document additional ETHTOOL_OPTS enhancements (<raghusiddarth@gmail.com>)
|
|
|
cbe35e |
- port assorted ancient ifup-XYZ scripts away from ifconfig
|
|
|
cbe35e |
- don't use ifconfig in ifup-aliases (#721010, 588993, based on <tgummels@redhat.com>)
|
|
|
cbe35e |
- fedora-storage-init: handle dmraid sets with spaces (#728795, <lnykryn@redhat.com>)
|
|
|
cbe35e |
- fedora-readonly: don't exit with an error if SEinux isn't active. (#768628)
|
|
|
cbe35e |
- init.d/network: fix checks for network filesystems (#760018)
|
|
|
cbe35e |
- fedora-wait-storage: drop stdin/stdout/stderr (#735867)
|
|
|
cbe35e |
- netfs: move to legacy package
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 25 2011 Bill Nottingham <notting@redhat.com> - 9.34-1
|
|
|
cbe35e |
- read locale.conf if it exists (#706756)
|
|
|
cbe35e |
- ifdown: fix logic error with removing arp_ip_target (#745681)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 12 2011 Bill Nottingham <notting@redhat.com> - 9.33-1
|
|
|
cbe35e |
- netconsole: only use the first ARP response (#744309, <doug.knight@karmix.org>)
|
|
|
cbe35e |
- udev/rules.d/88-clock.rules: drop this entirely, as it causes issues in conjunction with systemd
|
|
|
cbe35e |
- init.d/network: be less picky about ifcfg file names. (#742276)
|
|
|
cbe35e |
- /sbin/service: do not check for the existence of a systemd unit before redirecting (<mschmidt@redhat.com>)
|
|
|
cbe35e |
- init.d/functions: only run consoletype if connected to something that's console-ish. (#657869)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 2 2011 Bill Nottingham <notting@redhat.com> - 9.32-1
|
|
|
cbe35e |
- prefdm: if exec() of all DMs fails, call 'plymouth quit' (#735215)
|
|
|
cbe35e |
- %%ghost rc.local (but leave it around on upgrade) (#734268)
|
|
|
cbe35e |
- ifup: support random bridging options via BRIDGING_OPTS (#734045, #665378)
|
|
|
cbe35e |
- selinuxfs moved to /sys/fs, handle it (#733759)
|
|
|
cbe35e |
- netfs/fedora-storage-init: call multipath and kpartx with -u (#733437)
|
|
|
cbe35e |
- plymouth lives in /bin (#702814)
|
|
|
cbe35e |
- drop fedora-autoswap
|
|
|
cbe35e |
- ifdown-eth: fix dhclient pid file for IPv6 (#729292, <daveg@dgit.ndo.co.uk>)
|
|
|
cbe35e |
- move some more things to the legacy subpackage
|
|
|
cbe35e |
- netfs: don't mount gfs2 here (#689593)
|
|
|
cbe35e |
- readonly-root: add an empty CLIENTSTATE definition (#725476)
|
|
|
cbe35e |
- drop sysinit hack/unhack
|
|
|
cbe35e |
- ifup-eth: allow more options in ETHTOOL_OPTS (#692410, #693583)
|
|
|
cbe35e |
- rwtab: update for systemd (#704783)
|
|
|
cbe35e |
- debug.csh: fix for latest csh
|
|
|
cbe35e |
- update translations: eu_ES, hy, ku, lo, my, wa
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jun 21 2011 Bill Nottingham <notting@redhat.com> - 9.31-1
|
|
|
cbe35e |
- remove ifup/ifdown-ipsec; they're now in ipsec-tools
|
|
|
cbe35e |
- rc.sysinit: start udev by hand, start_udev is no more (#714531)
|
|
|
cbe35e |
- ifup-aliases: if IPv6 is configured on the alias, configure it. (#583409)
|
|
|
cbe35e |
- ifup-eth: ensure DHCP_HOSTNAME is a short hostname, seed it from HOSTNAME if needed. (#697877)
|
|
|
cbe35e |
- network-functions: override NETMASK from PREFIX where specified (#705367, <mpoole@redhat.com>)
|
|
|
cbe35e |
- exclude single symlink from main package (#705457)
|
|
|
cbe35e |
- network: VLAN, etc. interfaces can be slaves; check for being a slave first. (#703475)
|
|
|
cbe35e |
- network: use LC_ALL=C when calling sed. (https://bugs.mageia.org/show_bug.cgi?id=1216, via <sander.lepik@eesti.ee>)
|
|
|
cbe35e |
- functions: (umount_loop) fuser -k defaults to -9; set the initial pass to kill -15. (#703457)
|
|
|
cbe35e |
- init.d/halt: don't match filesystem types in hostnames (#703203, <jmueller@data-tronics.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 27 2011 Bill Nottingham <notting@redhat.com> - 9.30-1
|
|
|
cbe35e |
- ifup-eth: handle IPADDRx correctly for static addresses (#697838)
|
|
|
cbe35e |
- systemd: fix storage setup service after cryptsetup.target (#699918)
|
|
|
cbe35e |
- prefdm: tweak how plymouth is quit in the gdm/kdm case (<rstrode@redhat.com>)
|
|
|
cbe35e |
- support /etc/hostname as an override for hostname in /etc/sysconfig/network
|
|
|
cbe35e |
- init.d/single: only ship this in -legacy
|
|
|
cbe35e |
- network-functions: fix IPADDRx index handling (<jklimes@redhat.com>)
|
|
|
cbe35e |
- ifup/down-eth: properly handle apr_ip_target, when used with module options (#604669, <harald@redhat.com>)
|
|
|
cbe35e |
- ifup-eth: ensure bond exists before bringing up slaves (#694501)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 06 2011 Bill Nottingham <notting@redhat.com> - 9.29-1
|
|
|
cbe35e |
- systemd: add a storage setup service after cryptsetup.target (#692198)
|
|
|
cbe35e |
- fix /.autorelabel handling (<mschimdt@redhat.com>)
|
|
|
cbe35e |
- don't explicitly disallow IPv6 aliases (#583409, #612877)
|
|
|
cbe35e |
- netfs: don't print errors if mdadm isn't installed. (#692187)
|
|
|
cbe35e |
- ifup-eth: use /run/initramfs rather then /dev/.run/initramfs (<harald@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 25 2011 Bill Nottingham <notting@redhat.com> - 9.28-1
|
|
|
cbe35e |
- add some generic network logging, port scripts to it (#507515, #653630)
|
|
|
cbe35e |
- add an error when setting the gateway fails (#672202)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Mar 17 2011 Bill Nottingham <notting@redhat.com> - 9.27-1
|
|
|
cbe35e |
- init.d/functions: fix mishandled argument to fstab-decode. (#685137)
|
|
|
cbe35e |
- support ipv6 routing rules, merge route/rule code (#680872, <tobiasoed@hotmail.com>)
|
|
|
cbe35e |
- autorelabel.service, loadmodules.service: fix conditions so that they operate as OR, not AND. (#684125)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Mar 10 2011 Bill Nottingham <notting@redhat.com> - 9.26-1
|
|
|
cbe35e |
- network-functions: fix check for unmanaged devices (#670154)
|
|
|
cbe35e |
- ifup-eth: also check /dev/.run/initramfs (<harald@redhat.com>)
|
|
|
cbe35e |
- systemd: execute fedora-sysinit-unhack after sysinit.target (<arvidjaar@gmail.com>)
|
|
|
cbe35e |
- init.d/functions: don't do force/lazy umount for the first nfs umount. (#676851, <jlayton@redhat.com>)
|
|
|
cbe35e |
- further sysctl.d fixes (#593211)
|
|
|
cbe35e |
- init.d/functions: make killproc more granular when delay is passed. (#428029, <xjakub@fi.muni.cz>)
|
|
|
cbe35e |
- ifup: add GVRP support (#597598, <tomek@jot23.org>)
|
|
|
cbe35e |
- init.d/functions: add support for noauto crypt devices, to mirror systemd
|
|
|
cbe35e |
- documentation updates
|
|
|
cbe35e |
- bash cleanups (<ville.skytta@iki.fi>)
|
|
|
cbe35e |
- ifup: remove network device naming requirement from VLAN devices (#462095, <Matt_Domsch@dell.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 25 2011 Bill Nottingham <notting@redhat.com> - 9.25-1
|
|
|
cbe35e |
- remove 'Red Hat Linux' references from sysctl.conf* (<ville.skytta@iki.fi>)
|
|
|
cbe35e |
- rc.sysinit: add support for sysctl.d (#593211, <martin@laptop.org>)
|
|
|
cbe35e |
- console_check: support OMAP serial console (#678875, <ndevos@redhat.com>)
|
|
|
cbe35e |
- /sbin/service: accept --ignore-dependencies, --skip-redirect as options
|
|
|
cbe35e |
- /sbin/service: honor SYSTEMCTL_IGNORE_DEPENDENCIES (<lennart@poettering.net>)
|
|
|
cbe35e |
- translation updates: kn, pa, ta, uk
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jan 21 2011 Bill Nottingham <notting@redhat.com> - 9.24-1
|
|
|
cbe35e |
- ifup-eth/ifdown-eth: handle 'MASTER' being quoted. (#651450, <gfidente@redhat.com>)
|
|
|
cbe35e |
- tmpfiles.d: remove entries that exist in systemd
|
|
|
cbe35e |
- frob device when calling sysctl, in case of vlans. (#665601, #667211, <ossman@cendio.se>)
|
|
|
cbe35e |
- netfs: rework to handle bind-mounted cifs/ncpfs (#663140, <dmudrich@nospam.mudrichsystems.com>)
|
|
|
cbe35e |
- own /etc/crypttab (#664309)
|
|
|
cbe35e |
- init.d/network: add # as a valid character in network device names (<Matt_Domsch@dell.com>)
|
|
|
cbe35e |
- ifup-eth: fix routing regression (#660363)
|
|
|
cbe35e |
- sysctl.conf.s390 - system z optimized sysctl settings per default (#633323, <plautrba@redhat.com>)
|
|
|
cbe35e |
- serial.conf, tty.conf: stop tty and serial also on runlevel 's' (#629257, <plautrba@redhat.com>)
|
|
|
cbe35e |
- translation updates: bn_IN, es, gu, hi, nds, or, pa, uk, zh_CN
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Dec 02 2010 Bill Nottingham <notting@redhat.com> - 9.23-1
|
|
|
cbe35e |
- don't throw errors on unreadable /dev/stderr (#650103, <plautrba@redhat.com>)
|
|
|
cbe35e |
- support multiple ipv4 addresses, not just alias devices (#132912, #633984, <jklimes@redhat.com>)
|
|
|
cbe35e |
- properly handle /var/run on tmpfs (#656602, <plautrba@redhat.com>)
|
|
|
cbe35e |
- allow '0' as a vlan tag (#624704, #635360)
|
|
|
cbe35e |
- assorted systemd unit cleanup (<lennart@poettering.net>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 16 2010 Bill Nottingham <notting@redhat.com> - 9.22-1
|
|
|
cbe35e |
- merge in systemd-specific startup support; package a -legacy package
|
|
|
cbe35e |
(based on work by <harald@redhat.com>)
|
|
|
cbe35e |
- init-ipv6.global: don't load sit module on shutdown. (#654098, <ejsheldrake@gmail.com>)
|
|
|
cbe35e |
- do not call rhgb-client
|
|
|
cbe35e |
- network-functions: add infiniband mapping (#648524, <monis@voltaire.com>)
|
|
|
cbe35e |
- fix ifdown nmcli invocation (#612934, jklimes@redhat.com>)
|
|
|
cbe35e |
- *ipv6*: don't use obsolete /sbin/ip wrapper
|
|
|
cbe35e |
- sysconfig.txt: adjust clock docs (#637058)
|
|
|
cbe35e |
- lang.csh: fix tcsh + grep-2.7. (#636552)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 17 2010 Bill Nottingham <notting@redhat.com> - 9.21-1
|
|
|
cbe35e |
- build for systemd only
|
|
|
cbe35e |
- ship a default.target link in case the one in /etc gets deleted
|
|
|
cbe35e |
- rc.sysinit: reset btmp on boot if necessary (#633768, <dmach@redhat.com>)
|
|
|
cbe35e |
- single.service: fix invocation so that 'runlevel' works (#630914)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Sep 9 2010 Bill Nottingham <notting@redhat.com> - 9.20-1
|
|
|
cbe35e |
- use new pidof -m option to avoid false positives (#632321)
|
|
|
cbe35e |
- systemd/single: set $HOME for single-user mode. (#631590)
|
|
|
cbe35e |
- systemd/killal.service: require shutdown.target (#630935, #632198)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 7 2010 Bill Nottingham <notting@redhat.com> - 9.19-1
|
|
|
cbe35e |
- fix packaging of prefdm, rc-local systemd units (#630952)
|
|
|
cbe35e |
- systemd/single.service: conflict with shutdown.target (#630935)
|
|
|
cbe35e |
- translation updates: ja, pt_BR, ru
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 3 2010 Bill Nottingham <notting@redhat.com> - 9.18-1
|
|
|
cbe35e |
- fix for new cgroups location (#612789, others <plautrba@redhat.com>)
|
|
|
cbe35e |
- add in basic systemd units
|
|
|
cbe35e |
- translation updates: nb, pt, sv
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 25 2010 Bill Nottingham <notting@redhat.com> - 9.17-1
|
|
|
cbe35e |
- init.d/functions: redirect start/stop/condrestart/etc to systemctl in a systemd environment (#612728)
|
|
|
cbe35e |
- rc.sysinit: don't frob the console loglevel on boot (#621257, #626572)
|
|
|
cbe35e |
- service: use systemctl on systemd services
|
|
|
cbe35e |
- 10-console.rules: only init consoles on add, not change (<lennart@poettering.net>)
|
|
|
cbe35e |
- halt: fix unmounting bind mounts (#620461, <phr@doc.ic.ac.uk>)
|
|
|
cbe35e |
- killall: exit 0 (#605519)
|
|
|
cbe35e |
- translation updates: de, es, fi, fr, nl, pl, sv, uk
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 27 2010 Bill Nottingham <notting@redhat.com> - 9.16-1
|
|
|
cbe35e |
- halt: don't umount cgroups (#612789)
|
|
|
cbe35e |
- rename_device: dequote DEVICE key, handle SUBCHANNELS (<harald@redhat.com>)
|
|
|
cbe35e |
- sysconfig.txt: document PREFIX/NETMASK (#617481, <jklimes@redhat.com>)
|
|
|
cbe35e |
- sysconfig.txt: document NETWORKWAIT (#595386)
|
|
|
cbe35e |
- remove support for hotkey interactive startup (#605016). Use 'confirm' on the commandline
|
|
|
cbe35e |
(but even that doesn't fully make sense in an upstart/systemd world)
|
|
|
cbe35e |
- don't directly execute bash for single-user mode (#540216, #584443, #585053)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jun 24 2010 Bill Nottingham <notting@redhat.com> - 9.15-1
|
|
|
cbe35e |
- ifup-eth: check for dhclient configuration in /etc/dhcp as well (#607764, #607766)
|
|
|
cbe35e |
- network-functions: handle quoted SUBCHANNELS (#607481)
|
|
|
cbe35e |
- netfs: allow for encrypted network block devices (#605600)
|
|
|
cbe35e |
- ifdown-ipsec: don't use a full path when killing racoon, so it works in MLS policy (#567295)
|
|
|
cbe35e |
- network-functions: check NM_CONTROLLED before deciding to use NM for a connection. (#599707, probably others.)
|
|
|
cbe35e |
- rc.sysinit: always reboot on autorelabel. (#595823)
|
|
|
cbe35e |
- init.d/functions: handle permission denied on reading PID file. (#595597)
|
|
|
cbe35e |
- clean up some deprecated items
|
|
|
cbe35e |
- translation updates: el, nl, or, zh_CN
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed May 19 2010 Bill Nottingham <notting@redhat.com> - 9.14-1
|
|
|
cbe35e |
- clean up plymouth shtudown splash (#590099, <rstrode@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: use lvm2 --sysinit option (#588777)
|
|
|
cbe35e |
- network-functions: behave sanely in the absence of $DEVICE (#589521)
|
|
|
cbe35e |
- sysconfig/debug: export debug variables (#589378)
|
|
|
cbe35e |
- netfs: check for NM to be connected, not just running (#589710)
|
|
|
cbe35e |
- rcS*.conf: check if /etc/inittab exists (#590703, <plautrba@redhat.com>)
|
|
|
cbe35e |
- port vlan code to /sbin/ip (#566485, <plautrba@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed May 5 2010 Bill Nottingham <notting@redhat.com> - 9.12-1
|
|
|
cbe35e |
- update for final nmcli syntax
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon May 3 2010 Bill Nottingham <notting@redhat.com> - 9.11-1
|
|
|
cbe35e |
- init/plymouth-shutdown.conf: add 'task' here as well
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 28 2010 Bill Nottingham <notting@redhat.com> - 9.10-1
|
|
|
cbe35e |
- fstab-decode.8: fix formatting (#586476)
|
|
|
cbe35e |
- prefdm: add --retain-splash for KDM as well (#585250)
|
|
|
cbe35e |
- init.d/functions: handle being unable to read a specified pid file. (#584575)
|
|
|
cbe35e |
- init/quit-plymouth.conf: use 'task' for stopping plymouth. (<rstrode@redhat.com>)
|
|
|
cbe35e |
- ifup-eth: run dhclient -6 similar to dhclient -4. (#585047)
|
|
|
cbe35e |
- net.hotplug: don't run on odd interfaces. (#584530)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 9 2010 Bill Nottingham <notting@redhat.com> - 9.09-1
|
|
|
cbe35e |
- rc.sysinit: change RAID handling (<dledford@redhat.com>)
|
|
|
cbe35e |
- fix german mistranslation (#575954, <pb@bierenger.de>)
|
|
|
cbe35e |
- init.d/functions: correct fix for environment with runuser. (#203010, #564093)
|
|
|
cbe35e |
- halt: fix mdmom pid handling for newer mdadm (#549726, <dledford@redhat.com>)
|
|
|
cbe35e |
- init.d/network: only blacklist the original loopback interface. (#579816, <evgsyr@gmail.com>
|
|
|
cbe35e |
- translation updates: de, ja, nb, pt, sv, uk
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 8 2010 Bill Nottingham <notting@redhat.com> - 9.08-1
|
|
|
cbe35e |
- network-functions: redirect error messages when nmcli isn't installed (#570828, <zing@fastmail.fm>)
|
|
|
cbe35e |
- ifdown: use nmcli to get the device, if not specified
|
|
|
cbe35e |
- ifdown: fix typo
|
|
|
cbe35e |
- translation updates: fr
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 3 2010 Bill Nottingham <notting@redhat.com> - 9.07-1
|
|
|
cbe35e |
- clean out some extraneous package requirements
|
|
|
cbe35e |
- fix dmraid error checking now that dmraid has return codes (#568790, others)
|
|
|
cbe35e |
- integrate with NetworkManager for ifup/ifdown (#523064)
|
|
|
cbe35e |
- translation updates: cs, da, de, en_GB, es, fi, nl, pl, pt_BR, ru, sr
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 19 2010 Bill Nottingham <notting@redhat.com> - 9.06-1
|
|
|
cbe35e |
- move ccw_init and ccw udev rules to s390utils (#539491)
|
|
|
cbe35e |
- rc.sysinit: suppress LVM2 warnings. (#561938, <prajnoha@redhat.com>)
|
|
|
cbe35e |
- fix translated checks for user input (#566579)
|
|
|
cbe35e |
- refresh translations
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 15 2010 Bill Nottingham <notting@redhat.com> - 9.05-1
|
|
|
cbe35e |
- network-functions: don't use ethtool for link state, assorted other cleanups
|
|
|
cbe35e |
- inittab: fix job paths in comments (<plautrba@redhat.com>)
|
|
|
cbe35e |
- init.d/functions: don't clear environment in runuser (#203010, #564093)
|
|
|
cbe35e |
- 88-clock.rules: use ATTR, not SYSFS (#560756)
|
|
|
cbe35e |
- init.d/network: don't quote regex argument to bash's =~ (<ville.skytta@iki.fi>)
|
|
|
cbe35e |
- network-functions: use HWADDR to determine DEVICE if DEVICE isn't set (#545597)
|
|
|
cbe35e |
- don't HUP init when messagebus starts (#557791)
|
|
|
cbe35e |
- setsysfont: use UNIMAP, not SYSFONTACM, when calling unicode_start (#557089)
|
|
|
cbe35e |
- ifup: don't leave the link down on link failure for DHCP (#462013, #491009)
|
|
|
cbe35e |
- translation updates: cs
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jan 15 2010 Bill Nottingham <notting@redhat.com> - 9.04-1
|
|
|
cbe35e |
- various shell-related cleanups and optimizations <ville.skytta@iki.fi>
|
|
|
cbe35e |
- ifup-eth: use dhclient's -H option instead of munging dhclient config files
|
|
|
cbe35e |
- rc.sysinit: move mdadm after dmraid (#494821)
|
|
|
cbe35e |
- ifup-eth: use dhclient -6, not the no-longer-included dhcp6c
|
|
|
cbe35e |
- add more man pages (#529328, <plautrba@redhat.com>)
|
|
|
cbe35e |
- move is_wireless after MACADDR/MTU setting (#552638)
|
|
|
cbe35e |
- serial.conf: respawn correctly. (#552324, <zing@fastmail.fm>)
|
|
|
cbe35e |
- network-functions: use sysfs for wireless check (#551019, <adel.gadllah@gmail.com>)
|
|
|
cbe35e |
- reload init on started messagebus (<plautrba@redhat.com>)
|
|
|
cbe35e |
- honor HOTPLUG in ifdown (#547737)
|
|
|
cbe35e |
- network-functions: silence error. (#516569)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Dec 9 2009 Bill Nottingham <notting@redhat.com> - 9.03-1
|
|
|
cbe35e |
- migrate to upstart 0.6.x (<notting@redhat.com>, <plautrba@redhat.com>)
|
|
|
cbe35e |
-- jobs move to /etc/init
|
|
|
cbe35e |
-- collapse rcX and ttyX jobs into single job definitions
|
|
|
cbe35e |
-- jobs are no longer %%config
|
|
|
cbe35e |
- remove obsolete doexec command
|
|
|
cbe35e |
- rc.sysinit: handle yet another random return string from dmraid
|
|
|
cbe35e |
- remove never-used 'sulogin' upstart event
|
|
|
cbe35e |
- fix time-setting udev rules for old-style RTC devices (#537595)
|
|
|
cbe35e |
- init.d/network: keep error codes limited to '1'. (#537841)
|
|
|
cbe35e |
- add initial ifup/ifdown man pages. (#529328, <plautrba@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 27 2009 Bill Nottingham <notting@redhat.com> - 9.02-1
|
|
|
cbe35e |
- remove long-since deprecated initlog
|
|
|
cbe35e |
- remove IUCV support (#507217)
|
|
|
cbe35e |
- halt: put a wrapper around killall5 to account for retval 2 not being an error (#526539, <hdegoede@redhat.com>)
|
|
|
cbe35e |
- ifup-eth: honor DEFROUTE=yes|no for 'all' connection types. (#528822)
|
|
|
cbe35e |
- network-functions: load bonding driver if BONDING_OPTS is defined. (#516569)
|
|
|
cbe35e |
- rc.sysinit: put /dev/shm in mtab too, as dracut now mounts it. (#528667)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 9 2009 Bill Nottingham <notting@redhat.com> - 9.01-1
|
|
|
cbe35e |
- rc.sysinit: fix handling of dmraid output to avoid error messages (#527726, <mschmidt@redhat.com>)
|
|
|
cbe35e |
- rwtab: add /var/lib/xend (#526046)
|
|
|
cbe35e |
- translation updates: fi, nb, pl
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 2 2009 Bill Nottingham <notting@redhat.com> - 9.00-1
|
|
|
cbe35e |
- halt: wrap /sbin/killall5 to catch some return codes (#526539)
|
|
|
cbe35e |
- netfs, netconsle, network: fix return codes to match LSB spec (#524489, #524480, #524486)
|
|
|
cbe35e |
- handle kernels compiled both with and without CONFIG_RTC_HCTOSYS
|
|
|
cbe35e |
- halt: use killall5's return code to avoid unncesssary sleeping (#524359, <hdegoede@redhat.com>)
|
|
|
cbe35e |
- halt: don't kill mdmon on shutdown. (#524357, <hdegoede@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: do not try and activate ISW raidsets, unless noiswmd is passed. (#524355, <hdegoede@redhat.com>)
|
|
|
cbe35e |
- translation updates: ca, cs, da, mai, po, sv, uk
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 14 2009 Bill Nottingham <notting@redhat.com> - 8.99-1
|
|
|
cbe35e |
- init.d/functions: add a '-l' option to status to pass lock file name (#521772)
|
|
|
cbe35e |
- tweak kernel conflict
|
|
|
cbe35e |
- translation updates: as, bn_IN, de, fr, hi, it, hu, kn, mr, or, pa, pt, ru, te
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 2 2009 Bill Nottingham <notting@redhat.com> - 8.98-1
|
|
|
cbe35e |
- sysconfig.txt: doucment DHCP_HOSTNAME (#498052)
|
|
|
cbe35e |
- 88-clock.rules: Use --systz instead of --hctosys. (#517886, #489494)
|
|
|
cbe35e |
- Support rwtab and state passed from dracut initrd (#515771, <wtogami@redhat.com>)
|
|
|
cbe35e |
- restore context of *tmp files (#519748)
|
|
|
cbe35e |
- halt: don't try and save mixer settings if it's not writable. (#515771)
|
|
|
cbe35e |
- rwtab: add /var/spool, /var/lib/dbus, others (#494973, #515771)
|
|
|
cbe35e |
- sysconfig.txt: clarify docs (#518614)
|
|
|
cbe35e |
- rc.sysinit: don't pretend /selinux is configurable (#518164)
|
|
|
cbe35e |
- assorted ipv6 redundant code deletion
|
|
|
cbe35e |
- 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
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 10 2009 Bill Nottingham <notting@redhat.com> - 8.97-1
|
|
|
cbe35e |
- ipcalc: fix IPv6 address checking (#516319)
|
|
|
cbe35e |
- ifup-aliases: fix syntax error from earlier cleanups. (#515612, <jik@kamens.brookline.ma.us>)
|
|
|
cbe35e |
- translation updates: nb
|
|
|
cbe35e |
- rc.sysinit: remove useless call to pam_console_apply
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 3 2009 Bill Nottingham <notting@redhat.com> - 8.96-1
|
|
|
cbe35e |
- fix up upstart rules for s390(x). (#515222)
|
|
|
cbe35e |
- leave ChangeLog in the tarball only. (#515012)
|
|
|
cbe35e |
- disable netfilter on bridged interfaces. (#512206)
|
|
|
cbe35e |
- assorted shell-related cleanups to ipv6 and other code (<victor.lowther@gmail.com>)
|
|
|
cbe35e |
- use resolv.conf from dracut netboot before setting hostname. (#514801, <wtogami@redhat.com>)
|
|
|
cbe35e |
- ipcalc updates (<victor.lowther@gmail.com>)
|
|
|
cbe35e |
- only use ethtool for link checking; no more mii-tool
|
|
|
cbe35e |
- require /sbin/blkid directly, as it moves between packages (#508413)
|
|
|
cbe35e |
- redirect bash errors on 'unset' to /dev/null. (#482888)
|
|
|
cbe35e |
- fix dmraid partition naming (#501476, <hdegoede@redhat.com>)
|
|
|
cbe35e |
- don't quote upstart signals. (#501155)
|
|
|
cbe35e |
- translation updates: bn_IN, da, es, sk
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri May 1 2009 Bill Nottingham <notting@redhat.com> - 8.95-1
|
|
|
cbe35e |
- don't kill runlevel events on subsequent entering of the same runlevel (#498514)
|
|
|
cbe35e |
- lang.*sh: handle spaces in $HOME (#498482)
|
|
|
cbe35e |
- network-functions: explicitly source from the proper directory. (#496233)
|
|
|
cbe35e |
- remove persistent names on sys-unconfig. (#448322)
|
|
|
cbe35e |
- init.d/functions: cgexec has moved to /bin (#495715)
|
|
|
cbe35e |
- allow changing of VLAN type even if the module is already loaded. (#495053, <pietro@bertera.it>)
|
|
|
cbe35e |
- translation updates: fr, ml, pt
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 7 2009 Bill Nottingham <notting@redhat.com> - 8.94-1
|
|
|
cbe35e |
- prefdm: add simple fallbacks, sort rpmdb query for consistency (#494461)
|
|
|
cbe35e |
- translation updates; bn, de, pt, ru, te
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Apr 2 2009 Bill Nottingham <notting@redhat.com> - 8.93-1
|
|
|
cbe35e |
- rc.sysinit: add a disk synchronization point with scsi_wait_scan post-udev (#481470)
|
|
|
cbe35e |
- netfs: drop smbfs support, we don't even ship the module or tools any more
|
|
|
cbe35e |
- setsysfont: honor LC_CTYPE (#487133, <skasal@redhat.com>)
|
|
|
cbe35e |
- prefdm: do fallbacks based on provides of 'service(graphical-login)' (#485751)
|
|
|
cbe35e |
- rc.sysinit: handle multiple IP addresses without choking in the stateless code (#443945)
|
|
|
cbe35e |
- rc.sysinit: catch the right error code from checking for passphrases (#483269, <vladis.kletnieks@vt.edu>)
|
|
|
cbe35e |
- prefdm: handle empty /etc/sysconfig/desktop correctly (#480113)
|
|
|
cbe35e |
- ifup-ipsec: allow use of either ESP only or AH only (#251494, <stijn.tintel@x-tend.be>)
|
|
|
cbe35e |
- ifup-eth: allow passing of arguments to dhcp6c (#437949, <pekkas@netcore.fi>)
|
|
|
cbe35e |
- ifup-eth: fix dhcpv6 when there is no IPv4 configuration (#486507)
|
|
|
cbe35e |
- ifup-ppp: avoid spurious SIGCHLD to pppd (#448881)
|
|
|
cbe35e |
- ifup-eth: add support for creating TUN/TAP devices on the fly (#453973, <scott@zahna.com>)
|
|
|
cbe35e |
- stop plymouth when starting single-user mode. (#491062)
|
|
|
cbe35e |
- add plymouth shutdown script (#473237, <jmccann@redhat.com>)
|
|
|
cbe35e |
- fix lang.sh/lang.sh/consoletype for execution with '-e'
|
|
|
cbe35e |
- ifdown-eth: remove arp_ip_target on ifdown for bonding devices. (#483711)
|
|
|
cbe35e |
- add vlan support for s390 HSI interfaces. (#490584)
|
|
|
cbe35e |
- ipcalc: support IPv6 (#464268, <dcantrell@redhat.com>)
|
|
|
cbe35e |
- translation updates: all
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 16 2009 Bill Nottingham <notting@redhat.com> - 8.91-1
|
|
|
cbe35e |
- fix DHCP reading of options from ifcfg-XXX (#483257)
|
|
|
cbe35e |
- ifdown-eth: clean up bridges on ifdown (#463325, <sean@bruenor.org>)
|
|
|
cbe35e |
- support MD on iSCSI (#480627)
|
|
|
cbe35e |
- remove support for 'ifcfg-foo-bar' configurations that inherit from 'ifcfg-foo'
|
|
|
cbe35e |
- remove slip support
|
|
|
cbe35e |
- translation updates: es, pl, ca, sr, de, sv, pa, pt_BR
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 9 2009 Bill Nottingham <notting@redhat.com> - 8.90-1
|
|
|
cbe35e |
- init.d/functions: cgroup support (<jsafrane@redhat.com>)
|
|
|
cbe35e |
- fix various issues with dmraid handling (#485895, <hdegoede@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: fix typo. (#487926)
|
|
|
cbe35e |
- console_init: loadkeys has a -q option for silent running. Use it.
|
|
|
cbe35e |
- ifup-tunnel: add compatibility for openNHRP tunnels (#486559, <claude.tompers@ieee.lu>)
|
|
|
cbe35e |
- ccw_init: don't re-init an existing device, it causes errors. (#484411, <jpayne@redhat.com>)
|
|
|
cbe35e |
- netfs: use same kpartx arguments as rc.sysinit
|
|
|
cbe35e |
- don't list mtab in rwtab (#457941)
|
|
|
cbe35e |
- translation updates: fi, de, mai
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jan 28 2009 Bill Nottingham <notting@redhat.com> - 8.89-1
|
|
|
cbe35e |
- use a leading path when sourcing files (#482826)
|
|
|
cbe35e |
- netfs: don't unmount nfsd filesystem by accident (#481794, <sprabhu@redhat.com>)
|
|
|
cbe35e |
- bring up ipsec interfaces last (#481733)
|
|
|
cbe35e |
- ifdown-eth: fix bridge + vlan (#481557, <danken@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jan 20 2009 Bill Nottingham <notting@redhat.com> - 8.88-1
|
|
|
cbe35e |
- init.d/network: return success/failure correctly (#480677)
|
|
|
cbe35e |
- init.d/halt: fix typo (#480799)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jan 19 2009 Bill Nottingham <notting@redhat.com> - 8.87-1
|
|
|
cbe35e |
- rename_device: be much faster in the presence of many devices (#480687, <danms@us.ibm.com>)
|
|
|
cbe35e |
- fix switching from targeted to MLS policy (#479054, <dwalsh@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: don't set $(uname -r) or $(uname -m); they're not used
|
|
|
cbe35e |
- network-functions-ipv6: set MTU correctly for 6to4. (#477976, <ackistler@yahoo.com>)
|
|
|
cbe35e |
- add more entries to rwtab (#476799, <harald@redhat.com>)
|
|
|
cbe35e |
- net.hotplug: Bail out sooner if the network service isn't running
|
|
|
cbe35e |
- init.d/halt: determine reboot/halt via existing INIT_HALT environment variable. (#475227)
|
|
|
cbe35e |
- event.d/serial: add some docs
|
|
|
cbe35e |
- init.d/functions: __pids_var_run: Handle multi-line pid files correctly (#473287)
|
|
|
cbe35e |
- remove support for no longer existing 'brctl setgcint' command. (#360471)
|
|
|
cbe35e |
- add %%config back for ifcfg-lo (#472761)
|
|
|
cbe35e |
- rcS/rcS-sulogin: don't match commented lines when finding runlevel (#472717)
|
|
|
cbe35e |
- updated translations: de, sk
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 11 2008 Bill Nottingham <notting@redhat.com> - 8.86-1
|
|
|
cbe35e |
- stop plymouth before stopping the runlevel (#467207)
|
|
|
cbe35e |
- fix get_config_by_subchannel (#459044, <harald@redhat.com>)
|
|
|
cbe35e |
- use blkid -l to pick a single most appropriate device (#470027)
|
|
|
cbe35e |
- don't mkswap on halt, as it breaks swap-by-label/UUID (#469823)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 31 2008 Bill Nottingham <notting@redhat.com> - 8.85-1
|
|
|
cbe35e |
- add some error handling/hiding to netfs NM dispatcher script (#469197)
|
|
|
cbe35e |
- halt: fix code that causes a syntax error on multiple sound cards (#469156)
|
|
|
cbe35e |
- require a new enough udev version to handle where we put the rules
|
|
|
cbe35e |
- exit 0 in /etc/rc.d/rc (#469050)
|
|
|
cbe35e |
- don't set up encrypted devices that have already been set up under different
|
|
|
cbe35e |
names (#462371, <wwoods@redhat.com>)
|
|
|
cbe35e |
- accept either the '+<addr>', or comma-separated addresses for arp_ip_target. (#467954,
|
|
|
cbe35e |
<darcy.sherwood@gmail.com>)
|
|
|
cbe35e |
- translation updates: hu, kn, ko, ml, sr, sr@latin
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 14 2008 Bill Nottingham <notting@redhat.com> - 8.84-1
|
|
|
cbe35e |
- override Arabic, Persian, and Hebrew on the console (<alsadi@ojuba.org>)
|
|
|
cbe35e |
- explicitly run mdadm on boot to catch degraded arrays. (<dledford@redhat.com>)
|
|
|
cbe35e |
- fix setting of console font/map (#458362, <ak@sensi.org>)
|
|
|
cbe35e |
- translations updates: hi, kn, nb, sk, sv, ta
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 30 2008 Bill Nottingham <notting@redhat.com> - 8.83-1
|
|
|
cbe35e |
- various merge review fixes (#225900)
|
|
|
cbe35e |
Notably: init scripts/network scripts are no longer %%config
|
|
|
cbe35e |
- remove some extraneous device-mapper initialization
|
|
|
cbe35e |
- use pidfile in status before calling pidof (#463205)
|
|
|
cbe35e |
- use plymouth directly, not the rhgb-client wrapper
|
|
|
cbe35e |
- move bridging after bonding (#449950, <djuran@redhat.com>)
|
|
|
cbe35e |
- use alsactl to save sound settings. (#462677, <jkysela@redhat.com>)
|
|
|
cbe35e |
- quit plymouth differently (<rstrode@redhat.com>)
|
|
|
cbe35e |
- make sure we don't try and spawn a repair shell when there's no
|
|
|
cbe35e |
tty (#463161)
|
|
|
cbe35e |
- move udev rules to /lib
|
|
|
cbe35e |
- stateless updates (#433702, <harald@redhat.com>)
|
|
|
cbe35e |
- call logger with a full path (#447928, <harald@redhat.com>)
|
|
|
cbe35e |
- translation updates: as, bn_IN, ca, cz, de, es, fi, fr, gu, it, ja,
|
|
|
cbe35e |
lv, mr, nl, or, pa, pl, pt_BR, ru, te, zh_TW
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 10 2008 Bill Nottingham <notting@redhat.com> - 8.82-1
|
|
|
cbe35e |
- refresh translation strings
|
|
|
cbe35e |
- plymouth updates. (#460702, <rstrode@redhat.com>)
|
|
|
cbe35e |
- translation updates: fi, lv, no
|
|
|
cbe35e |
- remove duplicate dependency (#465182)
|
|
|
cbe35e |
- ifup-eth: Change how we set the zeroconf route. (#239609)
|
|
|
cbe35e |
- ifup*: Use 0.0.0.0/0, not 0/0. (#460580)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 29 2008 Bill Nottingham <notting@redhat.com> - 8.81-1
|
|
|
cbe35e |
- rc.sysinit: Don't use -L in find (#458652, #458504, CVE-2008-3524)
|
|
|
cbe35e |
- ifup: kill more code from loopback bringup
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 29 2008 Bill Nottingham <notting@redhat.com> - 8.80-1
|
|
|
cbe35e |
- Fix translation typo (#455804, <ruslanpisarev@gmail.com>)
|
|
|
cbe35e |
- Turn off syncookies
|
|
|
cbe35e |
- Cleanups for proper plymouth support
|
|
|
cbe35e |
- Move the mcheck code to a debugmode package, make it more generic
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jul 14 2008 Bill Nottingham <notting@redhat.com> - 8.79-1
|
|
|
cbe35e |
- fix mcheck stuff to be installed correctly
|
|
|
cbe35e |
- don't do an arping check for loopback interfaces
|
|
|
cbe35e |
- console_init: don't wait (<arjan@infradead.org>)
|
|
|
cbe35e |
- rc: clean up extraneous set -x noise
|
|
|
cbe35e |
- remove references to static dmraid/multipath binaries (#453987)
|
|
|
cbe35e |
- translation updates: lv
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jun 20 2008 Bill Nottingham <notting@redhat.com> - 8.78-1
|
|
|
cbe35e |
- fix mounting of /dev/pts
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jun 19 2008 Bill Nottingham <notting@redhat.com> - 8.77-1
|
|
|
cbe35e |
- NMDispatcher/05-netfs: fix check for default route (#445509)
|
|
|
cbe35e |
- service: don't set $LANG, rely on it to inherit from system locales (#422141)
|
|
|
cbe35e |
- init.d/functions: fix resolve_dm_raid() for older dmraid configs
|
|
|
cbe35e |
- Don't unmount sysfs in halt. (#446292)
|
|
|
cbe35e |
- rc.sysinit: don't try to startup crypto if we can't find the device
|
|
|
cbe35e |
- rc.sysinit: don't echo crypto stuff unless we're actually *doing* something
|
|
|
cbe35e |
- ifup: don't try to rename devices - udev rules are the way to go
|
|
|
cbe35e |
- rc.sysinit: fix typo, and don't restorecon on swap, etc. partitions (#448886)
|
|
|
cbe35e |
- set MALLOC_CHECK_ & MALLOC_PERTURB_ if configured (<pjones@redhat.com>)
|
|
|
cbe35e |
- console_init: support SYSFONTACM correctly, and support UNIMAP (#448704,
|
|
|
cbe35e |
<vvv+fedora@colocall.net>)
|
|
|
cbe35e |
- don't export GRAPHICAL - plymouth is for all modes. also, don't start rhgb
|
|
|
cbe35e |
- fix clock rules to properly handle old-style RTC devices (#447019)
|
|
|
cbe35e |
- translation updates: ko, or, pl
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri May 2 2008 Bill Nottingham <notting@redhat.com> - 8.76-1
|
|
|
cbe35e |
- fix tcsh syntax error (#444998)
|
|
|
cbe35e |
- remove debugging cruft from rcS-sulogin
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 29 2008 Bill Nottingham <notting@redhat.com> - 8.74-1
|
|
|
cbe35e |
- use full path to /sbin/ip in NetworkManagerDispatcher script (#444378)
|
|
|
cbe35e |
- lang.{sh,csh}: read only user customization if LANG is already set (#372151)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 25 2008 Bill Nottingham <notting@redhat.com> - 8.73-1
|
|
|
cbe35e |
- move event-compat-sysv events here, obsolete it
|
|
|
cbe35e |
- fix ctrl-alt-del during rc.sysinit (#444050)
|
|
|
cbe35e |
- fix 'telinit X' from single-user mode (#444001)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Apr 24 2008 Bill Nottingham <notting@redhat.com> - 8.72-1
|
|
|
cbe35e |
- don't have a S99single when using upstart (#444001, indirectly)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 23 2008 Bill Nottingham <notting@redhat.com> - 8.71-1
|
|
|
cbe35e |
- adjust to gdm using LANG instead of GDM_LANG (#372151, <rstrode@redhat.com>)
|
|
|
cbe35e |
- rework netfs' check for networking availability to properly handle both network
|
|
|
cbe35e |
and NetworkManager
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 15 2008 Bill Nottingham <notting@redhat.com> - 8.70-1
|
|
|
cbe35e |
- find is now in /bin. Use it. (#192991, #239914, #244941, #442178)
|
|
|
cbe35e |
- require event-compat-sysv for now (#442291)
|
|
|
cbe35e |
- fix serial event to wait properly
|
|
|
cbe35e |
- handle encrypted LVs properly (#441728)
|
|
|
cbe35e |
- add a sit tunnel type (#441635)
|
|
|
cbe35e |
- translation updates: ru
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 8 2008 Bill Nottingham <notting@redhat.com> - 8.69-1
|
|
|
cbe35e |
- Bring up lo whenever it shows up, not just in network/NM
|
|
|
cbe35e |
- fix shutdown-related oddities (#438444)
|
|
|
cbe35e |
- translation updates: el, sr, sr@latin, sv
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 4 2008 Bill Nottingham <notting@redhat.com> - 8.68-1
|
|
|
cbe35e |
- netfs: umount 'ncp' filesystems as well (#437117)
|
|
|
cbe35e |
- improve performance of s390 ccw rules (#437110, <mernst@de.ibm.com>)
|
|
|
cbe35e |
- fix consoletype environment leak (#439546)
|
|
|
cbe35e |
- ifdown-eth: make sure NEWCONFIG exists before grepping for it (#390271, continued)
|
|
|
cbe35e |
- console_check: always open with NONBLOCK, clear the serial structs first,
|
|
|
cbe35e |
handle non-16550 ports (<dwmw2@infradead.org>)
|
|
|
cbe35e |
- halt: don't use /etc/sysconfig/clock (#438337)
|
|
|
cbe35e |
- ifup: don't attempt to re-enslave already-enslaved devices (#440077)
|
|
|
cbe35e |
- netfs: run as a NetworkManagerDispatcher script (#439242)
|
|
|
cbe35e |
- netfs: remove $local_fs from the list of provides (making it implicitly provided
|
|
|
cbe35e |
by booting)
|
|
|
cbe35e |
- serial: add a crude hack to wait for runlevels to finish (#437379)
|
|
|
cbe35e |
- serial: frob /etc/securetty when necessary (#437381)
|
|
|
cbe35e |
- add a upstart-specific inittab
|
|
|
cbe35e |
- translation updates: as, bn_IN, cs, de, es, fi, fr, gu, hi, it, ja, kn, ml, mr, nb,
|
|
|
cbe35e |
nl, pa, pl, pt_BR, ru, sk, sr, ta, te, zh_CN
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.67-1
|
|
|
cbe35e |
- actually, don't
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 11 2008 Bill Nottingham <notting@redhat.com> - 8.66-1
|
|
|
cbe35e |
- use upstart to start rhgb (#433156, <cdahlin@ncsu.edu>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 10 2008 Bill Nottingham <notting@redhat.com> - 8.65-1
|
|
|
cbe35e |
- Add a serial console udev/upstart handler (#434764, indirectly)
|
|
|
cbe35e |
- Add some upstart notification for sysv scripts (modified from <cjdahlin@ncsu.edu>, #431231)
|
|
|
cbe35e |
- Handle _rnetdev correctly (#435358, <pjones@redhat.com>)
|
|
|
cbe35e |
- various minor speedups (<arjan@infradead.org>)
|
|
|
cbe35e |
- translation updates: el, fr
|
|
|
cbe35e |
- disable network by default, in favor of NetworkManager
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 26 2008 Bill Nottingham <notting@redhat.com> - 8.64-1
|
|
|
cbe35e |
- Add a console_init udev helper to do console initialization
|
|
|
cbe35e |
- add /sbin/pidof requirement (#434863)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 1 2008 Bill Nottingham <notting@redhat.com> - 8.63-1
|
|
|
cbe35e |
- don't start RAID arrays in rc.sysinit, that's done by udev (corollary of #429604)
|
|
|
cbe35e |
- add a NetworkManager-dispatcher script that does netreport on interface changes
|
|
|
cbe35e |
- use udev rules to set the clock, avoiding issues with modular rtcs (#290731)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jan 21 2008 Bill Nottingham <notting@redhat.com> - 8.62-1
|
|
|
cbe35e |
- rc.d/rc.sysinit: fix syntax error (#429556)
|
|
|
cbe35e |
- migrate sr@Latn -> sr@latin (<kmilos@gmail.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jan 18 2008 Bill Nottingham <notting@redhat.com> - 8.61-1
|
|
|
cbe35e |
- use lvm, not lvm.static (#429222)
|
|
|
cbe35e |
- ifup-eth: don't do something odd if we find a mac address that
|
|
|
cbe35e |
matches the user-set MACADDR (#251415)
|
|
|
cbe35e |
- rc.sysinit: fix root fs check to catch 'rw,ordered,noatime,etc.' properly
|
|
|
cbe35e |
(#334171)
|
|
|
cbe35e |
- rc.sysinit: Use proper invocations for authconfig, system-config-network
|
|
|
cbe35e |
(#426372, #428202)
|
|
|
cbe35e |
- service: handle unreadable scripts (#427767)
|
|
|
cbe35e |
- initscripts.spec: add requirements for stateless
|
|
|
cbe35e |
- fix perms on /etc/profile.d (#407531, <ville.skytta@iki.fi>)
|
|
|
cbe35e |
- rename_device: handle quoted HWADDR, etc. in ifcfg scripts (#351291)
|
|
|
cbe35e |
- minor stateless fixes
|
|
|
cbe35e |
- Makefile cleanups (from OLPC, <cscott@cscott.net>)
|
|
|
cbe35e |
- translation updates: fr, ru, nb
|
|
|
cbe35e |
- don't endelessly loop on ifdown (#390271)
|
|
|
cbe35e |
- rc.sysinit: - fix encrypted swap partitions with random key
|
|
|
cbe35e |
(<harald@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 9 2007 Bill Nottingham <notting@redhat.com> - 8.60-1
|
|
|
cbe35e |
- don't chvt with rhgb - just kill it when needed
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 8 2007 Bill Nottingham <notting@redhat.com> - 8.59-1
|
|
|
cbe35e |
- rc.sysinit: fix rhgb check
|
|
|
cbe35e |
- prefdm: add wdm section (#248087)
|
|
|
cbe35e |
- init.d/functions, halt: clean up some extraneous delays (#219816)
|
|
|
cbe35e |
- ifup-wireless: set mode before bringing link up (#254046, <linville@redhat.com>)
|
|
|
cbe35e |
- translation updates: pt_BR, hr
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 5 2007 Bill Nottingham <notting@redhat.com> - 8.58-1
|
|
|
cbe35e |
- revert kernel conflict so that xen can still work (#319401)
|
|
|
cbe35e |
- rename_device, 60-net.rules: only suggest an interface name (part of #264901)
|
|
|
cbe35e |
- require newer udev for persistent net rules (part of #264901)
|
|
|
cbe35e |
- don't hang if someone puts a dangling pipe in /etc/rhgb/temp (#251219)
|
|
|
cbe35e |
- genhostid: fix for 64-bit systems (#306811)
|
|
|
cbe35e |
- more bash matching fixes (#220087)
|
|
|
cbe35e |
- translation updates: is, nb
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 25 2007 Bill Nottingham <notting@redhat.com> - 8.57-1
|
|
|
cbe35e |
- work around upstream bash changes (#220087, modified from <nvigier@mandriva.com>)
|
|
|
cbe35e |
- init.d/network: add Should-Start for firewall services
|
|
|
cbe35e |
- ifup-eth: handle arp_ip_target separately (#288151, <agospoda@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: remove rc.serial support - should be udev rules
|
|
|
cbe35e |
- rc.sysinit: remove acpi module loading - now supported by the kernel automatically
|
|
|
cbe35e |
- fix en_GB translation (#271201)
|
|
|
cbe35e |
- translation updates: as, bn_IN, bg, ca, cs, de, el, es, fi, gu, hi, it, ja, ko, kn, ml,
|
|
|
cbe35e |
mr, nb, nl, pa, pl, pt, pt_BR, ro, sl, sr, sr@Latn, sv, ta, te, zh_CN
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 29 2007 Bill Nottingham <notting@redhat.com> - 8.56-1
|
|
|
cbe35e |
- rename_device: fix open() call
|
|
|
cbe35e |
- rc.sysinit: optimize out some excess greps (<harald@redhat.com>)
|
|
|
cbe35e |
- halt: support newer nut syntax, conflict with old versions (#252973, <tsmetana@redhat.com>)
|
|
|
cbe35e |
- fix buildreq from popt -> popt-devel
|
|
|
cbe35e |
- newer popt is in /lib|/lib64 - require it, and link dynamically
|
|
|
cbe35e |
- rc.sysinit: added support for cryptsetup-uuids (bug #242078, <harald@redhat.com>)
|
|
|
cbe35e |
- netconsole: fix status(), assorted other cleanups
|
|
|
cbe35e |
- translation updates: fr, ro, sk
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 27 2007 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add /etc/networks (#239602)
|
|
|
cbe35e |
- rc.sysinit: fix quotacheck, remove obsolete convertquota (#249003, <tometzky@batory.org.pl>)
|
|
|
cbe35e |
- rc.sysinit: add gfs2 to the 'don't mount here' list (#248985)
|
|
|
cbe35e |
- netfs: check for rpcbind, not portmap (#245595)
|
|
|
cbe35e |
- ifup-eth: set 'primary' later for bonding devices (#236897, <agospoda@redhat.com>)
|
|
|
cbe35e |
- translation updates: cy, en_GB, mk, ml, ms, pl, sk, ta, zh_CN
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 17 2007 Nils Philippsen <nphilipp@redhat.com>
|
|
|
cbe35e |
- avoid calling unicode_start unnecessarily often during startup/shutdown which
|
|
|
cbe35e |
causes certain monitor/video card combos to flicker heavily (#237839)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 15 2007 Bill Nottingham <notting@redhat.com> 8.54-1
|
|
|
cbe35e |
- translation updates: as, bg, cs, ja, ms
|
|
|
cbe35e |
- redirect bogus errors from cryptsetup to /dev/null <karsten@redhat.com>
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Apr 19 2007 Bill Nottingham <notting@redhat.com> 8.53-1
|
|
|
cbe35e |
- init.d/halt: use sound saving wrapper from alsa-utils, conflict with
|
|
|
cbe35e |
older versions (#236916)
|
|
|
cbe35e |
- usernetctl: drop user gid (#229372)
|
|
|
cbe35e |
- translation updates: ta, pt_BR, nb, as, hi, de
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Apr 16 2007 Bill Nottingham <notting@redhat.com> 8.52-1
|
|
|
cbe35e |
- lang.sh: fix locales where SYSFONT is not the default (#229996)
|
|
|
cbe35e |
- ifup-wireless: properly quote arguments (#234756)
|
|
|
cbe35e |
- readonly-root: add options for mounting state (#234916)
|
|
|
cbe35e |
- rwtab: updates (#219339, <law@redhat.com>)
|
|
|
cbe35e |
- add netconsole init script (#235952)
|
|
|
cbe35e |
- disable link checking when PERSISTENT_DHCLIENT is set (#234075)
|
|
|
cbe35e |
- restore file context on /etc/resolv.conf (#230776, <dwalsh@redhat.com>)
|
|
|
cbe35e |
- ifup-post: only use the first address (#230157, <michal@harddata.com>)
|
|
|
cbe35e |
- ifup-ipsec: allow overriding of my_identifier (#229343, <cmadams@hiwaay.net>)
|
|
|
cbe35e |
- ifup-wireless: set link up before itweaking wireless parameters (#228253)
|
|
|
cbe35e |
- rc.sysinit: restorecon on mount points when relabeling (#220322)
|
|
|
cbe35e |
- init.ipv6-global: cleanup & optimize sysctl usage (#217595)
|
|
|
cbe35e |
- ifup-eth: support ETHTOOL_OPTS on bridge devices (#208043, <bbaetz@acm.org>)
|
|
|
cbe35e |
- network-functions-ipv6: as we don't use NETWORKING_IPV6, silence errors (#195845)
|
|
|
cbe35e |
- fix description (#229919)
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 23 2007 Bill Nottingham <notting@redhat.com> 8.51-1
|
|
|
cbe35e |
- fix 'Fedora Fedora' in rc.sysinit
|
|
|
cbe35e |
- halt: use kexec -x to not shut down network (#223932, <mchristi@redhat.com>)
|
|
|
cbe35e |
- network_functions: fix is_bonding_device logic (#229643)
|
|
|
cbe35e |
- translation updates: nb
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 19 2007 Bill Nottingham <notting@redhat.com> 8.50-1
|
|
|
cbe35e |
- lang.csh, lang.sh: if $LANG is set, don't override it (#229102)
|
|
|
cbe35e |
- initlog.1: fix man page formatting (<esr@thyrsus.com>)
|
|
|
cbe35e |
- network-functions: simplify bonding test (#215887, <herbert.xu@redhat.com>)
|
|
|
cbe35e |
- fix ifup-post when lookup fails (#220318, <hiroshi.fujishima+redhat@gmail.com>)
|
|
|
cbe35e |
- add bridging docs (#221412, <markmc@redhat.com>)
|
|
|
cbe35e |
- release bonding slaves properly (#220525)
|
|
|
cbe35e |
- fix ppp-watch with ONBOOT=yes (#216749)
|
|
|
cbe35e |
- support VLAN_PLUS_VID_NO_PAD (#222975, #223011)
|
|
|
cbe35e |
- remove NETWORKING_IPV6; to disable, use a modprobe rule
|
|
|
cbe35e |
- translation updates: ms, de, el, pt_BR, fi, bs, sr, it, ko
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Dec 19 2006 Bill Nottingham <notting@redhat.com> 8.49-1
|
|
|
cbe35e |
- rc.sysinit: remove raidautorn (#219226)
|
|
|
cbe35e |
- ifup-eth: set MACADDR, MTU before initializing bonding slaves, etc (#218792)
|
|
|
cbe35e |
- translation updates: mr, ms, hi, te, ml
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 28 2006 Bill Nottingham <notting@redhat.com> 8.48-1
|
|
|
cbe35e |
- add a step to rename any temporarily renamed devices (#208740, #214817)
|
|
|
cbe35e |
- make sure network modules don't get accidentally reloaded (#211474)
|
|
|
cbe35e |
- rc.sysinit: fix dmraid test (#216334)
|
|
|
cbe35e |
- init.d/halt: don't unmount network filesystems
|
|
|
cbe35e |
- ipsec: Add a way to manually manage racoon.conf (#159343, <mitr@redhat.com>)
|
|
|
cbe35e |
- sysconfig.txt: Document ~/.i18n (#199323, <mitr@redhat.com>)
|
|
|
cbe35e |
- some translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Nov 6 2006 Bill Nottingham <notting@redhat.com> 8.47-1
|
|
|
cbe35e |
- lang.{sh,csh}: handle sinhalese as well in CJKI clauses (#212438)
|
|
|
cbe35e |
- rc.sysinit: add '--auto=yes' to mdadm invocation (#213671)
|
|
|
cbe35e |
- rename_device: fix incorrect handling of .bak files
|
|
|
cbe35e |
- mount tmpfs with -n (#213132)
|
|
|
cbe35e |
- various SUBCHANNELS related s390 fixage (#204803)
|
|
|
cbe35e |
- lang.{sh,csh}: support iso-8859-8 (#212738, <matan@svgalib.org>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 27 2006 Bill Nottingham <notting@redhat.com> 8.46-1
|
|
|
cbe35e |
- ifup-eth: restorecon on moved lease file
|
|
|
cbe35e |
- rc.sysinit: handle "nodmraid" and "nompath" command line options (#209377, <pjones@redhat.com>)
|
|
|
cbe35e |
- revert early-login support (#210836, essentially)
|
|
|
cbe35e |
- blacklist CJKI on the virtual console (#120819)
|
|
|
cbe35e |
- rc.sysinit: use dmraid.static (#211297)
|
|
|
cbe35e |
- use sysfs interface for bonding (#202443, <agospoda@redhat.com>)
|
|
|
cbe35e |
- use /etc/statetab, /etc/statetab.d for local state (#211839, <markmc@redhat.com>)
|
|
|
cbe35e |
- fix or_IN and similar locales (#212219)
|
|
|
cbe35e |
- use SUBCHANNELS as the primary key for s390 network devices (#204803)
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 6 2006 Bill Nottingham <notting@redhat.com> 8.45-1
|
|
|
cbe35e |
- lang.csh/lang.sh - do *not* stty iutf8; too much chaos with SIGTTOU
|
|
|
cbe35e |
(reverts: #186961; fixes #209469)
|
|
|
cbe35e |
- translation updates: ms
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 4 2006 Bill Nottingham <notting@redhat.com> 8.44-1
|
|
|
cbe35e |
- separate tmpfs-usage for state from readonly-root
|
|
|
cbe35e |
- set keymap correctly in non-utf8 locale (#167363)
|
|
|
cbe35e |
- setsysfont: run unicode_stop if in non-unicode locale
|
|
|
cbe35e |
- lang.csh/lang.sh: set iutf8 if appropriate (#186961)
|
|
|
cbe35e |
- lang.csh/lang.sh: handle non-utf8 locales correctly (#200100)
|
|
|
cbe35e |
- rc.sysinit: redirect stderr from setsysfont (#209204, indirectly)
|
|
|
cbe35e |
- rwtab: fix iscsi file location (#208864)
|
|
|
cbe35e |
- translation updates: el, da, as, or
|
|
|
cbe35e |
- fix stateless updates (#206331, <law@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 27 2006 Bill Nottingham <notting@redhat.com> 8.43-1
|
|
|
cbe35e |
- move ccwgroup initialization to a udev rule (should fix #199139,
|
|
|
cbe35e |
#199655, #169161)
|
|
|
cbe35e |
- init.d/functions: don't write to gdmfifo
|
|
|
cbe35e |
- remove unused-since-RHL-7 consolechars code, update docs (#206106)
|
|
|
cbe35e |
- stateless updates (#206331, <law@redhat.com>)
|
|
|
cbe35e |
- translation updates (el, ms, hr, sl)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Sep 21 2006 Bill Nottingham <notting@redhat.com> 8.42-1
|
|
|
cbe35e |
- run rc.sysinit, /etc/rc in monitor mode (part of #184340)
|
|
|
cbe35e |
- use a better check for 'native' services (#190989, #110761, adapted
|
|
|
cbe35e |
from <matthias@rpmforge.net>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 19 2006 Bill Nottingham <notting@redhat.com> 8.41-1
|
|
|
cbe35e |
- fix network ipv6 hang (#207137, others)
|
|
|
cbe35e |
- rc.sysinit: change blkid.tab path to /etc/blkid/blkid.tab
|
|
|
cbe35e |
- rename_device: reset DEVPATH also when renaming (#206884, <phil@fifi.org>)
|
|
|
cbe35e |
- sysconfig.txt: clarify onboot/onparent usage
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 15 2006 Bill Nottingham <notting@redhat.com> 8.40-1
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
- rename_device: use '__tmpXXXX' instead of 'devXXXX' as a temporary device
|
|
|
cbe35e |
name to avoid any realistic namespace clashes
|
|
|
cbe35e |
- rc.sysinit: set default affinity if specified on commandline (#203359)
|
|
|
cbe35e |
- always pass path to '.' (#206035)
|
|
|
cbe35e |
- run setsysfont, loadkeys always when /dev/tty{0,1} exist (#150769)
|
|
|
cbe35e |
- allow going to a shell when system is shut down cleanly (from <dwalsh@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 5 2006 Bill Nottingham <notting@redhat.com> 8.39-1
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
- Handle partitions on multipath/dmraid better (<pjones@redhat.com>)
|
|
|
cbe35e |
- make /dev/mapper/control ourselves (<pjones@redhat.com>)
|
|
|
cbe35e |
- init.d/network: simplify 'status' call
|
|
|
cbe35e |
- fix actual 169.254 networks (#203591)
|
|
|
cbe35e |
- rc.sysinit: don't run vgscan (#191879)
|
|
|
cbe35e |
- init.d/halt: don't umount /dev/root<foo> (<oblin@mandriva.com>)
|
|
|
cbe35e |
- rc.sysinit: catch more dmraid errors (#200683)
|
|
|
cbe35e |
- support 'tmp' option in /etc/crypttab (#201382, <mitr@redhat.com>,
|
|
|
cbe35e |
<lv@lekv.de>)
|
|
|
cbe35e |
- IPv6 updates (<pb@bieringer.de>, includes a fix for #143452)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 1 2006 Bill Nottingham <notting@redhat.com> 8.38-1
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
- bring down bonding slaves on ifdown (#199706)
|
|
|
cbe35e |
- support LINKDELAY for dhcp (#191137)
|
|
|
cbe35e |
- netfs: run multipath on netdev devices (#180977)
|
|
|
cbe35e |
- halt: use /proc/mounts instead of /etc/mtab (#198426, <mitr@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: fix getkey race (#191453, <mitr@redhat.com>)
|
|
|
cbe35e |
- spec cleanups (#188614, <kloczek@rudy.mif.pg.gda.pl>)
|
|
|
cbe35e |
- support aliases on vlan (#193133, <mitr@redhat.com>)
|
|
|
cbe35e |
- clean up ifcfg file handling (<mitr@redhat.com>, <michal@harddata.com>)
|
|
|
cbe35e |
- GRE and IPIP tunnel support (#168990, <mitr@redhat.com>,
|
|
|
cbe35e |
<razvan.vilt@linux360.ro>, <aaron.hope@unh.edu>, <sean@enertronllc.com>)
|
|
|
cbe35e |
- rc.sysinit: don't format encrypted swap always (#127378)
|
|
|
cbe35e |
- don't try to add routes to alias devices (#199825, #195656)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.37-1
|
|
|
cbe35e |
- update translations
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 21 2006 Bill Nottingham <notting@redhat.com> 8.36-1
|
|
|
cbe35e |
- rework automatic swapon - only run if AUTOSWAP=yes, and fix errors
|
|
|
cbe35e |
(#198695, #196179, #196208)
|
|
|
cbe35e |
- redo single so it starts last in runlevel 1, and doesn't kill/start
|
|
|
cbe35e |
services itself
|
|
|
cbe35e |
- add configurable delay for killproc() (#198429, <jorton@redhat.com>)
|
|
|
cbe35e |
- fix loop in rename_device (#199242, <markmc@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: stateless updates (#197972, <law@redhat.com>)
|
|
|
cbe35e |
- support for copying dhcp leases from initramfs (#198601, <markmc@redhat.com>)
|
|
|
cbe35e |
- readonly-root: SELinux works now in the kernel, allow it
|
|
|
cbe35e |
- init.d/network: don't bring down network if root is on a network device
|
|
|
cbe35e |
- init.d/halt: don't use -i to halt; causes problems with iscsi
|
|
|
cbe35e |
- add support for routing rule-$device (#132252, <mitr@redhat.com>)
|
|
|
cbe35e |
- fix rhgb output (#192604, <tonynelson@georgeanelson.com>)
|
|
|
cbe35e |
- fix crypttab options for LUKS (#197656, <mitr@redhat.com>)
|
|
|
cbe35e |
- ipsec: various fixes & new features (#150682, #168972, <mitr@redhat.com>, <alex@milivojevic.org>)
|
|
|
cbe35e |
- ipsec: add check for IKE_METHOD (#197576, <john_smyth@mail.ru>)
|
|
|
cbe35e |
- rename_device: ignore alias devices, fix race (#186355)
|
|
|
cbe35e |
- ifup/ifdown: don't mark as %%config
|
|
|
cbe35e |
- rwtab: some additions/cleanup
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jun 12 2006 Bill Nottingham <notting@redhat.com> 8.35-1
|
|
|
cbe35e |
- readonly root enhancments (modified from <law@redhat.com>, #193164)
|
|
|
cbe35e |
- encrypted swap, non-root filesystem support (#127378, <mitr@redhat.com, <redhat@flyn.org>)
|
|
|
cbe35e |
- clarify killproc usage (#193711, <mitr@redhat.com>)
|
|
|
cbe35e |
- document BRIDGE= (#192576, <mitr@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: allow for sulogin instead of automatic relabeling (<dwalsh@rehdat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 23 2006 Bill Nottingham <notting@redhat.com> 8.34-1
|
|
|
cbe35e |
- link glib2 dynamically now that it's in /lib, conflict with older
|
|
|
cbe35e |
versions
|
|
|
cbe35e |
- handle cups specially when cleaning /var (#189168)
|
|
|
cbe35e |
- remove ifdown-aliases (<mitr@redhat.com>)
|
|
|
cbe35e |
- ifup-ipsec: fix key handling when only one of AH or ESP is used
|
|
|
cbe35e |
(#166257, <mituc@iasi.rdsnet.ro>)
|
|
|
cbe35e |
- IPv6 updates, including RFC 3041 support (<pb@bieringer.de>)
|
|
|
cbe35e |
- routing fixes, add METRIC support for default routes (#124045, <mitr@redhat.com>)
|
|
|
cbe35e |
- fix handling of mount points with white space (#186713, <mitr@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Apr 20 2006 Bill Nottingham <notting@redhat.com> 8.33-1
|
|
|
cbe35e |
- support for readonly root
|
|
|
cbe35e |
- rc.sysinit: remove call to zfcpconf.sh - that should be udev rules
|
|
|
cbe35e |
- ifup*: add NETWORKDELAY and LINKDELAY (#176851, <mitr@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: remove obsolete initrd code (<pjones@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Apr 10 2006 Bill Nottingham <notting@redhat.com> 8.32-1
|
|
|
cbe35e |
- netfs: fix redirect (#187505)
|
|
|
cbe35e |
- rc.sysinit add forcequotacheck (#168118, <mitr@redhat.com>)
|
|
|
cbe35e |
- functions/pidof: various fixes (#182623, others <mitr@redhat.com>)
|
|
|
cbe35e |
- add support for DHCP on bridges (#125259, <mitr@redhat.com>,
|
|
|
cbe35e |
anders@kaseorg.com>)
|
|
|
cbe35e |
- rc.sysinit: use pidof, not killall (#185429, <pjones@redhat.com>)
|
|
|
cbe35e |
- ppp fixes (#129195, #163950, #92023, <mitr@redhat.com>, <avi@argo.co.il>)
|
|
|
cbe35e |
- ifup/ifdown: unset $WINDOW (#174336, <mitr@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 17 2006 Bill Nottingham <notting@redhat.com> 8.31.2-1
|
|
|
cbe35e |
- add udev helper to rename network devices on device creation
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 14 2006 Bill Nottingham <notting@redhat.com> 8.31.1-1
|
|
|
cbe35e |
- fix context of /dev/pts (#185436)
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Mar 5 2006 Bill Nottingham <notting@redhat.com> 8.31-1
|
|
|
cbe35e |
- fix kexec support (<jmoyer@redhat.com>)
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 28 2006 Bill Nottingham <notting@redhat.com> 8.30-1
|
|
|
cbe35e |
- hotplug: don't cause modules to be reloaded on ifdown/rmmod (#179809)
|
|
|
cbe35e |
- fix endless loops in ifup/ifdown (#177792, #182466)
|
|
|
cbe35e |
- fix enabling of enforcing SELinux mode after relabel (#181893)
|
|
|
cbe35e |
- remove debugging code from ifup-bnep
|
|
|
cbe35e |
- add /proc, /sys mounting back to rc.sysinit
|
|
|
cbe35e |
Note: booting without an initrd is deprecated
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 14 2006 Peter Jones <pjones@redhat.com> 8.29-1
|
|
|
cbe35e |
- scrub another possible error message from dmraid output
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.28-1
|
|
|
cbe35e |
- kill nash-hotplug before starting udev (<pjones@redhat.com>)
|
|
|
cbe35e |
- silence warnings on /dev/pts remount (<pjones@redhat.com>)
|
|
|
cbe35e |
- more translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 13 2006 Bill Nottingham <notting@redhat.com> 8.27-1
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
- lang.sh: revert fix for #176832, it's broken
|
|
|
cbe35e |
- ifup-aliases fixes (<pjones@redhat.com>,<mitr@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 7 2006 Bill Nottingham <notting@redhat.com> 8.26-1
|
|
|
cbe35e |
- revert "rc.sysinit: don't mount usbfs, libusb no longer uses it" change
|
|
|
cbe35e |
- add some ugly hacks to make sure net hotplug doesn't run after unclean
|
|
|
cbe35e |
shutdown (#177795)
|
|
|
cbe35e |
- don't mount /sys and /proc in rc.sysinit - the initrd already does
|
|
|
cbe35e |
(<pjones@redhat.com>)
|
|
|
cbe35e |
- halt: try to unmount tmpfs filesystems before swapoff (#174000,
|
|
|
cbe35e |
<mitr@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Feb 2 2006 Bill Nottingham <notting@redhat.com> 8.25-1
|
|
|
cbe35e |
- ifup: don't run the arping check if the address is already on the device
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Feb 1 2006 Bill Nottingham <notting@redhat.com> 8.24-1
|
|
|
cbe35e |
- init.d/functions: fix sendmail startup
|
|
|
cbe35e |
- sysconfig.txt: fix typos (<mitr@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jan 31 2006 Peter Jones <pjones@redhat.com> 8.23-1
|
|
|
cbe35e |
- rc.sysinit: do a better job of not activating already active dmraids
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jan 31 2006 Bill Nottingham <notting@redhat.com> 8.22-1
|
|
|
cbe35e |
- remove references to /usr/X11R6/bin (#177938)
|
|
|
cbe35e |
- rc.sysinit: fix SELinux message formatting (#178532)
|
|
|
cbe35e |
- rc.sysinit: clean cvs as well (#178539, <ville.skytta@iki.fi>)
|
|
|
cbe35e |
- init.d/halt: move halt.local so that it runs before / is remounted r/o (#179314)
|
|
|
cbe35e |
- rc.sysinit: don't activate already active dmraids (<pjones@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: don't mount usbfs, libusb no longer uses it
|
|
|
cbe35e |
- init.d/functions: Add -p to status() (#134363, <mitr@redhat.com>)
|
|
|
cbe35e |
- init.d/functions: Separate /var/run/*.pid handling and pidof calls
|
|
|
cbe35e |
to private functions (#63440, <mitr@redhat.com>)
|
|
|
cbe35e |
- init.d/functions: update for current LSB, including -p pidfile
|
|
|
cbe35e |
(#99325, #134363, <mitr@redhat.com>, <tobias.burnus@physik.fu-berlin.de>)
|
|
|
cbe35e |
- getkey: various cleanups, add man page (#54481, <mitr@redhat.com>)
|
|
|
cbe35e |
- lang.sh: don't always call consoletype (<laroche@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jan 20 2006 Bill Nottingham <notting@redhat.com> 8.21-1
|
|
|
cbe35e |
- move handling of network hotplug events here, add appropriate udev
|
|
|
cbe35e |
rules, obsolete hotplug
|
|
|
cbe35e |
- get rid of some path lookups (#178321, <mclasen@redhat.com>)
|
|
|
cbe35e |
- get hwaddrs from sysfs as opposed to ip | sed
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
- lang.sh: don't run unicode_start for subshells (#176832)
|
|
|
cbe35e |
- halt: ignore sysfs but not /sys<otherstuff> (#177612, <bnocera@redhat.com>)
|
|
|
cbe35e |
- add service(8) man page (#44857) <mitr@redhat.com>
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Dec 21 2005 Bill Nottingham <notting@redhat.com> 8.20-1
|
|
|
cbe35e |
- remove kmodule. udev handles module loading now
|
|
|
cbe35e |
- require appropriate udev
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Dec 15 2005 Bill Nottingham <notting@redhat.com> 8.19-1
|
|
|
cbe35e |
- Require syslog, for alternate implementations thereof (#172885)
|
|
|
cbe35e |
- Fix fsck invocation for weeding out netdev devices (#175803)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Dec 2 2005 Bill Nottingham <notting@redhat.com> 8.18-1
|
|
|
cbe35e |
- use new dhclient file paths, add appropriate conflict (#169164)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 5 2005 Bill Nottingham <notting@redhat.com> 8.17-1
|
|
|
cbe35e |
- make sure corefile limiting works for user processes as well
|
|
|
cbe35e |
(#166511, <ville.skytta@iki.fi>)
|
|
|
cbe35e |
- ifup-routes: handle no EOF in the route file (#156972)
|
|
|
cbe35e |
- rc.sysinit: tweak mesage (#156972)
|
|
|
cbe35e |
- ifdown-eth: clean up error message (#135167)
|
|
|
cbe35e |
- rc.sysinit: call kpartx on multipath devices (#160227)
|
|
|
cbe35e |
- ifup-eth: move wireless options before bridge options (#122801)
|
|
|
cbe35e |
- ifup-wireless: silence error (#90601)
|
|
|
cbe35e |
- init.d/functions: change translated string (#54682)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 27 2005 Than Ngo <than@redhat.com> 8.16-1
|
|
|
cbe35e |
- fix typo bug
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 26 2005 Than Ngo <than@redhat.com> 8.15-1
|
|
|
cbe35e |
- support proper dial-in configuration, thanks to Peter Bieringer (#158380)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Sep 22 2005 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- kmodule: don't probe for uninteresting devices. speeds things up
|
|
|
cbe35e |
- network-functions: deal with broken networks better (#168947)
|
|
|
cbe35e |
- rc.sysinit: automatically reboot if labels are really out of date
|
|
|
cbe35e |
(<dwalsh@redhat.com>)
|
|
|
cbe35e |
- network-functions: throw out nameif error messages
|
|
|
cbe35e |
- rc.sysinit: use multipath.static (#168321)
|
|
|
cbe35e |
- rc.sysinit: use ignorelocking (#168195)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 12 2005 Bill Nottingham <notting@redhat.com> 8.14-1
|
|
|
cbe35e |
- fix usage of the module blacklist (#168020)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 9 2005 Bill Nottingham <notting@redhat.com> 8.13-1
|
|
|
cbe35e |
- fix on-boot relabelling (<dwalsh@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 22 2005 Bill Nottingham <notting@redhat.com> 8.12-1
|
|
|
cbe35e |
- ifup-eth: fix interface renaming (#158774)
|
|
|
cbe35e |
- rc.sysinit: use modprobe, not insmod (#159120, <tmus@tmus.dk>)
|
|
|
cbe35e |
- remove workaround for the fonts-not-initialized-on-secondary-consoles
|
|
|
cbe35e |
problem (fixed in 2.6.12-rc4 and later)
|
|
|
cbe35e |
- setsysfont: correctly bracket systfontacm (#159706)
|
|
|
cbe35e |
- rc.sysinit: always use udevsend, even if no modules (#160987)
|
|
|
cbe35e |
- ifdown-aliases: add 'cd' to the proper dir (#161170)
|
|
|
cbe35e |
- add diskdump restore support (<tuchida@redhat.com>),
|
|
|
cbe35e |
conflict with appropriate diskdumputils
|
|
|
cbe35e |
- rc.sysinit: dmraid/multipath support
|
|
|
cbe35e |
- remove LVM1 support
|
|
|
cbe35e |
- init.d/functions: handle odd quoting in args (#161316, <stransky@redhat.com>)
|
|
|
cbe35e |
- ifup-wireless: set rate in quotes (#163123)
|
|
|
cbe35e |
- handle lvm & fsck for network block devices (#148764,
|
|
|
cbe35e |
<alewis@redhat.com>)
|
|
|
cbe35e |
- initlog: fix invalid free calls, (#165033), (#163973,<dwalsh@redhat.com>)
|
|
|
cbe35e |
- sysconfig.txt: remove hdparm docs, since the code isn't there (#162962)
|
|
|
cbe35e |
- updated translations: ms, ja, ko, et, zh_CN, zh_TW, sr, ar
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 10 2005 Bill Nottingham <notting@redhat.com> 8.11-1
|
|
|
cbe35e |
- fix mis-bringup of interfaces due to accidentally matched HWADDR
|
|
|
cbe35e |
(a.k.a. ONBOOT=no not working) (#153669, #157252)
|
|
|
cbe35e |
- support automatic relabeling later if rebooted w/o SELinux
|
|
|
cbe35e |
(<dwalsh@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: fix fixfiles invocation (#157182)
|
|
|
cbe35e |
- btmp should be 0600 (#156900)
|
|
|
cbe35e |
- translation updates: fr, bg, ru, mk, pa, es
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 29 2005 Bill Nottingham <notting@redhat.com> 8.10-1
|
|
|
cbe35e |
- fix hang on stale GDM sockets (#156355)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 27 2005 Bill Nottingham <notting@redhat.com> 8.09-1
|
|
|
cbe35e |
- rc.sysinit: clean up screen sockets (#155969)
|
|
|
cbe35e |
- functions: use pidof -c in various functions
|
|
|
cbe35e |
- ifup-ppp: fix static routes with ppp demand dialing (#20142,
|
|
|
cbe35e |
<ohrn+redhat@chalmers.se>)
|
|
|
cbe35e |
- add btmp support (#155537)
|
|
|
cbe35e |
- don't send dhcp hostname (revert of fix for #149667)
|
|
|
cbe35e |
- more early-login modifications (<mclasen@redhat.com>)
|
|
|
cbe35e |
- functions: fix echo (#155270)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Apr 18 2005 Karsten Hopp <karsten@redhat.de> 8.08-3
|
|
|
cbe35e |
- fix ifup-routes script (#155195)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Apr 18 2005 Florian La Roche <laroche@redhat.com>
|
|
|
cbe35e |
- fix strstr call in rc.sysinit
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 15 2005 Bill Nottingham <notting@redhat.com> 8.08-1
|
|
|
cbe35e |
- update translation base
|
|
|
cbe35e |
- automatically send hostname for DHCP if it's available and not
|
|
|
cbe35e |
overridden (#149667)
|
|
|
cbe35e |
- load user-defined module scripts from /etc/sysconfig/modules at
|
|
|
cbe35e |
boot (#123927)
|
|
|
cbe35e |
- halt: reverse sort the mount list, avoiding errors
|
|
|
cbe35e |
(#147254, <jamesodhunt@hotmail.com>)
|
|
|
cbe35e |
- ifup-wireless: add SECURITYMODE (#145407)
|
|
|
cbe35e |
- network-functions: don't error out if hotplug doesn't exist (#140008)
|
|
|
cbe35e |
- ifup: always return errors on trying to bring up nonexistent devices (#131461)
|
|
|
cbe35e |
- ifup: fix error message (#143674)
|
|
|
cbe35e |
- rc.sysinit: add a autorelabel boot target (#154496)
|
|
|
cbe35e |
- prefdm: if something else is specified as $DISPLAYMANAGER, try that (#147304)
|
|
|
cbe35e |
- remove support for the old firewall type
|
|
|
cbe35e |
- network: optimize some (#138557, <drepper@redhat.com>)
|
|
|
cbe35e |
- prefdm: fix prefdm arg handling (#154312, <khc@pm.waw.pl>)
|
|
|
cbe35e |
- gdm early-login support (adapted from <rstrode@redhat.com>)
|
|
|
cbe35e |
- ifup-routes: make sure commented lines are handled correctly (#154353,
|
|
|
cbe35e |
#114548, <link@pobox.com>)
|
|
|
cbe35e |
- some sysconfig.txt updates (<link@pobox.com>, <jvdias@redhat.com>)
|
|
|
cbe35e |
- rc.sysinit: fix restorecon invocation (#153100)
|
|
|
cbe35e |
- initlog: free some of the more egregious memory leaks (#85935)
|
|
|
cbe35e |
- initlog: fix potential memory overread (#153685, <in-redhat@baka.org>)
|
|
|
cbe35e |
- remove some conflicts, %%post scripts, etc. that were only relelvant
|
|
|
cbe35e |
for upgrades from pre-7.0
|
|
|
cbe35e |
- other minor fixes, see ChangeLog
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Mar 31 2005 Bill Nottingham <notting@redhat.com> 8.07-1
|
|
|
cbe35e |
- bring back initlog for third-party scripts until a new framework is
|
|
|
cbe35e |
in place
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 30 2005 Bill Nottingham <notting@redhat.com> 8.06-1
|
|
|
cbe35e |
- handle alternate VLAN naming schemes (#115001, <kas@informatics.muni.cz>)
|
|
|
cbe35e |
- ifup-ipsec: handle non-ascii keys (#150552)
|
|
|
cbe35e |
- add proper ipsec route (#146169, #140654)
|
|
|
cbe35e |
- add a restorecon for /tmp to rc.sysinit
|
|
|
cbe35e |
- document ONHOTPLUG in sysconfig.txt
|
|
|
cbe35e |
- fix mistranslation (#151120)
|
|
|
cbe35e |
- don't return 1 for stopping a process if it isn't running at all
|
|
|
cbe35e |
- don't explicitly set fwd polices for ipsec traffic. Let setkey
|
|
|
cbe35e |
handle it.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 7 2005 Bill Nottingham <notting@redhat.com> 8.05-1
|
|
|
cbe35e |
- ipv6 cleanups (<pb@bieringer.de>)
|
|
|
cbe35e |
- rc.sysinit: fix rngd check (#130350)
|
|
|
cbe35e |
... then turn it off entirely
|
|
|
cbe35e |
- rc.sysinit: get rid of duplicate date printout (#149795)
|
|
|
cbe35e |
- ifdown: handle being called on down devices better
|
|
|
cbe35e |
- handle saved resolv.conf on all device types
|
|
|
cbe35e |
- fix network-functions cleanup
|
|
|
cbe35e |
- netfs: fix _netdev unmounting (#147610, <alewis@redhat.com>)
|
|
|
cbe35e |
- dhcp release cleanups (<jvdias@redhat.com>)
|
|
|
cbe35e |
- ifup-bnep: bluetooth update <dwmw2@infradead.org>
|
|
|
cbe35e |
- more ipsec stuff (#147001, <ckjohnson@gwi.net>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jan 19 2005 Bill Nottingham <notting@redhat.com> 8.04-1
|
|
|
cbe35e |
- split out ifup/ifdown general case to ifup/ifdown-eth;
|
|
|
cbe35e |
add ifup/ifdown-bnep (<dwmw2@redhat.com>)
|
|
|
cbe35e |
- ifup-ipsec: add fwd policies (#145507)
|
|
|
cbe35e |
- fix multiple scsi_hostadapter loads (#145432)
|
|
|
cbe35e |
- enable syncookies in sysctl.conf (#145201)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jan 12 2005 Bill Nottingham <notting@redhat.com> 8.03-1
|
|
|
cbe35e |
- use udevsend to handle hotplug events (requires recent udev)
|
|
|
cbe35e |
- remove pump, dhcpcd support
|
|
|
cbe35e |
- fix ONxxx (#136531, <cww@redhat.com>)
|
|
|
cbe35e |
- fix various fgreps to not catch commented lines (#136531, expanded
|
|
|
cbe35e |
from <cww@redhat.com>)
|
|
|
cbe35e |
- set ETHTOOL_OPTS on addressless devices (#144682, <mpoole@redhat.com>)
|
|
|
cbe35e |
- kill dhcp client even if BOOTOPROTO is now static (#127726, others)
|
|
|
cbe35e |
- replace the use of route/ifconfig with ip in IPv6 code, remove support
|
|
|
cbe35e |
for ipv6calc (<pb@bierenger.de>, <pekkas@netcore.fi>)
|
|
|
cbe35e |
- fix quoting in daemon() (#144634)
|
|
|
cbe35e |
- make sysctl be silent (#144483)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jan 3 2005 Bill Nottingham <notting@redhat.com> 8.02-1
|
|
|
cbe35e |
- remove initlog, minilogd
|
|
|
cbe35e |
- add a flag to kmodule for use with kudzu's socket mode, use it
|
|
|
cbe35e |
- change setting of IPv6 default route (#142308, <pb@bieringer.de>)
|
|
|
cbe35e |
- netfs: don't unmount NFS root FS (#142169)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Dec 6 2004 Bill Nottingham <notting@redhat.com> 8.01-1
|
|
|
cbe35e |
- further bootup noise reductions
|
|
|
cbe35e |
- rc.d/rc.sysinit: do implicit unicode conversion on keymap
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Nov 29 2004 Bill Nottingham <notting@redhat.com> 8.00-1
|
|
|
cbe35e |
- fix previous fix (#139656)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Nov 24 2004 Bill Nottingham <notting@redhat.com> 7.99-1
|
|
|
cbe35e |
- clear and repopulate mtab before mounting other filesystems (#139656)
|
|
|
cbe35e |
- remove more devfs compat
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 23 2004 Bill Nottingham <notting@redhat.com> 7.98-1
|
|
|
cbe35e |
- various kmodule speedups
|
|
|
cbe35e |
- rc.d/init.d/netfs: don't mount GFS (#140281)
|
|
|
cbe35e |
- fix various minilogd bogosities (#106338)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Nov 15 2004 Karsten Hopp <karsten@redhat.de> 7.97-1
|
|
|
cbe35e |
- configure CTC protocol if CTCPROT is set (#133088)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Nov 15 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix check_link_down to still check negotiation if link is
|
|
|
cbe35e |
listed as "up" on entering (#110164, <dbaron@dbaron.org>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Nov 11 2004 Karsten Hopp <karsten@redhat.de> 7.96-1
|
|
|
cbe35e |
- parse OPTIONS for QETH, CTC, LCS interfaces (#136256, mainframe)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 9 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix typo (#134787, <bnocera@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Nov 7 2004 Bill Nottingham <notting@redhat.com> 7.95-1
|
|
|
cbe35e |
- various translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 2 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- take an axe to rc.sysinit:
|
|
|
cbe35e |
- remove delay on unclean startup
|
|
|
cbe35e |
- remove hdparm code
|
|
|
cbe35e |
- remove LVM1 code
|
|
|
cbe35e |
- remove old raidtab code in favor of mdadm
|
|
|
cbe35e |
- remove support for old isapnp tools
|
|
|
cbe35e |
- move all block device mangling before fsck. run fsck *once*, not twice
|
|
|
cbe35e |
- some more LC_ALL=C stuff
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Oct 31 2004 Florian La Roche <laroche@redhat.com>
|
|
|
cbe35e |
- /etc/rc.d/rc: use "LC_ALL=C grep" for small speedup
|
|
|
cbe35e |
- /etc/rc.d/rc.sysinit:
|
|
|
cbe35e |
- do not read udev.conf, this seems to be all in the start_udev script
|
|
|
cbe35e |
- fix detection of "nomodules" kernel command line option
|
|
|
cbe35e |
- read /proc/cmdline earlier and convert rhgb to use that, too
|
|
|
cbe35e |
- load_module(): change redirection to /dev/null
|
|
|
cbe35e |
- some checks for RHGB_STARTED="" looked strange
|
|
|
cbe35e |
- /etc/sysconfig/network-scripts/ifup-ppp:
|
|
|
cbe35e |
- remove a call to basename with shell builtins
|
|
|
cbe35e |
- /etc/sysconfig/network-scripts/network-functions:
|
|
|
cbe35e |
- remove some calls to basename/sed with shell builtins
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 27 2004 Bill Nottingham <notting@redhat.com> 7.93.2-1
|
|
|
cbe35e |
- fix prefdm fallback to installed display managers (#137274)
|
|
|
cbe35e |
- fix incorrect rhgb temporary path (#137391)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 18 2004 Bill Nottingham <notting@redhat.com> 7.93-1
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
- fix handling of GATEWAYDEV (#133575, <pekkas@netcore.fi>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Oct 17 2004 Bill Nottingham <notting@redhat.com> 7.91-1
|
|
|
cbe35e |
- rc.d/rc.sysinit: remove devlabel call
|
|
|
cbe35e |
- mdadm support, now that raidtools is gone (#126636, #88785)
|
|
|
cbe35e |
- call ipv6to4 scripts in /etc/ppp/(ip-up|ip-down) (#124390, <dwmw2@redhat.com>)
|
|
|
cbe35e |
- cleanup a couple of nits that could affect bug #134754
|
|
|
cbe35e |
- make sure we return to rhgb after fsck (#133966, #112839, #134449)
|
|
|
cbe35e |
- automatically reboot when fsck calls for it, instead of requiring
|
|
|
cbe35e |
manual intervention (#117641 and duplicates)
|
|
|
cbe35e |
- ifup-wireless: fix key for open vs. restricted (#135235, <dax@gurulabs.com>)
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 08 2004 Karsten Hopp <karsten@redhat.de> 7.90-1
|
|
|
cbe35e |
- fix portname for LCS devices
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 08 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- remove sysconfig/rawdevices, as initscript is removed
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Oct 07 2004 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- change /etc/sysctl.conf to not allow source routed packets per default
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 6 2004 Bill Nottingham <notting@redhat.com> - 7.88-1
|
|
|
cbe35e |
- fix requires
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 5 2004 Dan Walsh <dwalsh@redhat.com> - 7.87-1
|
|
|
cbe35e |
- Change SELinux relabel to not remount /
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 4 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- use runuser instead of su; require it
|
|
|
cbe35e |
- init.d/halt: use right file name for random seed (#134432)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 1 2004 Bill Nottingham <notting@redhat.com> - 7.86-1
|
|
|
cbe35e |
- use /etc/hotplug/blacklist to blacklist modules in hardware init (#132719)
|
|
|
cbe35e |
- filter indic locales on the console (#134198)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 29 2004 Bill Nottingham <notting@redhat.com> - 7.85-1
|
|
|
cbe35e |
- ifup, network-functions: fix worked-by-accident shell quoting
|
|
|
cbe35e |
- lang.csh: remove setting of dspmbyte (#89549, <mitr@redhat.com>)
|
|
|
cbe35e |
- SELinux fixes
|
|
|
cbe35e |
- clean up prefdm
|
|
|
cbe35e |
- init.d/functions: export LC_MESSAGES (#133786)
|
|
|
cbe35e |
- allow daemon to coredump if requested (#130175)
|
|
|
cbe35e |
- network-functions: be more liberal in what we accept for link types (#90602, #127984)
|
|
|
cbe35e |
- fix overzealousness with -range aliases (#65415)
|
|
|
cbe35e |
- rc.sysinit: use s-c-keyboard, not kbdconfig (#133929)
|
|
|
cbe35e |
- fix checkpid logic, clean up potential errors (#134030)
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 22 2004 Bill Nottingham <notting@redhat.com> - 7.84-1
|
|
|
cbe35e |
- only start udev once
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 7.83-1
|
|
|
cbe35e |
- conflict with old udev
|
|
|
cbe35e |
- use udev if it's present
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 21 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't mount usbfs without usb. also, at least be consistent in filesystem type
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 17 2004 Bill Nottingham <notting@redhat.com> - 7.82-1
|
|
|
cbe35e |
- fix handling of nonexistent devices (#132839)
|
|
|
cbe35e |
- rhgb enhancements (<veillard@redhat.com>, #132665)
|
|
|
cbe35e |
- initscripts.spec: require nash (#132513)
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 14 2004 Karsten Hopp <karsten@redhat.de> 7.81-1
|
|
|
cbe35e |
- load iucv device config after /etc/sysconfig/network so that
|
|
|
cbe35e |
GATEWAY doesn't get overwritten
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 10 2004 Bill Nottingham <notting@redhat.com> - 7.80-1
|
|
|
cbe35e |
- fix IPv6 6to4 & NAT (#118928, <pb@bieringer.de>, <pekkas@netcore.fi>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 10 2004 Karsten Hopp <karsten@redhat.com> - 7.79-1
|
|
|
cbe35e |
- load ctc device config after /etc/sysconfig/network so that
|
|
|
cbe35e |
GATEWAY doesn't get overwritten
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 8 2004 Dan Walsh <dwalshg@redhat.com> - 7.78-2
|
|
|
cbe35e |
- fix setting SELinux contexts on udev-created-in-initrd devices
|
|
|
cbe35e |
- Let restorecon check if selinux is enabled.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 8 2004 Bill Nottingham <notting@redhat.com> - 7.78-1
|
|
|
cbe35e |
- set SELinux contexts on udev-created-in-initrd devices, if necessary
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 1 2004 Bill Nottingham <notting@redhat.com> - 7.77-1
|
|
|
cbe35e |
- mount usbfs (#131347)
|
|
|
cbe35e |
- start any automatic raid devices
|
|
|
cbe35e |
- remove triggers for ancient releases, bulletproof remaining ones (#131356)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 1 2004 Jeremy Katz <katzj@redhat.com> - 7.76-1
|
|
|
cbe35e |
- udev uses UDEV_TMPFS now
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 01 2004 Karsten Hopp <karsten@redhat.de> 7.75-1
|
|
|
cbe35e |
- fix sysfs configuration of qeth and lcs network interfaces
|
|
|
cbe35e |
(eth, tr, hsi)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 30 2004 Karsten Hopp <karsten@redhat.de> 7.74-1
|
|
|
cbe35e |
- fix support for LCS portnumbers (mainframe)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 27 2004 Jason Vas Dias <jvdias@redhat.com> 7.73-1
|
|
|
cbe35e |
- Add support for running the DHCPv6 client to ifup
|
|
|
cbe35e |
- (new DHCPV6C=yes/no ifcfg-${IF} variable) + update sysconfig.txt
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 27 2004 Bill Nottingham <notting@redhat.com> 7.72-1
|
|
|
cbe35e |
- flip the kernel conflict to a Requires:
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Aug 26 2004 Karsten Hopp <karsten@redhat.de> 7.71-1
|
|
|
cbe35e |
- ifcfg-iucv/ctc: drop REMIP and use GATEWAY instead
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Aug 26 2004 Bill Nottingham <notting@redhat.com> 7.70-1
|
|
|
cbe35e |
- autoload hardware modules on startup
|
|
|
cbe35e |
- minor fsck cleanup (#115028, <leonard-rh-bugzilla@den.ottolander.nl>)
|
|
|
cbe35e |
- ifup: support STP bridging (#123324)
|
|
|
cbe35e |
- rc.sysinit: do a SELinux relabel if forced
|
|
|
cbe35e |
- rc.sysinit: remove devfs compat and the remaining 2.4 compat
|
|
|
cbe35e |
- ifup-wireless: support multiple keys (#127957)
|
|
|
cbe35e |
- fix firmware loading (#129155, <bnocera@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 24 2004 Karsten Hopp <karsten@redhat.de> 7.68-1
|
|
|
cbe35e |
- execute zfcfconf.sh if available (mainframe)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 23 2004 Jason Vas Dias <jvdias@redhat.com> 7.67-1
|
|
|
cbe35e |
- fix change_resolv_conf: if pre-existing /etc/resolv.conf
|
|
|
cbe35e |
- non-existent or empty, replace with new file contents.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
|
|
|
cbe35e |
- Allow users to use generic /etc/dhclient.conf if per-device
|
|
|
cbe35e |
- /etc/dhclient-${DEVICE}.conf is non-existent or empty
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 20 2004 Jason Vas Dias <jvdias@redhat.com> 7.66-1
|
|
|
cbe35e |
- Preserve "options" settings in resolv.conf (bug 125712)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 20 2004 Jeremy Katz <katzj@redhat.com> - 7.65-1
|
|
|
cbe35e |
- look at /etc/udev/udev.conf, not /etc/sysconfig/udev (#130431)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 20 2004 Bill Nottingham <notting@redhat.com> 7.64-1
|
|
|
cbe35e |
- rc.d/rc.sysinit: check for dev file too (#130350)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Aug 19 2004 Than Ngo <than@redhat.com> 7.63-1
|
|
|
cbe35e |
- allow CBCP with own number (#125710)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Aug 19 2004 Bill Nottingham <notting@redhat.com> 7.62-1
|
|
|
cbe35e |
- fix up resolv.conf munging (#129921)
|
|
|
cbe35e |
- use rngd if available
|
|
|
cbe35e |
- run start_udev if necessary (#120605)
|
|
|
cbe35e |
- readonly root updates (#129893, <markmc@redhat.com>)
|
|
|
cbe35e |
- ifup-wireless: quote key (#129930)
|
|
|
cbe35e |
- remove rawdevices (#130048)
|
|
|
cbe35e |
- handle binfmt_misc in rc.sysinit for the case where it's built in (#129954)
|
|
|
cbe35e |
- remove mkkerneldoth
|
|
|
cbe35e |
- don't remove linguas in lang.* (part of #9733)
|
|
|
cbe35e |
- fix nfs unmounting (#129765)
|
|
|
cbe35e |
- fix URL (#129433)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 11 2004 Jason Vas Dias <jvdias@redhat.com> 7.61-1
|
|
|
cbe35e |
- fix for bug 120093: add PERSISTENT_DHCLIENT option to ifcfg files
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 3 2004 Karsten Hopp <karsten@redhat.de> 7.60-1
|
|
|
cbe35e |
- write peerid into sysfs for IUCV devices (mainframe)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 3 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't remove /dev/mapper/control - nash will do it if it has to (#127115)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 30 2004 Jason Vas Dias <jvdias@redhat.com> 7.60-1
|
|
|
cbe35e |
- fix for bug 125712: add 'change_resolv.conf' function
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 27 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- rc.d/init.d/network: don't bring interfaces down twice (#127487)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jul 14 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix bonding + no IP (#127285)
|
|
|
cbe35e |
- wrap second LVM initialization in vgscan check to avoid extraneous messages (#127639)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jul 7 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- move random stuff to rc.sysinit/halt; move all swap to after this.
|
|
|
cbe35e |
prereq of bug #123278
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 2 2004 Bill Nottingham <notting@redhat.com> 7.59-1
|
|
|
cbe35e |
- set context on ICE directory after making it (#127099, <concert@europe.com>)
|
|
|
cbe35e |
- don't mount GFS filesystems in rc.sysinit
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jun 29 2004 Bill Nottingham <notting@redhat.com> 7.58-1
|
|
|
cbe35e |
- rc.d/rc.sysinit: hack: make ICE directory on boot (#86480)
|
|
|
cbe35e |
- set devicetype for xDSL (#126194)
|
|
|
cbe35e |
- ignore locking failures when starting lvm volumes (#126192, <radu@primit.ro>)
|
|
|
cbe35e |
- unset LC_MESSAGES for rhgb (#126020, <ynakai@redhat.com>)
|
|
|
cbe35e |
- bonding fixes
|
|
|
cbe35e |
- setsysfont: remove error (#100559)
|
|
|
cbe35e |
- remove duplicate setting of network routes (#125450)
|
|
|
cbe35e |
- vlan fixes (#107504, <hrunting@texas.net>)
|
|
|
cbe35e |
- ifup-aliases: remove bogus route setting (#120908)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 25 2004 Bill Nottingham <notting@redhat.com> 7.57-1
|
|
|
cbe35e |
- readonly root fixes (<alexl@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 25 2004 Karsten Hopp <karsten@redhat.de> 7.56-1
|
|
|
cbe35e |
- special TYPE for qeth devices to differenciate them from ethX
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon May 24 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix pppd vs. ppp typo in conflicts (#123680)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri May 21 2004 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix bridging confusing module order (#122848, <luto@myrealbox.com>)
|
|
|
cbe35e |
- rc.d/rc.sysinit: don't mount cifs (#122501)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 18 2004 Karsten Hopp <karsten@redhat.de> 7.55-1
|
|
|
cbe35e |
- add support for ccwgroup devices on mainframe
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu May 13 2004 Than Ngo <than@redhat.com> 7.54-1
|
|
|
cbe35e |
- add patch to enable PIE build of usernetctl
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri May 7 2004 Jeremy Katz <katzj@redhat.com> - 7.53-1
|
|
|
cbe35e |
- little lvm tweak (#121963)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.52-1
|
|
|
cbe35e |
- ipv4 addresses are ints, not longs (#122479)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 4 2004 Bill Nottingham <notting@redhat.com> 7.51-1
|
|
|
cbe35e |
- get rid of LVM error when no volumes are defined (#121197)
|
|
|
cbe35e |
- fix selinux short-circuit test (#121143, <michal@harddata.com>)
|
|
|
cbe35e |
- /dev/mapper/control is a special file, check it accordingly (#121963)
|
|
|
cbe35e |
- support ETHTOOL_OPTS on bonding slaves (#119430, <hrunting@texas.net>)
|
|
|
cbe35e |
- handle multiple spaces correctly in rc.sysinit, network-functions
|
|
|
cbe35e |
(#118583, <pallas@kadan.cz>)
|
|
|
cbe35e |
- cleanup fd leaks, mem leaks, other bogosities
|
|
|
cbe35e |
(#119987, <linux_4ever@yahoo.com>)
|
|
|
cbe35e |
- rc.d/init.d/network: remove ipv6 bogosity (#114128)
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 16 2004 Bill Nottingham <notting@redhat.com> 7.50-1
|
|
|
cbe35e |
- fix LVM issues in rc.sysinit (#120458, #119975)
|
|
|
cbe35e |
- deal with fixed racoon parser
|
|
|
cbe35e |
- translation updates from translators
|
|
|
cbe35e |
- fix USB loading (#120911)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 26 2004 Bill Nottingham <notting@redhat.com> 7.49-1
|
|
|
cbe35e |
- use alsa for mixer saving in halt
|
|
|
cbe35e |
- don't umount /proc in halt (#118880)
|
|
|
cbe35e |
- various translation updates from translators
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.48-1
|
|
|
cbe35e |
- disable enforcing in emergency mode for now, relabel some commonly
|
|
|
cbe35e |
mislabeled files on boot
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 17 2004 Bill Nottingham <notting@redhat.com> 7.47-1
|
|
|
cbe35e |
- translation: catch more input strings (#106285, <mitr@volny.cz>)
|
|
|
cbe35e |
- remove autologin from prefdm (#108969)
|
|
|
cbe35e |
- return to rhgb after ./unconfigured (#109807, <jkeating@j2solutions.net>)
|
|
|
cbe35e |
- handle iso15 in setsysfont (#110243)
|
|
|
cbe35e |
- clean up samba & vmware in rc.sysinit (#113104)
|
|
|
cbe35e |
- some sysconfig.txt documentation (#110427, #118063)
|
|
|
cbe35e |
- fix bug in umount-on-halt (#113088, <giardina@airlab.elet.polimi.it>)
|
|
|
cbe35e |
- handle CIFS in netfs (#115691)
|
|
|
cbe35e |
- make sure hotplug isn't stuck unset (#116666, <aoliva@redhat.com>)
|
|
|
cbe35e |
- handle network fs better in rc.sysinit (#111290)
|
|
|
cbe35e |
- nomodules applies to usb/firewire too (#113278)
|
|
|
cbe35e |
- ipsec fix (#116922, <felipe_alfaro@linuxmail.org>)
|
|
|
cbe35e |
- make sure rc exits cleanly (#117827, <enrico.scholz@informatik.tu-chemnitz.de>)
|
|
|
cbe35e |
- fsck root FS from initrd, for dynamic majors (#117575, <sct@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com>
|
|
|
cbe35e |
- Use ':' instead of '.' as separator for chown.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 2 2004 Bill Nottingham <notting@redhat.com> 7.46-1
|
|
|
cbe35e |
- some more rc.sysinit tweaks and refactoring
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jan 30 2004 Bill Nottingham <notting@redhat.com> 7.45-1
|
|
|
cbe35e |
- fix rc.sysinit typo
|
|
|
cbe35e |
- rc.d/init.d/network: clear out environment (#113937, #111584)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jan 28 2004 Bill Nottingham <notting@redhat.com> 7.44-1
|
|
|
cbe35e |
- NFSv4 support (<chucklever@bigfoot.com>, <steved@redhat.com>)
|
|
|
cbe35e |
- handle 2.6-style 'install ethX ...' lines correctly
|
|
|
cbe35e |
- mount sysfs by default
|
|
|
cbe35e |
- time to clean up the cruft. remove:
|
|
|
cbe35e |
- boot-time depmod
|
|
|
cbe35e |
- linking of /boot/System.map to /boot/System.map-`uname -r`
|
|
|
cbe35e |
- /var/log/ksyms.X
|
|
|
cbe35e |
- libredhat-kernel support
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jan 16 2004 Dan Walsh <dwalsh@redhat.com> 7.43-2
|
|
|
cbe35e |
- Remove selinux run_init code from service script. It is no longer needed.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Dec 5 2003 Jeremy Katz <katzj@redhat.com> 7.43-1
|
|
|
cbe35e |
- basic lvm2 support
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 28 2003 Bill Nottingham <notting@redhat.com> 7.42-1
|
|
|
cbe35e |
- show rhgb details on service failures
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 22 2003 Bill Nottingham <notting@redhat.com> 7.41-1
|
|
|
cbe35e |
- tweak some rhgb interactions (#100894, #107725)
|
|
|
cbe35e |
- fix dvorak keymap loading (#106854)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.40-1
|
|
|
cbe35e |
- add better fix to support nickname (#105785)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 22 2003 Than Ngo <than@redhat.com> 7.39-1
|
|
|
cbe35e |
- add support nickname (#105785)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 17 2003 Bill Nottingham <notting@redhat.com> 7.38-1
|
|
|
cbe35e |
- rhgb updates, now pass 'rhgb' to use it, instead of passing 'nogui'
|
|
|
cbe35e |
to disable it
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Oct 10 2003 Bill Nottingham <notting@redhat.com> 7.37-1
|
|
|
cbe35e |
- bridging updates (#104421, <dwmw2@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 8 2003 Bill Nottingham <notting@redhat.com> 7.36-1
|
|
|
cbe35e |
- mount /dev/pts before starting rhgb
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 1 2003 Bill Nottingham <notting@redhat.com> 7.35-1
|
|
|
cbe35e |
- load acpi modules on startup if necessary
|
|
|
cbe35e |
- fix typo in ipsec comments & sysconfig.txt
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 15 2003 Than Ngo <than@redhat.com> 7.34-1
|
|
|
cbe35e |
- use upsdrvctl to start the shutdown process
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 15 2003 Bill Nottingham <notting@redhat.com> 7.33-1
|
|
|
cbe35e |
- ipsec fixes (#104227, <harald@redhat.com>)
|
|
|
cbe35e |
- ppp fixes (#104128, #97845, #85447)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Sep 11 2003 Bill Nottingham <notting@redhat.com> 7.32-1
|
|
|
cbe35e |
- fix ip calls for some device names (#104187)
|
|
|
cbe35e |
- ipsec fixes
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 5 2003 Bill Nottingham <notting@redhat.com> 7.31-1
|
|
|
cbe35e |
- fix bonding + dhcp (#91399)
|
|
|
cbe35e |
- fix typo (#103781)
|
|
|
cbe35e |
- sysconfig/network-scripts/ifup: fix use of local
|
|
|
cbe35e |
|
|
|
cbe35e |
- fix shutdown with NFS root (#100556, <Julian.Blake@cern.ch>)
|
|
|
cbe35e |
- remove /var/run/confirm when done with /etc/rc (#100898)
|
|
|
cbe35e |
- ipcalc: fix some memory handling (#85478, <miked@ed.ac.uk>)
|
|
|
cbe35e |
- handle sorting > 10 network devices (#98209)
|
|
|
cbe35e |
- unset ONPARENT after use (#101384)
|
|
|
cbe35e |
- random other fixes
|
|
|
cbe35e |
- bridging support (<dwmw2@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 15 2003 Bill Nottingham <notting@redhat.com> 7.30-1
|
|
|
cbe35e |
- IPv6 updates (#86210, #91375, <pekkas@netcore.fi>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 8 2003 Bill Nottingham <notting@redhat.com> 7.29-1
|
|
|
cbe35e |
- setsysfont: don't echo to /dev/console (#102004)
|
|
|
cbe35e |
- fix ethernet device renaming deadlock (#101566)
|
|
|
cbe35e |
- consoletype: don't return 'vt' on vioconsole (#90465)
|
|
|
cbe35e |
- ifup: fix short-circuit (#101445)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 18 2003 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- ifup-routes: pass the interface name to handle_file() so that we don't try
|
|
|
cbe35e |
to use the routes file's name as an interface name
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jul 9 2003 Bill Nottingham <notting@redhat.com> 7.28-1
|
|
|
cbe35e |
- switch from $CONFIG.keys to keys-$CONFIG
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 8 2003 Bill Nottingham <notting@redhat.com> 7.27-1
|
|
|
cbe35e |
- add a check to consoletype for the current foreground console
|
|
|
cbe35e |
- use it when running unicode_start (#98753)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jul 2 2003 Bill Nottingham <notting@redhat.com> 7.26-1
|
|
|
cbe35e |
- ipsec support (see sysconfig.txt, ifup-ipsec)
|
|
|
cbe35e |
- read $CONFIG.keys, for non-world-readable keys
|
|
|
cbe35e |
- allow default window size for routes to be set with WINDOW= (#98112)
|
|
|
cbe35e |
- support setting device options with ethtool opts
|
|
|
cbe35e |
- fix s390 bootup spew (#98078)
|
|
|
cbe35e |
- support renaming interfaces with nameif based on hwaddr
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jun 23 2003 Bill Nottingham <notting@redhat.com> 7.25-1
|
|
|
cbe35e |
- fix DNS punching in the case of other rules for the DNS server
|
|
|
cbe35e |
(#97686, <martin@zepler.org>)
|
|
|
cbe35e |
- initlog, ppp-watch, and usernetctl tweaks (<linux_4ever@yahoo.com>)
|
|
|
cbe35e |
- fix grep for mingetty (#97188)
|
|
|
cbe35e |
- fix rhgb-client bad syntax
|
|
|
cbe35e |
- change network device searching, use correct naming, fix route issues
|
|
|
cbe35e |
(<harald@redhat.com>)
|
|
|
cbe35e |
- other random tweaks
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri May 23 2003 Bill Nottingham <notting@redhat.com> 7.24-1
|
|
|
cbe35e |
- now even still yet more tweaks for graphical boot
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu May 22 2003 Bill Nottingham <notting@redhat.com> 7.23-1
|
|
|
cbe35e |
- even still yet more tweaks for graphical boot
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.22-1
|
|
|
cbe35e |
- still yet more tweaks for graphical boot
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 20 2003 Bill Nottingham <notting@redhat.com> 7.21-1
|
|
|
cbe35e |
- yet more tweaks for graphical boot
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri May 2 2003 Bill Nottingham <notting@redhat.com> 7.20-1
|
|
|
cbe35e |
- more tweaks for graphical boot
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 30 2003 Bill Nottingham <notting@redhat.com> 7.18-1
|
|
|
cbe35e |
- some tweaks for graphical boot
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Apr 21 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- initscripts-s390.patch: remove not needed parts about PNP=
|
|
|
cbe35e |
- inittab.390: sync with normal version
|
|
|
cbe35e |
- rc.sysinit: remove two further calls to /sbin/consoletype with $CONSOLETYPE
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 18 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- sysconfig/init.s390: set LOGLEVEL=3 as for other archs
|
|
|
cbe35e |
- rc.d/init.d/network, rc.d/rc: change confirmation mode to
|
|
|
cbe35e |
not use an environment variable
|
|
|
cbe35e |
- rc.d/init.d/functions: make strstr() even shorter, remove old
|
|
|
cbe35e |
"case" version that has been already commented out
|
|
|
cbe35e |
- rc.d/rc.sysinit:
|
|
|
cbe35e |
- no need to set NETWORKING=no, it is not used/exported
|
|
|
cbe35e |
- do not export BOOTUP
|
|
|
cbe35e |
- delete two "sleep 1" calls that wants to add time to go
|
|
|
cbe35e |
into confirmation mode. There is enough time to press a
|
|
|
cbe35e |
key anyway or use "confirm" in /proc/cmdline.
|
|
|
cbe35e |
- read /proc/cmdline into a variable
|
|
|
cbe35e |
- use strstr() to search in /proc/cmdline
|
|
|
cbe35e |
- add "forcefsck" as possible option in /proc/cmdline
|
|
|
cbe35e |
- while removing lock files, no need to call `basename`
|
|
|
cbe35e |
- add unamer=`uname -r` and reduce number of forks
|
|
|
cbe35e |
- do not fork new bash to create /var/log/ksyms.0
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Apr 03 2003 Karsten Hopp <karsten@redhat.de> 7.15-1
|
|
|
cbe35e |
- Mainframe has no /dev/ttyX devices and no mingetty, don't
|
|
|
cbe35e |
initialize them. This gave error messages during startup
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 17 2003 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- init.d/network: don't advertise "probe: true" in the header if we don't
|
|
|
cbe35e |
recognize "probe" as an argument
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 12 2003 Bill Nottingham <notting@redhat.com> 7.14-1
|
|
|
cbe35e |
* - do not handle changed chain name; change was reverted
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 25 2003 Bill Nottingham <notting@redhat.com> 7.13-1
|
|
|
cbe35e |
- handle 7.x SYSFONTACM settings in setsysfont (#84183)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 24 2003 Bill Nottingham <notting@redhat.com> 7.12-1
|
|
|
cbe35e |
- handle changed chain name
|
|
|
cbe35e |
- init vts used in all cases
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 21 2003 Bill Nottingham <notting@redhat.com> 7.10-1
|
|
|
cbe35e |
- handle LANGUAGE specially for zh_CN.GB18030 and gdm (#84773)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Feb 20 2003 Bill Nottingham <notting@redhat.com> 7.09-1
|
|
|
cbe35e |
- initialize two ttys past # of mingettys (for GDM)
|
|
|
cbe35e |
- fix zeroconf route
|
|
|
cbe35e |
- redhat-config-network writes $NAME.route for some static routes
|
|
|
cbe35e |
(e.g., ppp); handle that (#84193)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 18 2003 Bill Nottingham <notting@redhat.com> 7.08-1
|
|
|
cbe35e |
- load keybdev & mousedev even if hid is already loaded/static
|
|
|
cbe35e |
- run fewer scripts through action (#49670, #75279, #81531)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 10 2003 Bill Nottingham <notting@redhat.com> 7.07-1
|
|
|
cbe35e |
- fix nicknames & profiles (#82246)
|
|
|
cbe35e |
- fix check_device_down (#83780, <pzb@datstacks.com>)
|
|
|
cbe35e |
- vlan fixes (<tis@foobar.fi>)
|
|
|
cbe35e |
- fix groff macros (#83531, <tsekine@sdri.co.jp>)
|
|
|
cbe35e |
- various updated translations
|
|
|
cbe35e |
- fix checkpid for multiple pids (#83401)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jan 31 2003 Bill Nottingham <notting@redhat.com> 7.06-1
|
|
|
cbe35e |
- 802.1Q VLAN support (<tis@foobar.fi>, #82593)
|
|
|
cbe35e |
- update translations
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jan 30 2003 Bill Nottingham <notting@redhat.com> 7.05-1
|
|
|
cbe35e |
- fix syntax error in rc.sysinit when there are fsck errors
|
|
|
cbe35e |
- fix zh_TW display on console (#82235)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jan 15 2003 Bill Nottingham <notting@redhat.com> 7.04-1
|
|
|
cbe35e |
- tweak some translatable strings
|
|
|
cbe35e |
- fix for rc.sysinit on machines that pass arguments to mingetty
|
|
|
cbe35e |
(<nalin@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jan 14 2003 Bill Nottingham <notting@redhat.com> 7.03-1
|
|
|
cbe35e |
- move system font setting sooner (<milan.kerslager@pslib.cz>)
|
|
|
cbe35e |
- fix link checking for dhcp, use both ethtool and mii-tool
|
|
|
cbe35e |
- fix CJK text on the console, and locale-archive held open
|
|
|
cbe35e |
on shutdown
|
|
|
cbe35e |
- IPv6 updates <pekkas@netcore.fi>, <pb@bieringer.de>
|
|
|
cbe35e |
- speedup tweaks (<drepper@redhat.com>)
|
|
|
cbe35e |
- use glib2 for ppp-watch (#78690, <kisch@mindless.com>)
|
|
|
cbe35e |
- add zeroconf route (#81738)
|
|
|
cbe35e |
- fix ifup-ppp for dial-on-demand, and onboot (<goeran@uddeborg.pp.se>)
|
|
|
cbe35e |
- tweak raidtab parsing, don't worry about not-in-fstab RAID devices
|
|
|
cbe35e |
(#71087, #78467, <aja@mit.edu>)
|
|
|
cbe35e |
- don't automatically bring up aliases if 'ONPARENT=no' is set (#78992)
|
|
|
cbe35e |
- getkey cleanups/tweaks (#76071, <ben@enchantedforest.org>)
|
|
|
cbe35e |
- rework halt_get_remaining (#76831, <michal@harddata.com>)
|
|
|
cbe35e |
- ipcalc: fix calculation of /32 addresses (#76646)
|
|
|
cbe35e |
- various other tweaks and fixes
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Dec 20 2002 Bill Nottingham <notting@redhat.com> 7.01-1
|
|
|
cbe35e |
- %%config(noreplace) inittab
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Dec 17 2002 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- add a "nofirewire" option to /etc/rc.sysinit, analogous to "nousb"
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Dec 17 2002 Bill Nottingham <notting@redhat.com> 7.00-1
|
|
|
cbe35e |
- tweaks for potential GUI bootup
|
|
|
cbe35e |
- loop checking for network link state, don't unilterally wait five
|
|
|
cbe35e |
seconds
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sat Dec 14 2002 Karsten Hopp <karsten@redhat.de> 6.99-1
|
|
|
cbe35e |
- remove call to /sbin/update for S/390, too
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Dec 11 2002 Bill Nottingham <notting@redhat.com> 6.98-1
|
|
|
cbe35e |
- remove call to /sbin/update
|
|
|
cbe35e |
- fix netprofile
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Dec 2 2002 Bill Nottingham <notting@redhat.com> 6.97-1
|
|
|
cbe35e |
- IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
|
|
|
cbe35e |
- devlabel support (<Gary_Lerhaupt@Dell.com>)
|
|
|
cbe35e |
- do lazy NFS umounts
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- correctly remove non-packaged files for mainframe
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 12 2002 Bill Nottingham <notting@redhat.com> 6.96-1
|
|
|
cbe35e |
- fix various static-routes brokeness (#74317, #74318, #74320, #76619,
|
|
|
cbe35e |
#75604)
|
|
|
cbe35e |
- fix handling of SYSFONTACM in setsysfont (#75662)
|
|
|
cbe35e |
- fix lang.csh for CJK (#76908, <ynakai@redhat.com>)
|
|
|
cbe35e |
- IPv6 update (<pekkas@netcore.fi>, <pb@bieringer.de>)
|
|
|
cbe35e |
- other minor tweaks
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 16 2002 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- owns directory /etc/ppp/peers (bug #74037)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 4 2002 Bill Nottingham <notting@redhat.com> 6.95-1
|
|
|
cbe35e |
- fix syntax error in duplicate route removal section of ifup
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 4 2002 Nalin Dahyabhai <nalin@redhat.com> 6.94-1
|
|
|
cbe35e |
- fix syntax error calling unicode_start when SYSFONTACM isn't set
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 2 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix calling of unicode_start in lang.{sh,csh}
|
|
|
cbe35e |
- ipv6 tweak
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 28 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't infinite loop on ifdown
|
|
|
cbe35e |
- remove disabling of DMA; this can cause problems
|
|
|
cbe35e |
- move swap startup to after LVM (#66588)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 20 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't cycle through eth0-eth9 on dhcp link check (#68127)
|
|
|
cbe35e |
- don't retry indefinitely on ppp startup
|
|
|
cbe35e |
- activate network profile passed on kernel commandline via netprofile=
|
|
|
cbe35e |
- fix iptables invocations again
|
|
|
cbe35e |
- translation refresh
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 14 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix silly typo in rc.sysinit
|
|
|
cbe35e |
- increase timeout for link to 5 seconds (#70545)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 13 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- require /etc/redhat-release (#68903)
|
|
|
cbe35e |
- fix tty2-tty6 (sort of)
|
|
|
cbe35e |
- fix iptables invocations (#70807, #71201, #68368)
|
|
|
cbe35e |
- other minor tweaks
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jul 24 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix unicode checks in rc.sysinit, lang.{sh,csh} to handle UTF-8@euro
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 16 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- use iptables, not ipchains
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 16 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- /sbin/service: set PATH before calling startup scripts
|
|
|
cbe35e |
HOME and TERM are also set during bootup, but they should not make
|
|
|
cbe35e |
a difference for well-written daemons.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jul 15 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix boot-time cleanup of /var
|
|
|
cbe35e |
- update po files
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jul 11 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- /etc/init.d/functions:
|
|
|
cbe35e |
daemon(): avoid starting another bash
|
|
|
cbe35e |
killproc(): avoid starting another bash for the default case
|
|
|
cbe35e |
- do not call "insmod -p" before loading the "st" module
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 09 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- allow an option for ups poweroff #68123
|
|
|
cbe35e |
- change grep for ONBOOT= #63903
|
|
|
cbe35e |
- allow building with a cross-compiler #64362,#64255
|
|
|
cbe35e |
- faster check in network-functions:check_default_route()
|
|
|
cbe35e |
- better checks for backup files
|
|
|
cbe35e |
- drastically reduce the number of consoletype invocations
|
|
|
cbe35e |
- do not export "GATEWAY" in network-functions
|
|
|
cbe35e |
- code cleanups in rc.sysinit
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 05 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- rc.sysinit: do not load raid modules unless /etc/raidtab exists
|
|
|
cbe35e |
- many cleanups for more consistent shell programming and also
|
|
|
cbe35e |
many smaller speedups within network scripts, no un-necessary sourcing
|
|
|
cbe35e |
of files etc
|
|
|
cbe35e |
- nearly re-code /etc/rc.d/rc
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jun 27 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- a couple minor unicode tweaks in rc.sysinit
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jun 26 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- move /proc/bus/usb mount, in case USB is in the initrd
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jun 26 2002 Preston Brown <pbrown@redhat.com>
|
|
|
cbe35e |
- don't try to set wireless freq/channel when in Managed mode
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jun 26 2002 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- start some sh coding cleanups
|
|
|
cbe35e |
- change to /etc/init.d/functions
|
|
|
cbe35e |
- eliminate some un-necessary PATH settings
|
|
|
cbe35e |
- eliminate some TEXTDOMAIN settings
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jun 12 2002 Bill Nottingham <notting@redhat.com> 6.78-1
|
|
|
cbe35e |
- fix UTF-8 checks
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jun 05 2002 Than Ngo <than@redhat.com> 6.77-1
|
|
|
cbe35e |
- fixed a bug in setting defaultgateway
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu May 30 2002 Bill Nottingham <notting@redhat.com> 6.76-1
|
|
|
cbe35e |
- call unicode_start in lang.{sh,csh}, setsysfont when necessary
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 28 2002 Bill Nottingham <notting@redhat.com> 6.75-1
|
|
|
cbe35e |
- add check for link for dhcp back in
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 19 2002 Bill Nottingham <notting@redhat.com> 6.67-1
|
|
|
cbe35e |
- fix silly cut&paste bug in hdparm settings in initscripts
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Apr 15 2002 Trond Eivind Glomsrød <teg@redhat.com> 6.65-1
|
|
|
cbe35e |
- Update translations
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Apr 14 2002 Bill Nottingham <notting@redhat.com> 6.64-1
|
|
|
cbe35e |
- make sure chatdbg is set before using it (#63448, <Bertil@Askelid.com>)
|
|
|
cbe35e |
- allow tweaking of more devices with hdparm (#53511), and
|
|
|
cbe35e |
tweak non-disk devices iff they explicitly have a config file
|
|
|
cbe35e |
for that device (#56575, #63415)
|
|
|
cbe35e |
- some translation updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 12 2002 Bill Nottingham <notting@redhat.com> 6.63-1
|
|
|
cbe35e |
- ipcalc cleanups (#58410)
|
|
|
cbe35e |
- quit stripping binaries
|
|
|
cbe35e |
- do LVM init after RAID init too (#63238)
|
|
|
cbe35e |
- export all locale variables (#56142)
|
|
|
cbe35e |
- run sysctl -p after network init as well
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 09 2002 Bill Nottingham <notting@redhat.com> 6.62-1
|
|
|
cbe35e |
- delete X/VNC locks on startup (#63035)
|
|
|
cbe35e |
- shut up DMA disabling, move it to after ide-scsi (#62873, #62956)
|
|
|
cbe35e |
- use full path to /sbin/ifconfig (#59457)
|
|
|
cbe35e |
- /sbin/service: change to root directory before staring/stopping;
|
|
|
cbe35e |
also sanitize environment
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 02 2002 Bill Nottingham <notting@redhat.com> 6.61-1
|
|
|
cbe35e |
- when disabling DMA, don't use things in /usr
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Mar 28 2002 Bill Nottingham <notting@redhat.com> 6.60-1
|
|
|
cbe35e |
- disable DMA on CD-ROMs at bootup
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 27 2002 Bill Nottingham <notting@redhat.com> 6.59-1
|
|
|
cbe35e |
- add local hook to halt
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 15 2002 Than Ngo <than@redhat.com> 6.58-1
|
|
|
cbe35e |
- fix usernetctl for working with neat
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Mar 14 2002 Bill Nottingham <notting@redhat.com> 6.57-1
|
|
|
cbe35e |
- update translations
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 12 2002 Bill Nottingham <notting@redhat.com> 6.56-1
|
|
|
cbe35e |
- use nameif for interfaces where we don't agree on HWADDR with the
|
|
|
cbe35e |
config file (<harald@redhat.com>)
|
|
|
cbe35e |
- LSB support tweaks
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 12 2002 Mike A. Harris <mharris@redhat.com> 6.55-1
|
|
|
cbe35e |
- Removed process accounting stuff from rc.sysinit and halt scripts as it is
|
|
|
cbe35e |
now handled by the psacct initscript in the psacct package
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Feb 28 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- conflict with older psacct
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 22 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix invocation of need_hostname (#58946), a couple other minor tweaks
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 12 2002 Mike A. Harris <mharris@redhat.com>
|
|
|
cbe35e |
- rc.sysinit: changed /var/log/pacct to /var/account/pacct for FHS 2.2 compliance
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jan 30 2002 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- run /bin/setfont, not /usr/bin/setfont (kbd)
|
|
|
cbe35e |
- lots-o-random bugfixes/tweaks (see ChangeLog)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jan 17 2002 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Added support for libredhat-kernel.so.* symlink handling
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Nov 7 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fix bug in setting netmask on s390/s390x (bug #55421)
|
|
|
cbe35e |
nmbd daemon works now ;-)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Nov 2 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fixed typo bug ifup-ippp
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 29 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fix bug in channel bundling if MSN is missed
|
|
|
cbe35e |
- support DEBUG option
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 19 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- don't show user name by DSL connection
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sat Sep 8 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't run hwclock --adjust on a read-only filesystem
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Sep 6 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
* update initscripts-s390.patch for s390/s390x
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 5 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- translation updates
|
|
|
cbe35e |
- quota and hwclock tweaks (<pbrown@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 3 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix severe alias problems (#52882)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 3 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- don't start pppbind if encapsulation is rawip (bug #52491)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Sep 2 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- add ISDN patches from pekkas@netcore.fi and pb@bieringer.de (bug #52491)
|
|
|
cbe35e |
- fix handling of ISDN LSZ Compresssion
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Aug 30 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- po/de.po: fix typo bug, lo instead 1o
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 29 2001 David Sainty <dsainty@redhat.com>
|
|
|
cbe35e |
- fix ifdown for multiple dhcpcd interfaces
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 29 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fix ISDN dial on demand bug
|
|
|
cbe35e |
- fix typo bug in network-functions
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 28 2001 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- document /etc/sysconfig/authconfig
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 28 2001 Bill Nottingham <notting@redhat.com> 6.31-1
|
|
|
cbe35e |
- message un-tweaks (<johnsonm@redhat.com>)
|
|
|
cbe35e |
- make getkey more useful, fix some of the autofsck stuff (<johnsonm@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 27 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- autofsck support, archive modules/symbol info (<johnsonm@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 27 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fix some typo bugs in ifup-ippp <ubeck@c3pdm.com>
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 24 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- sort output of halt_get_remaining (#52180)
|
|
|
cbe35e |
- fix bad translation (#52503)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 22 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix ifup-wireless (#52135)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 22 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fix return code of isdnctrl (bug #52225)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 21 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fix Bringing up isdn device again. It works now correct.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 21 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fix shutdown/Bringing up isdn device
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 20 2001 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- fix syntax error in lang.csh
|
|
|
cbe35e |
- set codeset by echoing to /dev/tty instead of /proc/self/fd/15
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Aug 19 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix a broken call to check_device_down
|
|
|
cbe35e |
- make all loopback addresses have host scope, not global scope.
|
|
|
cbe35e |
Fixes #49374, possibly others
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add is_available() network function, use it; cleans up ugly modprobe
|
|
|
cbe35e |
error messages
|
|
|
cbe35e |
- update translation info
|
|
|
cbe35e |
- fix #51787
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
|
cbe35e |
- adjust s390 patch
|
|
|
cbe35e |
- fix up ifup-ctc and mkkerneldoth.s390 (both are s390 specific)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 13 2001 Yukihiro Nakai <ynakai@redhat.com>
|
|
|
cbe35e |
- don't display Chinese Korean if we aren't on a pty
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sat Aug 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- adjust s390 patches to current sources
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- use GDM_LANG if it's set in lang.sh/lang.csh (#51432, <otaylor@redhat.com>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 10 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- don't set MSN if it' empty (it's now optional)
|
|
|
cbe35e |
- don't give login name as a cmdline-option (Bug #23066)
|
|
|
cbe35e |
- remove peer device file if ppp connection is down
|
|
|
cbe35e |
- fix channel bundling
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Aug 9 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- require SysVinit (#51335)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 8 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- tweak raittab grep slightly (#51231)
|
|
|
cbe35e |
- allow resetting of default route for DHCP addresses (#48994)
|
|
|
cbe35e |
- save resolv.conf in ifup-ppp for restoration by ifdown-post (#50759)
|
|
|
cbe35e |
- when munging firewall rules for dns, only allow dest ports 1025-65535 (#44038, #40833)
|
|
|
cbe35e |
- allow shell characters in ppp names (#43719)
|
|
|
cbe35e |
- allow setting DHCP arguments, just kill dhcpcd instead of using -k (#46492)
|
|
|
cbe35e |
- behave sanely if ifup called when dhcpcd is running (#49392, #51038)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 6 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- honor HOTPLUG=no if running under hotplug (#47483)
|
|
|
cbe35e |
- use awk, not grep, for modprobe -c checks (#49616)
|
|
|
cbe35e |
- don't print ugly messages for the case where the device doesn't exist,
|
|
|
cbe35e |
and there is no alias (i.e., PCMCIA ONBOOT=yes (#various))
|
|
|
cbe35e |
- run kbdconfig in /.unconfigured mode (#43941)
|
|
|
cbe35e |
- use a bigger buffer size argument to dmesg (#44024)
|
|
|
cbe35e |
- detach loopback devices on shutdown (#43919, #45826)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Aug 2 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix halt_get_remaining() (#50720)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 31 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- mount all FS types r/o at halt (#50461)
|
|
|
cbe35e |
- don't use mii-tool at all (#various)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jul 26 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't use kbd commands in setsysfont now that we've switched back to
|
|
|
cbe35e |
console-tools (#50075)
|
|
|
cbe35e |
- sleep in check_link_down; some devices require it
|
|
|
cbe35e |
- only bring link down if check_link_down fails
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jul 25 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- set link up before checking with mii-tool (#49949)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 24 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- update netdev stuff to use _netdev
|
|
|
cbe35e |
- IPv6 updates (<pekkas@netcore.fi>)
|
|
|
cbe35e |
- fix downing of devices with static IPs (#49777, #49783)
|
|
|
cbe35e |
- put ifcfg-lo back in the package
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 20 2001 Preston Brown <pbrown@redhat.com> 6.06
|
|
|
cbe35e |
- updates for quota
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- own some more directories
|
|
|
cbe35e |
- use -O nonetdev, require mount package that understands this
|
|
|
cbe35e |
- fix do_netreport when called as non-root
|
|
|
cbe35e |
- remove ip addresses from interfaces on ifdown
|
|
|
cbe35e |
- oops, fix ifup/ifdown
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jul 16 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fix country_code for ISDN
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jul 9 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix '--check'
|
|
|
cbe35e |
- prereq sh-utils (#43065)
|
|
|
cbe35e |
- fix some invocations of reboot/halt (#45966)
|
|
|
cbe35e |
- fix typo in ifup-wireless
|
|
|
cbe35e |
- don't muck with /etc/issue each boot
|
|
|
cbe35e |
- big IPv6 update (<pekkas@netcore.fi>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 6 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
|
cbe35e |
- Add new directories required by new network tool
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jul 05 2001 Karsten Hopp <karsten@redhat.de>
|
|
|
cbe35e |
- disable hwclock on S390 (no such executable)
|
|
|
cbe35e |
- Fix up kernel versioning on binary-only modules (S390)
|
|
|
cbe35e |
- don't use newt scripts on S390 console
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Jul 01 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
|
cbe35e |
- reenable pump, but make sure dhcpcd is the default. This
|
|
|
cbe35e |
way, upgrades of systems without dhcpcd has a better chance at
|
|
|
cbe35e |
working.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jun 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
|
cbe35e |
- Disable pump completely
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jun 27 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fix pap/chap authentication for syncppp
|
|
|
cbe35e |
- support ippp options
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jun 25 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add ifup-wireless
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jun 22 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- add support xDSL
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jun 21 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- more networking script fixes (#45364)
|
|
|
cbe35e |
- add stuff for unmounting /initrd
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jun 21 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- add support ISDN
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix extremely broken new network scripts
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jun 20 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- bump version to 5.89
|
|
|
cbe35e |
- make it build
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu May 17 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't run ifup ppp0 if ppp-watch gets SIGINT (#40585, ak@cave.hop.stu.neva.ru)
|
|
|
cbe35e |
- fix do_netreport (#37716, #39603 <crlf@aeiou.pt>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed May 16 2001 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- copyright: GPL -> license: GPL
|
|
|
cbe35e |
- fix a syntax error in lang.csh
|
|
|
cbe35e |
- skip commented-out i18n configuration lines in lang.csh
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri May 11 2001 Preston Brown <pbrown@redhat.com>
|
|
|
cbe35e |
- new network-scripts infrastructure; ifcfg-lo moved to /etc/sysconfig/networking
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed May 2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 5.86-1
|
|
|
cbe35e |
- support kbd in setsysfont
|
|
|
cbe35e |
- bzip2 source
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 25 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- add further s390 changes:
|
|
|
cbe35e |
- ifup-iucv
|
|
|
cbe35e |
- mkkerneldoth.s390
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 24 2001 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- add shutdown UPS into halt (bug #34312)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sat Apr 7 2001 Preston Brown <pbrown@redhat.com>
|
|
|
cbe35e |
- broke out kernel.h updater from rc.sysinit into /sbin/mkkerneldoth
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 6 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- be a little more careful in do_netreport (#34933)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 3 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- set umask explicitly to 022 in /etc/init.d/functions
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Apr 2 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix segfault in usernetctl (#34353)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 26 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't print errors in /etc/init.d/network if kernel.hotplug doesn't exist
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Mar 22 2001 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- take advantage of new swapon behaviors
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 14 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add cipe interfaces last (#31597)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 13 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix typo in ifup (#31627)
|
|
|
cbe35e |
- update translation source
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 13 2001 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- fix typo in rc.sysinit
|
|
|
cbe35e |
- fix ifup-routes not setting DEVICE properly
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 12 2001 Preston Brown <pbrown@redhat.com>
|
|
|
cbe35e |
- Work properly with new quota utilities
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 5 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- IPv6 fixes (#30506)
|
|
|
cbe35e |
- make static-routes handling more sane and consistent (#29500, #29549)
|
|
|
cbe35e |
- handle multiple USB controllers *correctly*
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Feb 28 2001 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- usernetctl, ppp-watch: cleanups
|
|
|
cbe35e |
- netreport: use O_NOFOLLOW
|
|
|
cbe35e |
- ifup-ppp: let ppp-watch watch over demand-dialed connections (#28927)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 27 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't run isapnp on isapnp-enabled 2.4 kernels (part of #29450)
|
|
|
cbe35e |
- disable hotplug during network initscript
|
|
|
cbe35e |
- don't munge wireless keys in ifup; that will be done with the
|
|
|
cbe35e |
PCMCIA wireless stuff
|
|
|
cbe35e |
- run sndconfig --mungepnp for non-native-isapnp soundcards
|
|
|
cbe35e |
- don't explicitly kill things in init.d/single, init will do it
|
|
|
cbe35e |
- don't explicitly load usb-storage; mount the usbdevfs before initializing
|
|
|
cbe35e |
host controller modules
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Feb 21 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- initialize multiple USB controllers if necessary
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Feb 21 2001 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- close extra file descriptors before exec()ing commands in initlog
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 19 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix some substitions in init.d/functions (fixes various killproc issues)
|
|
|
cbe35e |
- make sure ipv6 module alias is available if configured
|
|
|
cbe35e |
- fix initlog segfaults in popt when called with bogus stuff (#28140)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Feb 15 2001 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- make pidofproc() and killproc() try to use the PID associated with the full
|
|
|
cbe35e |
pathname first before killing the daemon by its basename (for daemons that
|
|
|
cbe35e |
share the same basename, i.e. "master" in postfix and cyrus-imapd) (#19016)
|
|
|
cbe35e |
- fix status() as well
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix init.d/single to work around possible kernel problem
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 13 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix unmounting of loopback stuff (#26439, #14672)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 12 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix ifup-post so that it will work right when not called from ifup
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sat Feb 10 2001 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
cbe35e |
- add all save changes for s390 s390x that won't break anything
|
|
|
cbe35e |
patches are from Oliver Paukstadt @ millenux.com
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 9 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- muck with the font in lang.csh/lang.sh, but don't spit out errors (#26903)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Feb 7 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- ipv6 sync ups (#26502, #25775)
|
|
|
cbe35e |
- fix hangs at shutdown (#25744)
|
|
|
cbe35e |
- fix ifup-ppp (#26323)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 6 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- modify firewall on ifup to allow any new DNS servers through (#25951)
|
|
|
cbe35e |
- don't muck with the font in lang.csh/lang.sh (#26349)
|
|
|
cbe35e |
- don't display Japanese if we aren't on a pty (#25041)
|
|
|
cbe35e |
- load ide-scsi if passed on /proc/cmdline
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 5 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
|
cbe35e |
- i18n updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 2 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- actually *ship* the ipv6 (and plusb) files
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Feb 1 2001 Trond Eivind Glomsrød <teg@redhat.com>
|
|
|
cbe35e |
- i18n updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jan 30 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- various init.d/functions cleanups (#10761, from <mjt@tls.msk.ru>)
|
|
|
cbe35e |
- in daemon(), only look at pidfile to determine if process is running
|
|
|
cbe35e |
(#17244, others)
|
|
|
cbe35e |
- ifup-ppp enhancements (#17388, from <ayn2@cornell.edu>)
|
|
|
cbe35e |
- ipv6 support (#23576, originally by Peter Bieringer <pb@bieringer.de>)
|
|
|
cbe35e |
- lots of other minor fixes (see ChangeLog)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jan 29 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add plusb support (#18892, patch from <eric.ayers@compgen.com>)
|
|
|
cbe35e |
- don't ignore RETRYTIMEOUT when we never connect (#14071, patch from
|
|
|
cbe35e |
<ak@cave.hop.stu.neva.ru>)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- quiet LVM setup (#24841)
|
|
|
cbe35e |
- fix inability to shutdown cleanly (#24889)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- new i18n mechanism
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jan 23 2001 Matt Wilson <msw@redhat.com>
|
|
|
cbe35e |
- fixed typo in init.d/network - missing | in pipeline
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jan 22 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- do LVM setup through normal initscripts mechanisms
|
|
|
cbe35e |
- ignore backup files in /etc/sysconfig/network-scripts
|
|
|
cbe35e |
- lots of .po file updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jan 2 2001 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- initial i18n support - originally from Conectiva
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Dec 11 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- only load sound if persistent DMA buffers are necessary
|
|
|
cbe35e |
- fix lots of bugs: #18619, #21187, #21283, #12097
|
|
|
cbe35e |
- integrate MAXFAIL option for ppp-watch
|
|
|
cbe35e |
- don't load keymaps/fonts on a serial console
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 21 2000 Karsten Hopp <karsten@redhat.de>
|
|
|
cbe35e |
- changed hdparm section in rc.sysinit to allow different
|
|
|
cbe35e |
parameters for each disk (if needed) by copying
|
|
|
cbe35e |
/etc/sysconfig/harddisks to /etc/sysconfig/harddiskhda (hdb,hdc..)
|
|
|
cbe35e |
- fix RFE #20967
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 31 2000 Than Ngo <than@redhat.com>
|
|
|
cbe35e |
- fix the adding default route if GATEWAY=0.0.0.0
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 10 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- handle "gw x.x.x.x" as the last pair of flags in ifup-routes (#18804)
|
|
|
cbe35e |
- fix top-level makefile install target
|
|
|
cbe35e |
- make usernetctl just fall-through if getuid() == 0
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Sep 3 2000 Florian La Roche <Florian.LaRoche@redhat.com>
|
|
|
cbe35e |
- /etc/init.d is already provided by chkconfig
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 23 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- set "holdoff ${RETRYTIMEOUT} ktune" for demand-dialed PPP links
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 22 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- update documentation (#15475)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 22 2000 Than Ngo <than@redhat.de>
|
|
|
cbe35e |
- add KDE2 support to prefdm
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 21 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add usleep after kill -KILL in pidofproc, works around lockd issues (#14847)
|
|
|
cbe35e |
- add some fallback logic to prefdm (#16464)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 18 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't load usb drivers if they're compiled statically
|
|
|
cbe35e |
- don't call ifdown-post twice for ppp (#15285)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 16 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix /boot/kernel.h generation (#16236, #16250)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 15 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- be more careful about creating files in netreport (#16164)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 11 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- move documentation for the DEMAND and IDLETIMEOUT values to the right
|
|
|
cbe35e |
section of sysconfig.txt
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Aug 9 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- load agpgart if necessary (hack)
|
|
|
cbe35e |
- fix /boot/kernel.h stuff (jakub)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 7 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- remove console-tools requirement
|
|
|
cbe35e |
- in netfs, start portmap if needed
|
|
|
cbe35e |
- cosmetic cleanups, minor tweaks
|
|
|
cbe35e |
- don't probe USB controllers
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 7 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- fix demand-dialing support for PPP devices
|
|
|
cbe35e |
- change updetach back to nodetach
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Aug 6 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add RETRYCONNECT option for ifcfg-pppX files (kenn@linux.ie)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jul 26 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix unclean shutdown
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 25 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- s/nill/null/g
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- unmount usb filesystem on halt
|
|
|
cbe35e |
- run /sbin/ifup-pre-local if it exists
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 18 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
|
|
cbe35e |
- add "nousb" command line parameter
|
|
|
cbe35e |
- fix some warnings when mounting /proc/bus/usb
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sat Jul 15 2000 Matt Wilson <msw@redhat.com>
|
|
|
cbe35e |
- kill all the PreTransaction stuff
|
|
|
cbe35e |
- directory ownership cleanups, add more LSB symlinks
|
|
|
cbe35e |
- move all the stuff back in to /etc/rc.d/
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jul 13 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix == tests in rc.sysinit
|
|
|
cbe35e |
- more %%pretrans tweaks
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jul 13 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
cbe35e |
- test if /etc/rc.d is a symlink already in pre-transaction syscalls.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 11 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- implement the %%pre with RPM Magic(tm)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sat Jul 8 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix it to not follow /etc/rc.d
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jul 7 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix %%pre, again
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jul 6 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- tweak %%pre back to a mv (rpm is fun!)
|
|
|
cbe35e |
- do USB initialization before fsck, so keyboard works if it fails
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jul 3 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- rebuild; allow 'fastboot' kernel command line option to skip fsck
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jul 03 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- fix demand-dialing with PPP
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Jul 02 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
|
|
cbe35e |
- don't use tail
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jun 28 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
|
|
cbe35e |
- add support for USB controllers and HID devices
|
|
|
cbe35e |
(mice, keyboards)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jun 27 2000 Trond Eivind Glomsrød <teg@redhat.com>
|
|
|
cbe35e |
- add support for EIDE optimization
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- tweak %%pre
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jun 21 2000 Preston Brown <pbrown@redhat.com>
|
|
|
cbe35e |
- noreplace for adjtime file
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jun 16 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- ifup-ppp: add hooks for demand-dialing PPP
|
|
|
cbe35e |
- functions: use basename of process when looking for its PID file
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- move from /etc/rc.d/init.d -> /etc/init.d
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jun 13 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- set soft limit, not hard, in daemon function
|
|
|
cbe35e |
- /var/shm -> /dev/shm
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jun 08 2000 Preston Brown <pbrown@redhat.com>
|
|
|
cbe35e |
- use dhcpcd if pump fails.
|
|
|
cbe35e |
- use depmod -A (faster)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Jun 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
|
cbe35e |
- add autologin support to prefdm
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jun 1 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- random networking fixes (alias routes, others)
|
|
|
cbe35e |
- conf.modules -> modules.conf
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu May 11 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- fix incorrect grep invocation in rc.sysinit (bug #11267)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 19 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix lang.csh, again (oops)
|
|
|
cbe35e |
- use /poweroff, /halt to determine whether to poweroff
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 14 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix testing of RESOLV_MODS (which shouldn't be used anyways)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 04 2000 Ngo Than <than@redhat.de>
|
|
|
cbe35e |
- fix overwrite problem of resolv.conf on ippp/ppp/slip connections
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Apr 3 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix typo in functions file
|
|
|
cbe35e |
- explicitly set --localtime when calling hwclock if necessary
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 31 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix typo in /etc/rc.d/init.d/network that broke linuxconf (#10472)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 27 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- remove compatibility chkconfig links
|
|
|
cbe35e |
- run 'netfs stop' on 'network stop' if necessary
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
|
cbe35e |
- Mount /var/shm if required (2.3.99, 2.4)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 20 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't create resolv.conf 0600
|
|
|
cbe35e |
- don't run ps as much (speed issues)
|
|
|
cbe35e |
- allow setting of MTU
|
|
|
cbe35e |
- other minor fixes
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Mar 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
|
cbe35e |
- Start devfsd if installed and needed (Kernel 2.4...)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 8 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- check that network devices are up before bringing them down
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 8 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
cbe35e |
- update sysconfig.txt
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 7 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- rerun sysctl on network start (for restarts)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 28 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't read commented raid devices
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 21 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix typo in resolv.conf munging
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Feb 17 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- sanitize repair prompt
|
|
|
cbe35e |
- initial support for isdn-config stuff
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 14 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- add which as a package dependency (bug #9416)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 8 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fixes for sound module loading
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Feb 7 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- check that LC_ALL/LINGUAS and LANG are set before referencing them in lang.csh
|
|
|
cbe35e |
- fix check for /var/*/news, work around for bug #9140
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 4 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- fix bug #9102
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 4 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- if LC_ALL/LINGUAS == LANG, don't set them
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Feb 2 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix problems with linuxconf static routes
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 1 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- shvar cleaning
|
|
|
cbe35e |
- fix wrong default route ip in network-functions
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jan 31 2000 Nalin Dahyabhai <nalin@redhat.com>
|
|
|
cbe35e |
- attempt to restore default route if PPP takes it over
|
|
|
cbe35e |
- man page fix for ipcalc
|
|
|
cbe35e |
- shvar cleaning
|
|
|
cbe35e |
- automate maintaining /boot/System.map symlinks
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jan 31 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix hanging ppp-watch
|
|
|
cbe35e |
- fix issues with cleaning of /var/{run,lock}
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jan 21 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix pidof calls in pidofproc
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix ifup-ipx, don't munge resolv.conf if $DNS1 is already in it
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jan 13 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- link popt statically
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jan 10 2000 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't try to umount /loopfs
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Dec 27 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- switch to using sysctl
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Dec 13 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- umount /proc *after* trying to turn off raid
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Dec 06 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- improvements in clone device handling
|
|
|
cbe35e |
- better signal handling in ppp-watch
|
|
|
cbe35e |
- yet another attempt to fix those rare PAP/CHAP problems
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Nov 28 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- impressive. Three new features, three new bugs.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Nov 22 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- fix more possible failed CHAP authentication (with chat scripts)
|
|
|
cbe35e |
- fix ppp default route problem
|
|
|
cbe35e |
- added ppp-watch man page, fixed usernetctl man page
|
|
|
cbe35e |
- make ifup-ppp work again when called from netcfg and linuxconf
|
|
|
cbe35e |
- try to keep ppp-watch from filling up logs by respawning pppd too fast
|
|
|
cbe35e |
- handle all linuxconf-style alias files with linuxconf
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Nov 22 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- load mixer settings for monolithic sound
|
|
|
cbe35e |
- man page for ppp-watch
|
|
|
cbe35e |
- add ARP variable for ifup
|
|
|
cbe35e |
- some i18n fixes
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Nov 10 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- control stop-a separately from sysrq
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Nov 08 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- fix some failed CHAP authentication
|
|
|
cbe35e |
- fix extremely unlikely, but slightly possible kill-random-process
|
|
|
cbe35e |
bug in ppp-watch
|
|
|
cbe35e |
- allow DNS{1,2} in any ifcfg-* file, not just PPP, and
|
|
|
cbe35e |
add nameserver entries, don't just replace them
|
|
|
cbe35e |
- don't use /tmp/confirm, use /var/run/confirm instead
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 2 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix lang.csh /tmp race oops
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 27 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- we now ship hwclock on alpha.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com>
|
|
|
cbe35e |
- fix check for serial console, don't use -C argument to fsck
|
|
|
cbe35e |
on serial console.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 18 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- do something useful with linuxconf 'any' static routes.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 12 1999 Matt Wilson <msw@redhat.com>
|
|
|
cbe35e |
- added patch from Owen to source i18n configuration before starting prefdm
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 11 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- support for linuxconf alias files
|
|
|
cbe35e |
- add support for Jensen clocks.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 5 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- assorted brown paper bag fixes
|
|
|
cbe35e |
- check for programs/files before executing/sourcing them
|
|
|
cbe35e |
- control stop-a like magic sysrq
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Sep 30 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- req. e2fsprogs >= 1.15
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 24 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- munge C locale definitions to en_US
|
|
|
cbe35e |
- use fsck's completion bar
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Sep 23 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- ppp-watch now always kills pppd pgrp to make sure dialers are dead,
|
|
|
cbe35e |
and tries to hang up the modem
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 21 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add a DEFRAG_IPV4 option
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 20 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- changed to more modern defaults for PPP connections
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 20 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- kill processes for umount in halt, too.
|
|
|
cbe35e |
- fixes to remove /usr dependencies
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 17 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- load/save mixer settings in rc.sysinit, halt
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 13 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- add --remotename option to wvdial code
|
|
|
cbe35e |
- make sure we do not have an earlier version of wvdial that doesn't
|
|
|
cbe35e |
know how handle --remotename
|
|
|
cbe35e |
- make ppp-watch background itself after 30 seconds even if
|
|
|
cbe35e |
connection does not come up, at boot time only, so that a
|
|
|
cbe35e |
non-functional PPP connection cannot hang boot.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Sep 12 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- a couple of /bin/sh -> /bin/bash fixes
|
|
|
cbe35e |
- fix swapoff silliness
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 10 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- chkconfig --del in %%preun, not %%postun
|
|
|
cbe35e |
- use killall5 in halt
|
|
|
cbe35e |
- swapoff non-/etc/fstab swap
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 08 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- ifdown now synchronous (modulo timeouts)
|
|
|
cbe35e |
- several unrelated cleanups, primarily in ifdown
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 7 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add an 'unconfigure' sort of thing
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 06 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- added ppp-watch to make "ifup ppp*" synchronous
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Sep 3 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- require lsof
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 1 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add interactive prompt
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- disable magic sysrq by default
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 30 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- new NFS unmounting from Bill Rugolsky <rugolsky@ead.dsa.com>
|
|
|
cbe35e |
- fix ifup-sl/dip confusion
|
|
|
cbe35e |
- more raid startup cleanup
|
|
|
cbe35e |
- make utmp group 22
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 20 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- pass hostname to pump
|
|
|
cbe35e |
- add lang.csh
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Aug 19 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- more wvdial updates
|
|
|
cbe35e |
- fix a *stupid* bug in process reading
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 13 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- add new /boot/kernel.h boot kernel version file
|
|
|
cbe35e |
- new RAID startup
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Aug 13 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- use new linkname argument to pppd to make if{up,down}-ppp
|
|
|
cbe35e |
reliable -- requires ppp-2.3.9 or higher
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 2 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix typo.
|
|
|
cbe35e |
- add 'make check'
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jul 28 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- simple wvdial support for ppp connections
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jul 26 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- stability fixes for initlog
|
|
|
cbe35e |
- initlog now has a config file
|
|
|
cbe35e |
- add alias speedup from dharris@drh.net
|
|
|
cbe35e |
- move netfs links
|
|
|
cbe35e |
- usleep updates
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jul 8 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- remove timeconfig dependency
|
|
|
cbe35e |
- i18n fixes from nkbj@image.dk
|
|
|
cbe35e |
- move inputrc to setup package
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 6 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix killall links, some syntax errors
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Jun 25 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't make module-info, System.map links
|
|
|
cbe35e |
- handle utmpx/wtmpx
|
|
|
cbe35e |
- fix lots of bugs in 4.21 release :)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Jun 17 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- set clock as soon as possible
|
|
|
cbe35e |
- use INITLOG_ARGS everywhere
|
|
|
cbe35e |
- other random fixes in networking
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jun 14 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- oops, don't create /var/run/utmp and then remove it.
|
|
|
cbe35e |
- stomp RAID bugs flat. Sort of.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon May 24 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- clean out /var better
|
|
|
cbe35e |
- let everyone read /var/run/ppp*.dev
|
|
|
cbe35e |
- fix network startup so it doesn't depend on /usr
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue May 11 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- various fixes to rc.sysinit
|
|
|
cbe35e |
- fix raid startup
|
|
|
cbe35e |
- allow for multi-processor /etc/issues
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Apr 18 1999 Matt Wilson <msw@redhat.com>
|
|
|
cbe35e |
- fixed typo - "Determing" to "Determining"
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Apr 16 1999 Preston Brown <pbrown@redhat.com>
|
|
|
cbe35e |
- updated inputrc so that home/end/del work on console, not just X
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Apr 08 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix more logic in initlog
|
|
|
cbe35e |
- fix for kernel versions in ifup-aliases
|
|
|
cbe35e |
- log to /var/log/boot.log
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 07 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix daemon() function so you can specify pid to look for
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 07 1999 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- changed utmp,wtmp to be group writeable and owned by group utmp
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 06 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix loading of consolefonts/keymaps
|
|
|
cbe35e |
- three changelogs. three developers. one day. Woohoo!
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 06 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- fixed ifup-ipx mix-up over . and _
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 06 1999 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- run /sbin/ifup-local after bringing up an interface (if that file exists)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Apr 5 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- load keymaps & console font early
|
|
|
cbe35e |
- fixes for channel bonding, strange messages with non-boot network interfaces
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sat Mar 27 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
cbe35e |
- added sysvinitfiles as a documenattaion file
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 26 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- nfsfs -> netfs
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 22 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't source /etc/sysconfig/init if $BOOTUP is already set
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 19 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- don't run linuxconf if /usr isn't mounted
|
|
|
cbe35e |
- set macaddr before bootp
|
|
|
cbe35e |
- zero in the /var/run/utmpx file (gafton)
|
|
|
cbe35e |
- don't set hostname on ppp/slip (kills X)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 17 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- exit ifup if pump fails
|
|
|
cbe35e |
- fix stupid errors in reading commands from subprocess
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 16 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix ROFS logging
|
|
|
cbe35e |
- make fsck produce more happy output
|
|
|
cbe35e |
- fix killproc logic
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 15 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- doc updates
|
|
|
cbe35e |
- support for SYSFONTACM, other console-tools stuff
|
|
|
cbe35e |
- add net route for interface if it isn't there.
|
|
|
cbe35e |
- fix for a bash/bash2 issue
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 15 1999 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- pam_console lockfile cleanup added to rc.sysinit
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Mar 14 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fixes in functions for 'action'
|
|
|
cbe35e |
- fixes for pump
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Mar 10 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- Mmm. Must always remove debugging code. before release. *thwap*
|
|
|
cbe35e |
- pump support
|
|
|
cbe35e |
- mount -a after mount -a -t nfs
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Feb 25 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- put preferred support back in
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Feb 18 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- fix single-user mode (source functions, close if)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Feb 10 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- turn off xdm in runlevel 5 (now a separate service)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Feb 4 1999 Bill Nottingham <notting@redhat.com>
|
|
|
cbe35e |
- bugfixes (ifup-ppp, kill -TERM, force fsck, hwclock --adjust, setsysfont)
|
|
|
cbe35e |
- add initlog support. Now everything is logged (and bootup looks different)
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Nov 12 1998 Preston Brown <pbrown@redhat.com>
|
|
|
cbe35e |
- halt now passed the '-i' flag so that network interfaces disabled
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Nov 10 1998 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- handle new linuxconf output for ipaliases
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Oct 15 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- fixed raid start stuff
|
|
|
cbe35e |
- added raidstop to halt
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 12 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
cbe35e |
- handle LC_ALL
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 12 1998 Preston Brown <pbrown@redhat.com>
|
|
|
cbe35e |
- adjusted setsysfont to always run setfont, even if only w/default font
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 06 1998 Cristian Gafton <gafton@redhat.com>
|
|
|
cbe35e |
- rc.sysvinit should be working with all kernel versions now
|
|
|
cbe35e |
- requires e2fsprogs (for fsck)
|
|
|
cbe35e |
- set INPUTRC and LESSCHARSET on linux-lat
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Sep 16 1998 Jeff Johnson <jbj@redhat.com>
|
|
|
cbe35e |
- /etc/rc.d/rc: don't run /etc/rc.d/rcN.d/[KS]??foo.{rpmsave,rpmorig} scripts.
|
|
|
cbe35e |
- /etc/rc.d/rc.sysinit: raid startup (Nigel.Metheringham@theplanet.net).
|
|
|
cbe35e |
- /sbin/setsysfont: permit unicode fonts.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Aug 17 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- don't add 'Red Hat Linux' to /etc/issue; use /etc/redhat-release as is
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Aug 16 1998 Jeff Johnson <jbj@redhat.com>
|
|
|
cbe35e |
- paranoia improvements to .rhkmvtag
|
|
|
cbe35e |
- if psacct with /sbin/accton, than turn off accounting
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jul 7 1998 Jeff Johnson <jbj@redhat.com>
|
|
|
cbe35e |
- start/stop run levels changed.
|
|
|
cbe35e |
- ipx_configure/ipx_internal_net moved to /sbin.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jul 01 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- usernetctl didn't understand "" around USERCTL attribute
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Jul 1 1998 Jeff Johnson <jbj@redhat.com>
|
|
|
cbe35e |
- Use /proc/version to find preferred modules.
|
|
|
cbe35e |
- Numerous buglets fixed.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Jun 07 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- rc.sysinit looks for bootfile= as well as BOOT_IMAGE to set
|
|
|
cbe35e |
/lib/modules/preferred symlink
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jun 01 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- ipcalc should *never* have been setgid anything
|
|
|
cbe35e |
- depmod isn't run properly for non-serial numbered kernels
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed May 06 1998 Donnie Barnes <djb@redhat.com>
|
|
|
cbe35e |
- added system font and language setting
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon May 04 1998 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Added missing files to packagelist.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sat May 02 1998 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Added lots of linuxconf support. Should still work on systems that
|
|
|
cbe35e |
do not have linuxconf installed, but linuxconf gives enhanced support.
|
|
|
cbe35e |
- In concert with linuxconf, added IPX support. Updated docs to reflect it.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri May 01 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- rc.sysinit uses preferred directory
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Apr 05 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- updated rc.sysinit to deal with kernel versions with release numbers
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Mar 22 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- use ipcalc to calculate the netmask if one isn't specified
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- added and made use of ipcalc
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 10 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- removed unnecessary dhcp log from /tmp
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- if bootpc fails, take down the device
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 09 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- added check for mktemp failure
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Feb 05 1998 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- fixed support for user manageable cloned devices
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Jan 12 1998 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- /sbin/ isn't always in $PATH, so call /sbin/route in ifup-routes
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- touch /var/lock/subsys/kerneld after cleaning out /var/lock/subsys
|
|
|
cbe35e |
- the logic for when /var/lock/subsys/kerneld is touched was backwards
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Dec 30 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- tried to get /proc stuff right one more time (uses -t nonfs,proc now)
|
|
|
cbe35e |
- added support for /fsckoptions
|
|
|
cbe35e |
- changed 'yse' to 'yes' in KERNELD= line
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Dec 09 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- set domainname to "" if none is specified in /etc/sysconfig/network
|
|
|
cbe35e |
- fix /proc mounting to get it in /etc/mtab
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Dec 08 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- fixed inheritance for clone devices
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Nov 07 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- added sound support to rc.sysinit
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Nov 07 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Added missing "then" clause
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Nov 06 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Fixed DEBUG option in ifup-ppp
|
|
|
cbe35e |
- Fixed PPP persistence
|
|
|
cbe35e |
- Only change IP forwarding if necessary
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 28 1997 Donnie Barnes <djb@redhat.com>
|
|
|
cbe35e |
- removed the skeleton init script
|
|
|
cbe35e |
- added the ability to 'nice' daemons
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 28 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- touch /var/lock/subsys/kerneld if it's running, and after mounting /var
|
|
|
cbe35e |
- applied dhcp fix
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
|
|
|
cbe35e |
- added status|restart to init scripts
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- touch random seed file before chmod'ing it.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- run domainname if NISDOMAIN is set
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 15 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Make the random seed file mode 600.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Oct 14 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- bring down ppp devices if ifdown-ppp is called while ifup-ppp is sleeping.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 13 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- moved to new chkconfig conventions
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sat Oct 11 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- fixed rc.sysinit for hwclock compatibility
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Oct 09 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- run 'ulimit -c 0' before running scripts in daemon function
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 08 1997 Donnie Barnes <djb@redhat.com>
|
|
|
cbe35e |
- added chkconfig support
|
|
|
cbe35e |
- made all rc*.d symlinks have missingok flag
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- fixed network-scripts to allow full pathnames as config files
|
|
|
cbe35e |
- removed some old 3.0.3 pcmcia device handling
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Oct 01 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- /var/run/netreport needs to be group-writable now that /sbin/netreport
|
|
|
cbe35e |
is setguid instead of setuid.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 30 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Added network-functions to spec file.
|
|
|
cbe35e |
- Added report functionality to usernetctl.
|
|
|
cbe35e |
- Fixed bugs I introduced into usernetctl while adding clone device support.
|
|
|
cbe35e |
- Clean up entire RPM_BUILD_ROOT directory in %%clean.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 29 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Clone device support in network scripts, rc scripts, and usernetctl.
|
|
|
cbe35e |
- Disassociate from controlling tty in PPP and SLIP startup scripts,
|
|
|
cbe35e |
since they act as daemons.
|
|
|
cbe35e |
- Spec file now provides start/stop symlinks, since they don't fit in
|
|
|
cbe35e |
the CVS archive.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 23 1997 Donnie Barnes <djb@redhat.com>
|
|
|
cbe35e |
- added mktemp support to ifup
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Sep 18 1997 Donnie Barnes <djb@redhat.com>
|
|
|
cbe35e |
- fixed some init.d/functions bugs for stopping httpd
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Sep 16 1997 Donnie Barnes <djb@redhat.com>
|
|
|
cbe35e |
- reworked status() to adjust for processes that change their argv[0] in
|
|
|
cbe35e |
the process table. The process must still have it's "name" in the argv[0]
|
|
|
cbe35e |
string (ala sendmail: blah blah).
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Sep 15 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- fixed bug in FORWARD_IPV4 support
|
|
|
cbe35e |
|
|
|
cbe35e |
* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- added support for FORWARD_IPV4 variable
|
|
|
cbe35e |
|
|
|
cbe35e |
* Thu Sep 11 1997 Donald Barnes <djb@redhat.com>
|
|
|
cbe35e |
- added status function to functions along with better killproc
|
|
|
cbe35e |
handling.
|
|
|
cbe35e |
- added /sbin/usleep binary (written by me) and man page
|
|
|
cbe35e |
- changed BuildRoot to /var/tmp instead of /tmp
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jun 10 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- /sbin/netreport sgid rather than suid.
|
|
|
cbe35e |
- /var/run/netreport writable by group root.
|
|
|
cbe35e |
|
|
|
cbe35e |
- /etc/ppp/ip-{up|down} no longer exec their local versions, so
|
|
|
cbe35e |
now ifup-post and ifdown-post will be called even if ip-up.local
|
|
|
cbe35e |
and ip-down.local exist.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Jun 03 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Added missing -f to [ invocation in ksyms check.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri May 23 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Support for net event notification:
|
|
|
cbe35e |
Call /sbin/netreport to request that SIGIO be sent to you whenever
|
|
|
cbe35e |
a network interface changes status (won't work for brining up SLIP
|
|
|
cbe35e |
devices).
|
|
|
cbe35e |
Call /sbin/netreport -r to remove the notification request.
|
|
|
cbe35e |
- Added ifdown-post, and made all the ifdown scrips call it, and
|
|
|
cbe35e |
added /etc/ppp/ip-down script that calls /etc/ppp/ip-down.local
|
|
|
cbe35e |
if it exists, then calls ifdown-post.
|
|
|
cbe35e |
- Moved ifup and ifdown to /sbin
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Apr 15 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- usernetctl put back in ifdown
|
|
|
cbe35e |
- support for slaved interfaces
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Apr 02 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- Created ifup-post from old ifup
|
|
|
cbe35e |
- PPP, PLIP, and generic ifup use ifup-post
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Mar 28 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- Added DHCP support
|
|
|
cbe35e |
- Set hostname via reverse name lookup after configuring a networking
|
|
|
cbe35e |
device if the current hostname is (none) or localhost
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 18 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- Got rid of xargs dependency in halt script
|
|
|
cbe35e |
- Don't mount /proc twice (unmount it in between)
|
|
|
cbe35e |
- sulogin and filesystem unmounting only happened for a corrupt root
|
|
|
cbe35e |
filesystem -- it now happens when other filesystems are corrupt as well
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Mar 04 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- PPP fixes and additions
|
|
|
cbe35e |
|
|
|
cbe35e |
* Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- Mount proc before trying to start kerneld so we can test for /proc/ksyms
|
|
|
cbe35e |
properly.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Wed Feb 26 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Added MTU for PPP.
|
|
|
cbe35e |
- Put PPPOPTIONS at the end of the options string instead of at the
|
|
|
cbe35e |
beginning so that they override other options. Gives users more rope...
|
|
|
cbe35e |
- Don't do module-based stuff on non-module systems. Ignore errors if
|
|
|
cbe35e |
st module isn't there and we try to load it.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com>
|
|
|
cbe35e |
- Changed ifup-ppp and ifdown-ppp not to use doexec, because the argv[0]
|
|
|
cbe35e |
provided by doexec goes away when pppd gets swapped out.
|
|
|
cbe35e |
- ifup-ppp now sets remotename to the logical name of the device.
|
|
|
cbe35e |
This will BREAK current PAP setups on netcfg-managed interfaces,
|
|
|
cbe35e |
but we needed to do this to add a reasonable interface-specific
|
|
|
cbe35e |
PAP editor to netcfg.
|
|
|
cbe35e |
|
|
|
cbe35e |
* Fri Feb 07 1997 Erik Troan <ewt@redhat.com>
|
|
|
cbe35e |
- Added usernetctl wrapper for user mode ifup and ifdown's and man page
|
|
|
cbe35e |
- Rewrote ppp and slip kill and retry code
|
|
|
cbe35e |
- Added doexec and man page
|