lkundrak / rpms / hostapd

Forked from rpms/hostapd 4 years ago
Clone
John W. Linville 97ef5e3
%global _hardened_build 1
John W. Linville 97ef5e3
616d7d9
Name:           hostapd
John W. Linville dc7f38e
Version:        2.8
John W. Linville dc7f38e
Release:        1%{?dist}
616d7d9
Summary:        IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
616d7d9
License:        BSD
616d7d9
URL:            http://w1.fi/hostapd
476288c
John W. Linville 1118fe3
Source0:        http://w1.fi/releases/%{name}-%{version}.tar.gz
b0c3b13
Source1:        %{name}.service
616d7d9
Source2:        %{name}.conf
616d7d9
Source3:        %{name}.sysconfig
476288c
Source4:        %{name}.init
616d7d9
b7025e7
BuildRequires:  libnl3-devel
616d7d9
BuildRequires:  openssl-devel
5212be5
BuildRequires:  perl-generators
John W. Linville 2a45f7d
BuildRequires:  gcc
616d7d9
476288c
%if 0%{?fedora} || 0%{?rhel} >= 7
476288c
BuildRequires:      systemd
476288c
Requires(post):     systemd
476288c
Requires(preun):    systemd
476288c
Requires(postun):   systemd
476288c
%endif
476288c
476288c
%if 0%{?rhel} == 6
476288c
Requires(post):     /sbin/chkconfig
476288c
Requires(preun):    /sbin/chkconfig
476288c
Requires(preun):    /sbin/service
476288c
Requires(postun):   /sbin/service
476288c
%endif
John W. Linville 0995bfd
616d7d9
%description
476288c
%{name} is a user space daemon for access point and authentication servers. It
476288c
implements IEEE 802.11 access point management, IEEE 802.1X/WPA/WPA2/EAP
476288c
Authenticators and RADIUS authentication server.
616d7d9
476288c
%{name} is designed to be a "daemon" program that runs in the back-ground and
476288c
acts as the backend component controlling authentication. %{name} supports
476288c
separate frontend programs and an example text-based frontend, hostapd_cli, is
476288c
included with %{name}.
616d7d9
616d7d9
%package logwatch
476288c
Summary:        Logwatch scripts for hostapd
9e5d39f
Requires:       %{name} = %{version}-%{release}
9e5d39f
Requires:       logwatch
9e5d39f
%if 0%{?rhel} == 6 || 0%{?rhel} == 7
9e5d39f
Requires:       perl
9e5d39f
%else
9e5d39f
Requires:       perl-interpreter
9e5d39f
%endif
616d7d9
476288c
%description logwatch
476288c
Logwatch scripts for hostapd.
616d7d9
616d7d9
%prep
616d7d9
%setup -q
616d7d9
616d7d9
%build
616d7d9
cd hostapd
b7025e7
cat defconfig | sed \
b7025e7
    -e '/^#CONFIG_DRIVER_NL80211=y/s/^#//' \
b7025e7
    -e '/^#CONFIG_RADIUS_SERVER=y/s/^#//' \
b7025e7
    -e '/^#CONFIG_DRIVER_WIRED=y/s/^#//' \
b7025e7
    -e '/^#CONFIG_DRIVER_NONE=y/s/^#//' \
b7025e7
    -e '/^#CONFIG_IEEE80211N=y/s/^#//' \
John W. Linville 109f9ab
    -e '/^#CONFIG_IEEE80211R=y/s/^#//' \
John W. Linville 109f9ab
    -e '/^#CONFIG_IEEE80211AC=y/s/^#//' \
b7025e7
    -e '/^#CONFIG_FULL_DYNAMIC_VLAN=y/s/^#//' \
b7025e7
    -e '/^#CONFIG_LIBNL32=y/s/^#//' \
John W. Linville 3786224
    -e '/^#CONFIG_ACS=y/s/^#//' \
b7025e7
    > .config
22da73f
echo "CFLAGS += -I%{_includedir}/libnl3" >> .config
22da73f
echo "LIBS += -L%{_libdir}" >> .config
616d7d9
make %{?_smp_mflags} EXTRA_CFLAGS="$RPM_OPT_FLAGS"
616d7d9
616d7d9
%install
476288c
%if 0%{?fedora} || 0%{?rhel} >= 7
476288c
476288c
# Systemd unit files
476288c
install -p -m 644 -D %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service
616d7d9
476288c
%else
476288c
476288c
# Initscripts
476288c
install -p -m 755 -D %{SOURCE4} %{buildroot}%{_initrddir}/%{name}
476288c
476288c
%endif
616d7d9
616d7d9
# logwatch files
616d7d9
install -d %{buildroot}/%{_sysconfdir}/logwatch/conf/services
476288c
install -pm 0644 %{name}/logwatch/%{name}.conf  \
476288c
        %{buildroot}/%{_sysconfdir}/logwatch/conf/services/%{name}.conf
616d7d9
install -d %{buildroot}/%{_sysconfdir}/logwatch/scripts/services
476288c
install -pm 0755 %{name}/logwatch/%{name} \
476288c
        %{buildroot}/%{_sysconfdir}/logwatch/scripts/services/%{name}
616d7d9
616d7d9
# config files
616d7d9
install -d %{buildroot}/%{_sysconfdir}/%{name}
John W. Linville 0d84226
install -pm 0600 %{SOURCE2} %{buildroot}/%{_sysconfdir}/%{name}
616d7d9
616d7d9
install -d %{buildroot}/%{_sysconfdir}/sysconfig
476288c
install -pm 0644 %{SOURCE3} %{buildroot}/%{_sysconfdir}/sysconfig/%{name}
616d7d9
616d7d9
# binaries
616d7d9
install -d %{buildroot}/%{_sbindir}
476288c
install -pm 0755 %{name}/%{name} %{buildroot}%{_sbindir}/%{name}
476288c
install -pm 0755 %{name}/%{name}_cli %{buildroot}%{_sbindir}/%{name}_cli
616d7d9
616d7d9
# man pages
616d7d9
install -d %{buildroot}%{_mandir}/man{1,8}
476288c
install -pm 0644 %{name}/%{name}_cli.1 %{buildroot}%{_mandir}/man1
476288c
install -pm 0644 %{name}/%{name}.8 %{buildroot}%{_mandir}/man8
616d7d9
616d7d9
# prepare docs
476288c
cp %{name}/README ./README.%{name}
476288c
cp %{name}/README-WPS ./README-WPS.%{name}
476288c
cp %{name}/logwatch/README ./README.logwatch
616d7d9
476288c
%if 0%{?fedora} || 0%{?rhel} >= 7
616d7d9
476288c
%post
476288c
%systemd_post %{name}.service
616d7d9
476288c
%preun
476288c
%systemd_preun %{name}.service
616d7d9
476288c
%postun
476288c
%systemd_postun_with_restart %{name}.service
616d7d9
476288c
%endif
616d7d9
476288c
%if 0%{?rhel} == 6
616d7d9
616d7d9
%post
476288c
/sbin/chkconfig --add %{name}
616d7d9
616d7d9
%preun
476288c
if [ $1 -eq 0 ]; then
476288c
    /sbin/service %{name} stop >/dev/null 2>&1 || :
476288c
    /sbin/chkconfig --del %{name}
476288c
fi
b0c3b13
b0c3b13
%postun
476288c
if [ $1 -ge 1 ]; then
476288c
    /sbin/service %{name} condrestart >/dev/null 2>&1 || :
476288c
fi
616d7d9
476288c
%endif
b0c3b13
476288c
%files
John W. Linville 06ec11f
%license COPYING
John W. Linville 06ec11f
%doc README README.hostapd README-WPS.hostapd
476288c
%doc %{name}/%{name}.conf %{name}/wired.conf
476288c
%doc %{name}/%{name}.accept %{name}/%{name}.deny
476288c
%doc %{name}/%{name}.eap_user %{name}/%{name}.radius_clients
476288c
%doc %{name}/%{name}.vlan %{name}/%{name}.wpa_psk
476288c
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
476288c
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
476288c
%{_sbindir}/%{name}
476288c
%{_sbindir}/%{name}_cli
476288c
%dir %{_sysconfdir}/%{name}
476288c
%{_mandir}/man1/*
476288c
%{_mandir}/man8/*
476288c
%if 0%{?fedora} || 0%{?rhel} >= 7
476288c
%{_unitdir}/%{name}.service
476288c
%else
476288c
%{_initrddir}/%{name}
476288c
%endif
b0c3b13
476288c
%files logwatch
476288c
%doc %{name}/logwatch/README
476288c
%config(noreplace) %{_sysconfdir}/logwatch/conf/services/%{name}.conf
476288c
%{_sysconfdir}/logwatch/scripts/services/%{name}
616d7d9
616d7d9
%changelog
John W. Linville dc7f38e
* Wed May 15 2019 John W. Linville <linville@redhat.com> - 2.8-1
John W. Linville dc7f38e
- Update to version 2.8 from upstream
John W. Linville dc7f38e
- Drop obsoleted patches
John W. Linville dc7f38e
John W. Linville 3dada5d
* Fri Apr 12 2019 John W. Linville <linville@redhat.com> - 2.7-2
John W. Linville 3dada5d
- Bump N-V-R for rebuild
John W. Linville 3dada5d
John W. Linville aeb7fa6
* Fri Apr 12 2019 John W. Linville <linville@redhat.com> - 2.7-1
John W. Linville 82095b5
- Update to version 2.7 from upstream
John W. Linville aeb7fa6
- Remove obsolete patches for NL80211_ATTR_SMPS_MODE encoding and KRACK
John W. Linville aeb7fa6
- Fix CVE-2019-9494 (cache attack against SAE)
John W. Linville aeb7fa6
- Fix CVE-2019-9495 (cache attack against EAP-pwd)
John W. Linville aeb7fa6
- Fix CVE-2019-9496 (SAE confirm missing state validation in hostapd/AP)
John W. Linville aeb7fa6
- Fix CVE-2019-9497 (EAP-pwd server not checking for reflection attack)
John W. Linville aeb7fa6
- Fix CVE-2019-9498 (EAP-pwd server missing commit validation for scalar/element)
John W. Linville aeb7fa6
- Fix CVE-2019-9499 (EAP-pwd peer missing commit validation for scalar/element)
John W. Linville aeb7fa6
a7b700e
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-12
a7b700e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a7b700e
John W. Linville 2a45f7d
* Fri Jul 20 2018 John W. Linville <linville@redhat.com> - 2.6-11
John W. Linville 2a45f7d
- Add previously unnecessary BuildRequires for gcc
John W. Linville 2a45f7d
2eccb1e
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-10
2eccb1e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
2eccb1e
b44ff58
* Tue May 29 2018 Davide Caratti <dcaratti@redhat.com> - 2.6-9
b44ff58
- backport fix for Fix NL80211_ATTR_SMPS_MODE encoding (rh #1582839)
b44ff58
8e6b49f
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-8
8e6b49f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8e6b49f
9e5d39f
* Thu Dec 07 2017 Simone Caronni <negativo17@gmail.com> - 2.6-7
9e5d39f
- Fix dependencies on the logwatch package for RHEL/CentOS.
9e5d39f
41817b0
* Fri Nov 03 2017 Xavier Bachelot <xavier@bachelot.org> - 2.6-6
41817b0
- Add patches for KRACK : CVE-2017-13077, CVE-2017-13078, CVE-2017-13079,
41817b0
  CVE-2017-13080, CVE-2017-13081, CVE-2017-13082, CVE-2017-13086,
41817b0
  CVE-2017-13087, CVE-2017-13088 (RHBZ#1502588).
41817b0
61998b3
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-5
61998b3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
61998b3
7bad853
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-4
7bad853
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
7bad853
eb0870b
* Thu Jul 13 2017 Petr Pisar <ppisar@redhat.com> - 2.6-3
eb0870b
- perl dependency renamed to perl-interpreter
eb0870b
  <https://fedoraproject.org/wiki/Changes/perl_Package_to_Install_Core_Modules>
eb0870b
5ebcde4
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-2
5ebcde4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5ebcde4
John W. Linville 7ba6f03
* Mon Oct 03 2016 John W. Linville <linville@redhat.com> - 2.6-1
John W. Linville 7ba6f03
- Update to version 2.6 from upstream
John W. Linville 7ba6f03
- Remove patch for CVE-2016-4476, now included in base tarball
John W. Linville 7ba6f03
John W. Linville 651886b
* Fri Jul 15 2016 John W. Linville <linville@redhat.com> - 2.5-5
John W. Linville 651886b
- Bump NVR and rebuild to resolve GLIBC_2.24 symbol issue
John W. Linville 651886b
John W. Linville 91b438a
* Mon Jun 06 2016 John W. Linville <linville@redhat.com> - 2.5-4
John W. Linville 91b438a
- Add WPS patch for CVE-2016-4476
John W. Linville 91b438a
John W. Linville 3786224
* Tue Apr 19 2016 Sascha Spreitzer <sspreitz@redhat.com> - 2.5-3
John W. Linville 3786224
- Enable ACS feature (automatic channel switching)
John W. Linville 3786224
f516dd9
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.5-2
f516dd9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
f516dd9
John W. Linville 5b487d6
* Tue Oct 13 2015 John W. Linville <linville@redhat.com> - 2.5-1
John W. Linville 5b487d6
- Update to version 2.5 from upstream
John W. Linville 5b487d6
- Remove patches made redundant by version update
John W. Linville 5b487d6
John W. Linville c803bbc
* Fri Jul 10 2015 John W. Linville <linville@redhat.com> - 2.4-3
John W. Linville c803bbc
- apply fix for NDEF record payload length checking
John W. Linville c803bbc
febb115
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4-3
febb115
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
febb115
John W. Linville e7af6e8
* Fri May 15 2015 John W. Linville <linville@redhat.com> - 2.4-2
John W. Linville e7af6e8
- apply fix for underflow in WMM action frame parser
John W. Linville e7af6e8
John W. Linville 109f9ab
* Tue Apr 21 2015 John W. Linville <linville@redhat.com> - 2.4-1
John W. Linville 109f9ab
- Update to version 2.4 from upstream
John W. Linville 109f9ab
- Enable support for IEEE802.11r and IEEE802.11ac
John W. Linville 109f9ab
John W. Linville 06ec11f
* Wed Feb  4 2015 John W. Linville <linville@redhat.com> - 2.3-4
41817b0
- Use %%license instead of %%doc for file containing license information
John W. Linville 06ec11f
John W. Linville 0d84226
* Sun Nov 02 2014 poma <poma@gmail.com> - 2.3-3
John W. Linville 0d84226
- Further simplify hostapd.conf installation
John W. Linville 0d84226
- Rebase "EAP-TLS server" patch to 2.3
John W. Linville 0d84226
John W. Linville 3c99307
* Tue Oct 28 2014 John W. Linville <linville@redhat.com> - 2.3-2
John W. Linville 3c99307
- Remove version info from /usr/share/doc/hostapd/hostapd.conf
John W. Linville 3c99307
John W. Linville c61db46
* Thu Oct 23 2014 John W. Linville <linville@redhat.com> - 2.3-1
John W. Linville c61db46
- Update to version 2.3 from upstream
John W. Linville c61db46
2472afe
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-3
2472afe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2472afe
b6e68de
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2-2
b6e68de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b6e68de
John W. Linville d7a1df6
* Thu Jun  5 2014 John W. Linville <linville@redhat.com> - 2.2-1
John W. Linville d7a1df6
- Update to version 2.2 from upstream
John W. Linville d7a1df6
22da73f
* Sat Feb 22 2014 Simone Caronni <negativo17@gmail.com> - 2.1-2
22da73f
- Re-enable drivers (#1068849).
22da73f
John W. Linville dd501e4
* Fri Feb 14 2014 John W. Linville <linville@redhat.com> - 2.1-1
John W. Linville dd501e4
- Update to version 2.1 from upstream
John W. Linville dd501e4
- Remove obsolete patch for libnl build documentation
John W. Linville dd501e4
b7025e7
* Mon Feb 03 2014 Simone Caronni <negativo17@gmail.com> - 2.0-6
b7025e7
- Add libnl build documentation and switch libnl-devel to libnl3-devel build
b7025e7
  dependency (#1041471).
b7025e7
John W. Linville 4765dad
* Fri Nov 22 2013 John W. Linville <linville@redhat.com> - 2.0-5
John W. Linville 4765dad
- Enable CONFIG_FULL_DYNAMIC_VLAN build option
John W. Linville 4765dad
476288c
* Wed Aug 07 2013 Simone Caronni <negativo17@gmail.com> - 2.0-4
476288c
- Add EPEL 6 support.
476288c
- Remove obsolete EPEL 5 tags.
476288c
- Little spec file formatting.
476288c
0d5f5d0
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-3
0d5f5d0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
0d5f5d0
87020ca
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 2.0-2
87020ca
- Perl 5.18 rebuild
87020ca
John W. Linville 0995bfd
* Thu May 30 2013 John W. Linville <linville@redhat.com> - 2.0-1
John W. Linville 0995bfd
- Update to version 2.0 from upstream
John W. Linville 0995bfd
- Convert to use of systemd-rpm macros
John W. Linville 0995bfd
- Build with PIE flags
John W. Linville 0995bfd
e775a92
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-4
e775a92
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e775a92
John W. Linville 11cd48b
* Mon Oct  8 2012 John W. Linville <linville@redhat.com> - 1.0-3
John W. Linville 11cd48b
- EAP-TLS: Add extra validation for TLS Message Length
John W. Linville 11cd48b
438eb5e
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
438eb5e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
438eb5e
John W. Linville 6b003fc
* Fri Jun  8 2012 John W. Linville <linville@redhat.com> - 1.0-1
John W. Linville 6b003fc
- Update to version 1.0 from upstream
John W. Linville 6b003fc
John W. Linville d283ee2
* Fri Jun  8 2012 John W. Linville <linville@redhat.com> - 0.7.3-9
John W. Linville d283ee2
- Remove hostapd-specific runtime state directory
John W. Linville d283ee2
John W. Linville 05a3aac
* Wed Jun  6 2012 John W. Linville <linville@redhat.com> - 0.7.3-8
John W. Linville 05a3aac
- Fixup typo in pid file path in hostapd.service
John W. Linville 05a3aac
John W. Linville 2983da3
* Wed May 30 2012 John W. Linville <linville@redhat.com> - 0.7.3-7
John W. Linville 2983da3
- Add BuildRequires for systemd-units
John W. Linville 2983da3
John W. Linville 48be616
* Fri May 25 2012 John W. Linville <linville@redhat.com> - 0.7.3-6
John W. Linville 48be616
- Fixup typo in configuration file path in hostapd.service
John W. Linville 48be616
- Tighten-up default permissions for hostapd.conf
John W. Linville 48be616
b0c3b13
* Tue Feb 28 2012 Jon Ciesla <limburgher@gmail.com> - 0.7.3-5
b0c3b13
- Migrate to systemd, BZ 770310.
b0c3b13
John W. Linville 72a6d75
* Wed Jan 18 2012 John W. Linville <linville@redhat.com> - 0.7.3-4
John W. Linville 72a6d75
- Add reference to sample hostapd.conf in the default installed version
John W. Linville 72a6d75
- Include README-WPS from the hostapd distribution as part of the docs
John W. Linville 72a6d75
8b8bf7e
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-3
8b8bf7e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8b8bf7e
e444920
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-2
e444920
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e444920
John W. Linville 41e739b
* Thu Dec 23 2010 John W. Linville <linville@redhat.com> - 0.7.3-1
John W. Linville 41e739b
- Update to version 0.7.3
John W. Linville 41e739b
John W. Linville 1118fe3
* Wed Nov 24 2010 John W. Linville <linville@redhat.com> - 0.6.10-3
John W. Linville 1118fe3
- Use ghost directive for /var/run/hostapd
John W. Linville 1118fe3
- Remove some rpmlint warnings
John W. Linville 1118fe3
4f1cc14
* Thu May 27 2010 John W. Linville <linville@redhat.com> - 0.6.10-2
4f1cc14
- Move DTIM period configuration into Beacon set operation
4f1cc14
98ff3a3
* Mon May 10 2010 John W. Linville <linville@redhat.com> - 0.6.10-1
98ff3a3
- Update to version 0.6.10
98ff3a3
9ad39f4
* Tue Jan 19 2010 John W. Linville <linville@redhat.com> - 0.6.9-8
9ad39f4
- Do not compress man pages manually in spec file
9ad39f4
- Correct date of previous changelog entry
9ad39f4
9ad39f4
* Thu Jan 14 2010 John W. Linville <linville@redhat.com> - 0.6.9-7
c452e45
- Enable 802.11n support
c452e45
616d7d9
* Thu Dec 17 2009 John W. Linville <linville@redhat.com> - 0.6.9-6
616d7d9
- Enable RADIUS server
616d7d9
- Enable "wired" and "none" drivers
616d7d9
- Use BSD license option
616d7d9
616d7d9
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-5
616d7d9
- Use openssl instead of gnutls (broken)
616d7d9
616d7d9
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-4
John W. Linville 1118fe3
- Remove wired.conf from doc (not in chosen configuration)
616d7d9
- Use $RPM_OPT_FLAGS
John W. Linville 1118fe3
- Add dist tag
616d7d9
616d7d9
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-3
616d7d9
- Use gnutls instead of openssl
616d7d9
- Turn-off internal EAP server (broken w/ gnutls)
John W. Linville 1118fe3
- Remove doc files not applicable to chosen configuration
616d7d9
- Un-mangle README filename for logwatch sub-package
616d7d9
616d7d9
* Wed Dec 16 2009 John W. Linville <linville@redhat.com> - 0.6.9-2
616d7d9
- Initial build
616d7d9
- Start release at 2 to avoid conflicts w/ previous attempts by others