dcavalca / rpms / initscripts

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