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