Blame SPECS/hostapd.spec

a6670e
%global _hardened_build 1
a6670e
a6670e
Name:           hostapd
a6670e
Version:        2.10
a6670e
Release:        1%{?dist}
a6670e
Summary:        IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
a6670e
License:        BSD
a6670e
URL:            http://w1.fi/hostapd
a6670e
a6670e
Source0:        http://w1.fi/releases/%{name}-%{version}.tar.gz
a6670e
Source1:        %{name}.service
a6670e
Source2:        %{name}.conf
a6670e
Source3:        %{name}.conf.5
a6670e
Source4:        %{name}.sysconfig
a6670e
Source5:        %{name}.init
a6670e
a6670e
BuildRequires:  libnl3-devel
a6670e
BuildRequires:  openssl-devel
a6670e
BuildRequires:  perl-generators
a6670e
BuildRequires:  gcc
a6670e
a6670e
%if 0%{?fedora} || 0%{?rhel} >= 7
a6670e
BuildRequires:      systemd
a6670e
BuildRequires: make
a6670e
Requires(post):     systemd
a6670e
Requires(preun):    systemd
a6670e
Requires(postun):   systemd
a6670e
%endif
a6670e
a6670e
%if 0%{?rhel} == 6
a6670e
Requires(post):     /sbin/chkconfig
a6670e
Requires(preun):    /sbin/chkconfig
a6670e
Requires(preun):    /sbin/service
a6670e
Requires(postun):   /sbin/service
a6670e
%endif
a6670e
a6670e
%description
a6670e
%{name} is a user space daemon for access point and authentication servers. It
a6670e
implements IEEE 802.11 access point management, IEEE 802.1X/WPA/WPA2/EAP
a6670e
Authenticators and RADIUS authentication server.
a6670e
a6670e
%{name} is designed to be a "daemon" program that runs in the back-ground and
a6670e
acts as the backend component controlling authentication. %{name} supports
a6670e
separate frontend programs and an example text-based frontend, hostapd_cli, is
a6670e
included with %{name}.
a6670e
a6670e
%package logwatch
a6670e
Summary:        Logwatch scripts for hostapd
a6670e
Requires:       %{name} = %{version}-%{release}
a6670e
Requires:       logwatch
a6670e
%if 0%{?rhel} == 6 || 0%{?rhel} == 7
a6670e
Requires:       perl
a6670e
%else
a6670e
Requires:       perl-interpreter
a6670e
%endif
a6670e
a6670e
%description logwatch
a6670e
Logwatch scripts for hostapd.
a6670e
a6670e
%prep
a6670e
%setup -q
a6670e
a6670e
%build
a6670e
cd hostapd
a6670e
cat defconfig | sed \
a6670e
    -e '$ a CONFIG_SAE=y' \
a6670e
    -e '$ a CONFIG_SUITEB192=y' \
a6670e
    -e '$ a CONFIG_TLS_DEFAULT_CIPHERS="PROFILE=SYSTEM:3DES"' \
a6670e
    -e '/^#CONFIG_DRIVER_NL80211=y/s/^#//' \
a6670e
    -e '/^#CONFIG_RADIUS_SERVER=y/s/^#//' \
a6670e
    -e '/^#CONFIG_DRIVER_WIRED=y/s/^#//' \
a6670e
    -e '/^#CONFIG_DRIVER_NONE=y/s/^#//' \
a6670e
    -e '/^#CONFIG_IEEE80211N=y/s/^#//' \
a6670e
    -e '/^#CONFIG_IEEE80211R=y/s/^#//' \
a6670e
    -e '/^#CONFIG_IEEE80211AC=y/s/^#//' \
a6670e
    -e '/^#CONFIG_FULL_DYNAMIC_VLAN=y/s/^#//' \
a6670e
    -e '/^#CONFIG_LIBNL32=y/s/^#//' \
a6670e
    -e '/^#CONFIG_ACS=y/s/^#//' \
a6670e
    -e '/^#CONFIG_OWE=y/s/^#//' \
a6670e
    -e '/^#CONFIG_WEP=y/s/^#//' \
a6670e
    > .config
a6670e
echo "CFLAGS += -I%{_includedir}/libnl3" >> .config
a6670e
echo "LIBS += -L%{_libdir}" >> .config
a6670e
export CFLAGS="${CFLAGS:-%optflags} -fPIE -DPIE"
a6670e
export CXXFLAGS="${CXXFLAGS:-%optflags} -fPIE -DPIE"
a6670e
export LDFLAGS="${LDFLAGS:-%optflags} -pie -Wl,-z,now"
a6670e
make %{?_smp_mflags} V=1
a6670e
a6670e
%install
a6670e
%if 0%{?fedora} || 0%{?rhel} >= 7
a6670e
a6670e
# Systemd unit files
a6670e
install -p -m 644 -D %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service
a6670e
a6670e
%else
a6670e
a6670e
# Initscripts
a6670e
install -p -m 755 -D %{SOURCE5} %{buildroot}%{_initrddir}/%{name}
a6670e
a6670e
%endif
a6670e
a6670e
# logwatch files
a6670e
install -d %{buildroot}/%{_sysconfdir}/logwatch/conf/services
a6670e
install -pm 0644 %{name}/logwatch/%{name}.conf  \
a6670e
        %{buildroot}/%{_sysconfdir}/logwatch/conf/services/%{name}.conf
a6670e
install -d %{buildroot}/%{_sysconfdir}/logwatch/scripts/services
a6670e
install -pm 0755 %{name}/logwatch/%{name} \
a6670e
        %{buildroot}/%{_sysconfdir}/logwatch/scripts/services/%{name}
a6670e
a6670e
# config files
a6670e
install -d %{buildroot}/%{_sysconfdir}/%{name}
a6670e
install -pm 0600 %{SOURCE2} %{buildroot}/%{_sysconfdir}/%{name}
a6670e
a6670e
install -d %{buildroot}/%{_sysconfdir}/sysconfig
a6670e
install -pm 0644 %{SOURCE4} %{buildroot}/%{_sysconfdir}/sysconfig/%{name}
a6670e
a6670e
# binaries
a6670e
install -d %{buildroot}/%{_sbindir}
a6670e
install -pm 0755 %{name}/%{name} %{buildroot}%{_sbindir}/%{name}
a6670e
install -pm 0755 %{name}/%{name}_cli %{buildroot}%{_sbindir}/%{name}_cli
a6670e
a6670e
# man pages
a6670e
install -d %{buildroot}%{_mandir}/man{1,5,8}
a6670e
install -pm 0644 %{name}/%{name}_cli.1 %{buildroot}%{_mandir}/man1
a6670e
install -pm 0644 %{SOURCE3} %{buildroot}%{_mandir}/man5
a6670e
install -pm 0644 %{name}/%{name}.8 %{buildroot}%{_mandir}/man8
a6670e
a6670e
# prepare docs
a6670e
cp %{name}/README ./README.%{name}
a6670e
cp %{name}/README-WPS ./README-WPS.%{name}
a6670e
cp %{name}/logwatch/README ./README.logwatch
a6670e
a6670e
%if 0%{?fedora} || 0%{?rhel} >= 7
a6670e
a6670e
%post
a6670e
%systemd_post %{name}.service
a6670e
a6670e
%preun
a6670e
%systemd_preun %{name}.service
a6670e
a6670e
%postun
a6670e
%systemd_postun_with_restart %{name}.service
a6670e
a6670e
%endif
a6670e
a6670e
%if 0%{?rhel} == 6
a6670e
a6670e
%post
a6670e
/sbin/chkconfig --add %{name}
a6670e
a6670e
%preun
a6670e
if [ $1 -eq 0 ]; then
a6670e
    /sbin/service %{name} stop >/dev/null 2>&1 || :
a6670e
    /sbin/chkconfig --del %{name}
a6670e
fi
a6670e
a6670e
%postun
a6670e
if [ $1 -ge 1 ]; then
a6670e
    /sbin/service %{name} condrestart >/dev/null 2>&1 || :
a6670e
fi
a6670e
a6670e
%endif
a6670e
a6670e
%files
a6670e
%license COPYING
a6670e
%doc README README.hostapd README-WPS.hostapd
a6670e
%doc %{name}/%{name}.conf %{name}/wired.conf
a6670e
%doc %{name}/%{name}.accept %{name}/%{name}.deny
a6670e
%doc %{name}/%{name}.eap_user %{name}/%{name}.radius_clients
a6670e
%doc %{name}/%{name}.vlan %{name}/%{name}.wpa_psk
a6670e
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
a6670e
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
a6670e
%{_sbindir}/%{name}
a6670e
%{_sbindir}/%{name}_cli
a6670e
%dir %{_sysconfdir}/%{name}
a6670e
%{_mandir}/man1/*
a6670e
%{_mandir}/man5/*
a6670e
%{_mandir}/man8/*
a6670e
%if 0%{?fedora} || 0%{?rhel} >= 7
a6670e
%{_unitdir}/%{name}.service
a6670e
%else
a6670e
%{_initrddir}/%{name}
a6670e
%endif
a6670e
a6670e
%files logwatch
a6670e
%doc %{name}/logwatch/README
a6670e
%config(noreplace) %{_sysconfdir}/logwatch/conf/services/%{name}.conf
a6670e
%{_sysconfdir}/logwatch/scripts/services/%{name}
a6670e
a6670e
%changelog
a6670e
* Fri Jan 21 2022 Davide Caratti <dcaratti@redhat.com> - 2.10-1
a6670e
- Update to version 2.10, keeping CONFIG_WEP enabled
a6670e
a6670e
* Wed Dec 22 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-17
a6670e
- fix typo while enabling support for suite B-192
a6670e
a6670e
* Tue Dec 21 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-16
a6670e
- disable 'badfuncs' rpminspect test
a6670e
- change default value of CONFIG_TLS_DEFAULT_CIPHERS to allow using OpenSSL
a6670e
  to compute 3DES
a6670e
a6670e
* Mon Dec 20 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-15
a6670e
- Build with -fPIE, and enable verbose build log
a6670e
- Enable CONFIG_SUITEB192
a6670e
a6670e
* Sat Dec 18 2021 Tomas Pelka <tpelka@redhat.com> - 2.9-14
a6670e
- bump release and rebuild to correctly trigger gating
a6670e
a6670e
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 2.9-13
a6670e
- Rebuilt with OpenSSL 3.0.0
a6670e
a6670e
* Fri Sep  3 2021 Davide Caratti <dcaratti@redhat.com> - 2.9-12
a6670e
- backport fix for NetworkManager-ci failures with openssl-3.0.0
a6670e
a6670e
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-11
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
a6670e
a6670e
* Tue May 11 2021 John W. Linville <linville@redhat.com> - 2.9-10
a6670e
- Enable CONFIG_OWE build option in order to provide WPA3 capability
a6670e
a6670e
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.9-9
a6670e
- Rebuilt for updated systemd-rpm-macros
a6670e
  See https://pagure.io/fesco/issue/2583.
a6670e
a6670e
* Wed Feb 10 2021 John W. Linville <linville@redhat.com> - 2.9-8
a6670e
- Add hostapd.conf.5 man file, with content borrowed from NetBSD
a6670e
a6670e
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-7
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
a6670e
a6670e
* Thu Dec 10 2020 John W. Linville <linville@redhat.com> - 2.9-6
a6670e
- Enable environment file in hostapd service definition
a6670e
a6670e
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-5
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
a6670e
a6670e
* Wed Jun 24 2020 John W. Linville <linville@redhat.com> - 2.9-4
a6670e
- Fix CVE-2020-12695 (UPnP SUBSCRIBE misbehavior in hostapd WPS AP)
a6670e
a6670e
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.9-3
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
a6670e
a6670e
* Wed Oct 30 2019 John W. Linville <linville@redhat.com> - 2.9-2
a6670e
- Fix CVE-2019-16275 (AP mode PMF disconnection protection bypass)
a6670e
a6670e
* Fri Aug 09 2019 John W. Linville <linville@redhat.com> - 2.9-1
a6670e
- Update to version 2.9 from upstream
a6670e
a6670e
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-3
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
a6670e
a6670e
* Wed Jul 03 2019 Lubomir Rintel <lkundrak@v3.sk> - 2.8-2
a6670e
- Enable SAE
a6670e
a6670e
* Wed May 15 2019 John W. Linville <linville@redhat.com> - 2.8-1
a6670e
- Update to version 2.8 from upstream
a6670e
- Drop obsoleted patches
a6670e
a6670e
* Fri Apr 12 2019 John W. Linville <linville@redhat.com> - 2.7-2
a6670e
- Bump N-V-R for rebuild
a6670e
a6670e
* Fri Apr 12 2019 John W. Linville <linville@redhat.com> - 2.7-1
a6670e
- Update to version 2.7 from upstream
a6670e
- Remove obsolete patches for NL80211_ATTR_SMPS_MODE encoding and KRACK
a6670e
- Fix CVE-2019-9494 (cache attack against SAE)
a6670e
- Fix CVE-2019-9495 (cache attack against EAP-pwd)
a6670e
- Fix CVE-2019-9496 (SAE confirm missing state validation in hostapd/AP)
a6670e
- Fix CVE-2019-9497 (EAP-pwd server not checking for reflection attack)
a6670e
- Fix CVE-2019-9498 (EAP-pwd server missing commit validation for scalar/element)
a6670e
- Fix CVE-2019-9499 (EAP-pwd peer missing commit validation for scalar/element)
a6670e
a6670e
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-12
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a6670e
a6670e
* Fri Jul 20 2018 John W. Linville <linville@redhat.com> - 2.6-11
a6670e
- Add previously unnecessary BuildRequires for gcc
a6670e
a6670e
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-10
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a6670e
a6670e
* Tue May 29 2018 Davide Caratti <dcaratti@redhat.com> - 2.6-9
a6670e
- backport fix for Fix NL80211_ATTR_SMPS_MODE encoding (rh #1582839)
a6670e
a6670e
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-8
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
a6670e
a6670e
* Thu Dec 07 2017 Simone Caronni <negativo17@gmail.com> - 2.6-7
a6670e
- Fix dependencies on the logwatch package for RHEL/CentOS.
a6670e
a6670e
* Fri Nov 03 2017 Xavier Bachelot <xavier@bachelot.org> - 2.6-6
a6670e
- Add patches for KRACK : CVE-2017-13077, CVE-2017-13078, CVE-2017-13079,
a6670e
  CVE-2017-13080, CVE-2017-13081, CVE-2017-13082, CVE-2017-13086,
a6670e
  CVE-2017-13087, CVE-2017-13088 (RHBZ#1502588).
a6670e
a6670e
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-5
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
a6670e
a6670e
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-4
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
a6670e
a6670e
* Thu Jul 13 2017 Petr Pisar <ppisar@redhat.com> - 2.6-3
a6670e
- perl dependency renamed to perl-interpreter
a6670e
  <https://fedoraproject.org/wiki/Changes/perl_Package_to_Install_Core_Modules>
a6670e
a6670e
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-2
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
a6670e
a6670e
* Mon Oct 03 2016 John W. Linville <linville@redhat.com> - 2.6-1
a6670e
- Update to version 2.6 from upstream
a6670e
- Remove patch for CVE-2016-4476, now included in base tarball
a6670e
a6670e
* Fri Jul 15 2016 John W. Linville <linville@redhat.com> - 2.5-5
a6670e
- Bump NVR and rebuild to resolve GLIBC_2.24 symbol issue
a6670e
a6670e
* Mon Jun 06 2016 John W. Linville <linville@redhat.com> - 2.5-4
a6670e
- Add WPS patch for CVE-2016-4476
a6670e
a6670e
* Tue Apr 19 2016 Sascha Spreitzer <sspreitz@redhat.com> - 2.5-3
a6670e
- Enable ACS feature (automatic channel switching)
a6670e
a6670e
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-2
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
a6670e
a6670e
* Tue Oct 13 2015 John W. Linville <linville@redhat.com> - 2.5-1
a6670e
- Update to version 2.5 from upstream
a6670e
- Remove patches made redundant by version update
a6670e
a6670e
* Fri Jul 10 2015 John W. Linville <linville@redhat.com> - 2.4-3
a6670e
- apply fix for NDEF record payload length checking
a6670e
a6670e
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-3
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
a6670e
a6670e
* Fri May 15 2015 John W. Linville <linville@redhat.com> - 2.4-2
a6670e
- apply fix for underflow in WMM action frame parser
a6670e
a6670e
* Tue Apr 21 2015 John W. Linville <linville@redhat.com> - 2.4-1
a6670e
- Update to version 2.4 from upstream
a6670e
- Enable support for IEEE802.11r and IEEE802.11ac
a6670e
a6670e
* Wed Feb  4 2015 John W. Linville <linville@redhat.com> - 2.3-4
a6670e
- Use %%license instead of %%doc for file containing license information
a6670e
a6670e
* Sun Nov 02 2014 poma <poma@gmail.com> - 2.3-3
a6670e
- Further simplify hostapd.conf installation
a6670e
- Rebase "EAP-TLS server" patch to 2.3
a6670e
a6670e
* Tue Oct 28 2014 John W. Linville <linville@redhat.com> - 2.3-2
a6670e
- Remove version info from /usr/share/doc/hostapd/hostapd.conf
a6670e
a6670e
* Thu Oct 23 2014 John W. Linville <linville@redhat.com> - 2.3-1
a6670e
- Update to version 2.3 from upstream
a6670e
a6670e
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-3
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
a6670e
a6670e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-2
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
a6670e
a6670e
* Thu Jun  5 2014 John W. Linville <linville@redhat.com> - 2.2-1
a6670e
- Update to version 2.2 from upstream
a6670e
a6670e
* Sat Feb 22 2014 Simone Caronni <negativo17@gmail.com> - 2.1-2
a6670e
- Re-enable drivers (#1068849).
a6670e
a6670e
* Fri Feb 14 2014 John W. Linville <linville@redhat.com> - 2.1-1
a6670e
- Update to version 2.1 from upstream
a6670e
- Remove obsolete patch for libnl build documentation
a6670e
a6670e
* Mon Feb 03 2014 Simone Caronni <negativo17@gmail.com> - 2.0-6
a6670e
- Add libnl build documentation and switch libnl-devel to libnl3-devel build
a6670e
  dependency (#1041471).
a6670e
a6670e
* Fri Nov 22 2013 John W. Linville <linville@redhat.com> - 2.0-5
a6670e
- Enable CONFIG_FULL_DYNAMIC_VLAN build option
a6670e
a6670e
* Wed Aug 07 2013 Simone Caronni <negativo17@gmail.com> - 2.0-4
a6670e
- Add EPEL 6 support.
a6670e
- Remove obsolete EPEL 5 tags.
a6670e
- Little spec file formatting.
a6670e
a6670e
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-3
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
a6670e
a6670e
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.0-2
a6670e
- Perl 5.18 rebuild
a6670e
a6670e
* Thu May 30 2013 John W. Linville <linville@redhat.com> - 2.0-1
a6670e
- Update to version 2.0 from upstream
a6670e
- Convert to use of systemd-rpm macros
a6670e
- Build with PIE flags
a6670e
a6670e
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-4
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
a6670e
a6670e
* Mon Oct  8 2012 John W. Linville <linville@redhat.com> - 1.0-3
a6670e
- EAP-TLS: Add extra validation for TLS Message Length
a6670e
a6670e
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a6670e
a6670e
* Fri Jun  8 2012 John W. Linville <linville@redhat.com> - 1.0-1
a6670e
- Update to version 1.0 from upstream
a6670e
a6670e
* Fri Jun  8 2012 John W. Linville <linville@redhat.com> - 0.7.3-9
a6670e
- Remove hostapd-specific runtime state directory
a6670e
a6670e
* Wed Jun  6 2012 John W. Linville <linville@redhat.com> - 0.7.3-8
a6670e
- Fixup typo in pid file path in hostapd.service
a6670e
a6670e
* Wed May 30 2012 John W. Linville <linville@redhat.com> - 0.7.3-7
a6670e
- Add BuildRequires for systemd-units
a6670e
a6670e
* Fri May 25 2012 John W. Linville <linville@redhat.com> - 0.7.3-6
a6670e
- Fixup typo in configuration file path in hostapd.service
a6670e
- Tighten-up default permissions for hostapd.conf
a6670e
a6670e
* Tue Feb 28 2012 Jon Ciesla <limburgher@gmail.com> - 0.7.3-5
a6670e
- Migrate to systemd, BZ 770310.
a6670e
a6670e
* Wed Jan 18 2012 John W. Linville <linville@redhat.com> - 0.7.3-4
a6670e
- Add reference to sample hostapd.conf in the default installed version
a6670e
- Include README-WPS from the hostapd distribution as part of the docs
a6670e
a6670e
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-3
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
a6670e
a6670e
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-2
a6670e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a6670e
a6670e
* Thu Dec 23 2010 John W. Linville <linville@redhat.com> - 0.7.3-1
a6670e
- Update to version 0.7.3
a6670e
a6670e
* Wed Nov 24 2010 John W. Linville <linville@redhat.com> - 0.6.10-3
a6670e
- Use ghost directive for /var/run/hostapd
a6670e
- Remove some rpmlint warnings
a6670e
a6670e
* Thu May 27 2010 John W. Linville <linville@redhat.com> - 0.6.10-2
a6670e
- Move DTIM period configuration into Beacon set operation
a6670e
a6670e
* Mon May 10 2010 John W. Linville <linville@redhat.com> - 0.6.10-1
a6670e
- Update to version 0.6.10
a6670e
a6670e
* Tue Jan 19 2010 John W. Linville <linville@redhat.com> - 0.6.9-8
a6670e
- Do not compress man pages manually in spec file
a6670e
- Correct date of previous changelog entry
a6670e
a6670e
* Thu Jan 14 2010 John W. Linville <linville@redhat.com> - 0.6.9-7
a6670e
- Enable 802.11n support
a6670e
a6670e
* Thu Dec 17 2009 John W. Linville <linville@redhat.com> - 0.6.9-6
a6670e
- Enable RADIUS server
a6670e
- Enable "wired" and "none" drivers
a6670e
- Use BSD license option
a6670e
a6670e
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-5
a6670e
- Use openssl instead of gnutls (broken)
a6670e
a6670e
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-4
a6670e
- Remove wired.conf from doc (not in chosen configuration)
a6670e
- Use $RPM_OPT_FLAGS
a6670e
- Add dist tag
a6670e
a6670e
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-3
a6670e
- Use gnutls instead of openssl
a6670e
- Turn-off internal EAP server (broken w/ gnutls)
a6670e
- Remove doc files not applicable to chosen configuration
a6670e
- Un-mangle README filename for logwatch sub-package
a6670e
a6670e
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-2
a6670e
- Initial build
a6670e
- Start release at 2 to avoid conflicts w/ previous attempts by others