b871210
%define _hardened_build 1
b466ea7
#define prerelease rc22
38a33b7
8fdf7b7
# Build conditionals
8fdf7b7
# tests_long - Enabled by default, enables long running tests in %%check
8fdf7b7
%bcond_without tests_long
5994929
5994929
Name:              openvpn
9831998
Version:           2.4.1
740a5e8
Release:           3_scratch1%{?prerelease:.%{prerelease}}%{?dist}
5994929
Summary:           A full-featured SSL VPN solution
9831998
URL:               https://community.openvpn.net/
9831998
Source0:           https://swupdate.openvpn.org/community/releases/%{name}-%{version}%{?prerelease:_%{prerelease}}.tar.xz
9831998
Source1:           https://swupdate.openvpn.org/community/releases/%{name}-%{version}%{?prerelease:_%{prerelease}}.tar.xz.asc
5994929
Source2:           roadwarrior-server.conf
5994929
Source3:           roadwarrior-client.conf
f3d0d51
Source4:           README.systemd
f3d0d51
# Deprecated systemd unit file.  Will be removed in Fedora 27
f3d0d51
Source5:           openvpn@.service
f3d0d51
Patch0:            0001-workaround-Allow-weaker-RSA-keys-and-MD-algorithms-i.patch
6fa9826
License:           GPLv2
5994929
Group:             Applications/Internet
ef86d1d
BuildRequires:     systemd-devel
5994929
BuildRequires:     lzo-devel
9c007f5
#BuildRequires:     openssl-devel
9c007f5
BuildRequires:     mbedtls-devel
5994929
BuildRequires:     pam-devel
58e2bd8
# For the perl_default_filter macro
58e2bd8
BuildRequires:     perl-macros
49093ce
BuildRequires:     pkcs11-helper-devel >= 1.11
8b3e151
BuildRequires:     systemd-units
69624a3
# For /sbin/ip.
69624a3
BuildRequires:     iproute
69624a3
# For /sbin/ip.
69624a3
Requires:          iproute
5994929
Requires(pre):     /usr/sbin/useradd
8b3e151
Requires(post):    systemd-sysv
8b3e151
Requires(post):    systemd-units
8b3e151
Requires(preun):   systemd-units
8b3e151
Requires(postun):  systemd-units
5994929
5994929
# Filter out the perl(Authen::PAM) dependency.
5994929
# No perl dependency is really needed at all.
58e2bd8
%{?perl_default_filter}
5994929
5994929
%description
5994929
OpenVPN is a robust and highly flexible tunneling application that uses all
5994929
of the encryption, authentication, and certification features of the
5994929
OpenSSL library to securely tunnel IP networks over a single UDP or TCP
8fdf7b7
port.  It can use the Marcus Franz Xaver Johannes Oberhumers LZO library
5994929
for compression.
5994929
8fdf7b7
%package devel
8fdf7b7
Group:             Applications/Internet
8fdf7b7
Summary:           Development headers and examples for OpenVPN plug-ins
8fdf7b7
8fdf7b7
%description devel
8fdf7b7
OpenVPN can be extended through the --plugin option, which provides
8fdf7b7
possibilities to add specialized authentication, user accounting,
8fdf7b7
packet filtering and related features.  These plug-ins need to be
8fdf7b7
written in C and provides a more low-level and information rich access
8fdf7b7
to similar features as the various script-hooks.
8fdf7b7
8fdf7b7
5994929
%prep
38a33b7
%setup -q -n %{name}-%{version}%{?prerelease:_%{prerelease}}
f3d0d51
%patch0 -p1
a0543cc
f3eed52
sed -i -e 's,%{_datadir}/openvpn/plugin,%{_libdir}/openvpn/plugin,' doc/openvpn.8
5994929
2fc8e30
# %%doc items shouldn't be executable.
f0c58f1
find contrib sample -type f -perm /100 \
2fc8e30
    -exec chmod a-x {} \;
2fc8e30
5994929
%build
fe724ad
%configure \
fe724ad
    --enable-iproute2 \
9c007f5
    --with-crypto-library=mbedtls \
f3d0d51
    --enable-selinux \
035df29
    --enable-systemd \
9831998
    --docdir=%{_pkgdocdir} \
9831998
    SYSTEMD_UNIT_DIR=%{_unitdir} \
f3d0d51
    TMPFILES_DIR=%{_tmpfilesdir} \
f3d0d51
    IPROUTE=/sbin/ip
f3d0d51
#    --enable-pkcs11 \
5994929
%{__make}
5994929
8fdf7b7
%check
8fdf7b7
# Test Crypto:
8fdf7b7
./src/openvpn/openvpn --genkey --secret key
8fdf7b7
./src/openvpn/openvpn --test-crypto --secret key
8fdf7b7
8fdf7b7
%if %{with tests_long}
8fdf7b7
# Randomize ports for tests to avoid conflicts on the build servers.
8fdf7b7
cport=$[ 50000 + ($RANDOM % 15534) ]
8fdf7b7
sport=$[ $cport + 1 ]
8fdf7b7
sed -e 's/^\(rport\) .*$/\1 '$sport'/' \
8fdf7b7
    -e 's/^\(lport\) .*$/\1 '$cport'/' \
8fdf7b7
    < sample/sample-config-files/loopback-client \
8fdf7b7
    > %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u})-loopback-client
8fdf7b7
sed -e 's/^\(rport\) .*$/\1 '$cport'/' \
8fdf7b7
    -e 's/^\(lport\) .*$/\1 '$sport'/' \
8fdf7b7
    < sample/sample-config-files/loopback-server \
8fdf7b7
    > %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u})-loopback-server
8fdf7b7
8fdf7b7
pushd sample
8fdf7b7
# Test SSL/TLS negotiations (runs for 2 minutes):
8fdf7b7
../src/openvpn/openvpn --config \
8fdf7b7
    %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u})-loopback-client &
8fdf7b7
../src/openvpn/openvpn --config \
8fdf7b7
    %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u})-loopback-server
8fdf7b7
wait
8fdf7b7
popd
8fdf7b7
8fdf7b7
rm -f %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u})-loopback-client \
8fdf7b7
    %{_tmppath}/%{name}-%{version}-%{release}-%(%{__id_u})-loopback-server
8fdf7b7
%endif
7995a20
5994929
%install
f3eed52
%{__make} install DESTDIR=$RPM_BUILD_ROOT
f3eed52
find $RPM_BUILD_ROOT -name '*.la' | xargs rm -f
f3d0d51
mkdir -p -m 0750 $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/client $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/server
f3d0d51
cp %{SOURCE2} %{SOURCE3} sample/sample-config-files/
f3d0d51
f3d0d51
# DEPRECATED openvpn@.service ... this unit file will be removed in Fedora 27
f3d0d51
install -D -m 0644 %{SOURCE5} $RPM_BUILD_ROOT%{_unitdir}/
5994929
035df29
# Package installs into %%{_pkgdocdir} directly
035df29
# Add further files
f3d0d51
cp -a AUTHORS contrib sample %{SOURCE4} $RPM_BUILD_ROOT%{_pkgdocdir}
035df29
8fdf7b7
# Remove some files which does not really belong here
8fdf7b7
rm -f $RPM_BUILD_ROOT%{_pkgdocdir}/sample/Makefile{,.in,.am}
8fdf7b7
rm -f  $RPM_BUILD_ROOT%{_pkgdocdir}/contrib/multilevel-init.patch
8fdf7b7
rm -rf $RPM_BUILD_ROOT%{_pkgdocdir}/sample/sample-keys
8fdf7b7
rm -rf $RPM_BUILD_ROOT%{_pkgdocdir}/contrib/keychain-mcd
5994929
5994929
%pre
03e60ef
getent group openvpn &>/dev/null || groupadd -r openvpn
03e60ef
getent passwd openvpn &>/dev/null || \
03e60ef
    /usr/sbin/useradd -r -g openvpn -s /sbin/nologin -c OpenVPN \
03e60ef
        -d /etc/openvpn openvpn
5994929
5994929
%post
f3d0d51
%systemd_post openvpn-client@\*.service
f3d0d51
%systemd_post openvpn-server@\*.service
5994929
5994929
%preun
f3d0d51
%systemd_preun openvpn-client@\*.service
f3d0d51
%systemd_preun openvpn-server@\*.service
5994929
5994929
%postun
f3d0d51
%systemd_postun openvpn-client@\*.service
f3d0d51
%systemd_postun openvpn-server@\*.service
8b3e151
5994929
5994929
%files
035df29
%{_pkgdocdir}
035df29
%exclude %{_pkgdocdir}/README.IPv6
035df29
%exclude %{_pkgdocdir}/README.polarssl
8fdf7b7
%exclude %{_pkgdocdir}/sample/sample-plugins
5994929
%{_mandir}/man8/%{name}.8*
5994929
%{_sbindir}/%{name}
170f728
%{_libdir}/%{name}/
8b3e151
%{_unitdir}/%{name}@.service
9831998
%{_unitdir}/%{name}-client@.service
9831998
%{_unitdir}/%{name}-server@.service
9831998
%{_tmpfilesdir}/%{name}.conf
5994929
%config %dir %{_sysconfdir}/%{name}/
f3d0d51
%config %dir %{_sysconfdir}/%{name}/client
f3d0d51
%config %dir %{_sysconfdir}/%{name}/server
f3d0d51
8fdf7b7
%files devel
8fdf7b7
%{_pkgdocdir}/sample/sample-plugins
8fdf7b7
%{_includedir}/openvpn-plugin.h
8fdf7b7
%{_includedir}/openvpn-msg.h
8fdf7b7
5994929
5994929
%changelog
740a5e8
* Thu Apr 20 2017 David Sommerseth <dazo@eurephia.org> - 2.4.1-3_scratch1
740a5e8
- Testing enabling MD5 certificate support (#1443749)
740a5e8
8fdf7b7
* Wed Mar 29 2017 David Sommerseth <dazo@eurephia.org> - 2.4.1-3
8fdf7b7
- Splitting out -devel files into a separate package
8fdf7b7
- Removed several contrib and sample files which makes is not
8fdf7b7
  strictly needed in this package.
8fdf7b7
- build: Enable tests runs by default, long running tests can
8fdf7b7
  be disabled with "--without tests_long"
8fdf7b7
- build: Removed defined %%{plugins} macro not in use
8fdf7b7
f3d0d51
* Fri Mar 24 2017 David Sommerseth <dazo@eurephia.org> - 2.4.1-2
f3d0d51
- Various cleanups
f3d0d51
- Use systemd-rpm macros (rhbz#850257)
f3d0d51
- Updated openvpn@.service to use Type=notify instead of Type=forking (rhbz#1435831)
f3d0d51
  BEWARE: openvpn@.service is DEPRECATED.
f3d0d51
- Added README.systemd describing new systemd unit files (openvpn-client/server@.service)
f3d0d51
9831998
* Thu Mar 23 2017 David Sommerseth <dazo@eurephia.org> - 2.4.1-1
9831998
- Updating to upstream release, v2.4.1
9831998
- Added mbed TLS patch to allow RSA keys down to 1024 bits plus SHA1
9831998
  and RIPE-160 hasing algorithms (based on OpenVPN 3 legacy profile)
9831998
- Removed no-functional ./configure options
9831998
- Use upstream tmfiles.d/openvpn
9831998
- Package newer openvpn-client/server@.service unit files
9831998
9c007f5
* Thu Feb 09 2017 Jon Ciesla <limburgher@gmail.com> 2.4.0-2
9c007f5
- Move to mbedtls to resolve FTBFS.
9c007f5
- Dropped, re-add once openvpn supports openssl 1.1.x
9c007f5
-    --enable-pkcs11 \
9c007f5
-    --enable-x509-alt-username \
9c007f5
c58337e
* Tue Dec 27 2016 Jon Ciesla <limburgher@gmail.com> 2.4.0-1
c58337e
- 2.4.0.
c58337e
c1c053f
* Wed Dec 07 2016 Jon Ciesla <limburgher@gmail.com> 2.3.14-1
c1c053f
- 2.3.14.
c1c053f
c9d106c
* Thu Nov 03 2016 Jon Ciesla <limburgher@gmail.com> 2.3.13-1
c9d106c
- 2.3.13.
c9d106c
049d426
* Tue Aug 23 2016 Jon Ciesla <limburgher@gmail.com> 2.3.12-1
049d426
- 2.3.12.
049d426
cc506dd
* Tue May 10 2016 Jon Ciesla <limburgher@gmail.com> 2.3.11-1
cc506dd
- 2.3.11.
cc506dd
d770940
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.10-2
d770940
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d770940
2998733
* Mon Jan 04 2016 Jon Ciesla <limburgher@gmail.com> 2.3.10-1
2998733
- 2.3.10.
2998733
4990a5e
* Wed Dec 16 2015 Jon Ciesla <limburgher@gmail.com> 2.3.9-1
4990a5e
- 2.3.9.
4990a5e
329a597
* Tue Aug 04 2015 Jon Ciesla <limburgher@gmail.com> 2.3.8-1
329a597
- 2.3.8.
329a597
cae8eb0
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.7-2
cae8eb0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
cae8eb0
5b5e53a
* Tue Jun 09 2015 Jon Ciesla <limburgher@gmail.com> 2.3.7-1
5b5e53a
- 2.3.7, BZ 1229504.
e65e79b
035df29
* Fri Nov 21 2014 Ralf Corsépius <corsepiu@fedoraproject.org> - 2.3.5-2
035df29
- Rework package doc handling (RHBZ #1165004).
035df29
071bdfa
* Tue Oct 28 2014 Jon Ciesla <limburgher@gmail.com> 2.3.5-1
071bdfa
- 2.3.5.
071bdfa
a0ba4b9
* Tue Aug 26 2014 Jan Vcelak <jvcelak@fedoraproject.org> 2.3.4-4
a0ba4b9
- Enable systemd support.
a0ba4b9
476c759
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.4-3
476c759
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
476c759
e10dbbb
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.4-2
e10dbbb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e10dbbb
2153c50
* Fri May 02 2014 Jon Ciesla <limburgher@gmail.com> 2.3.4-1
2153c50
- 2.3.4.
9359ca7
- Disable make check until upstream provides non-md5 sample keys.
9359ca7
- Filed upstream https://community.openvpn.net/openvpn/ticket/400#ticket
2153c50
49093ce
* Fri Apr 11 2014 Jon Ciesla <limburgher@gmail.com> 2.3.3-1
49093ce
- Latest uptream, needs pkcs11-helper >= 1.11
49093ce
8f5cc1f
* Sun Jan 19 2014 Ville Skyttä <ville.skytta@iki.fi> - 2.3.2-5
8f5cc1f
- Don't order service after syslog.target.
8f5cc1f
b3fc662
* Thu Sep 12 2013 Jon Ciesla <limburgher@gmail.com> 2.3.2-4
b3fc662
- Enable --enable-x509-alt-username, BZ 1007184.
b3fc662
f0c58f1
* Wed Aug 07 2013 Jon Ciesla <limburgher@gmail.com> 2.3.2-3
f0c58f1
- Fix find syntax to fix FTBFS, BZ 992411.
f0c58f1
9e1c15c
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2-2
9e1c15c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
9e1c15c
1fefca8
* Mon Jun 03 2013 Jon Ciesla <limburgher@gmail.com> 2.3.2-1
1fefca8
- 2.3.2, BZ 970089.
1fefca8
e3f9c28
* Thu May 16 2013 Jon Ciesla <limburgher@gmail.com> 2.3.1-4
e3f9c28
- chmod -x .service, BZ 963914.
e3f9c28
d33d181
* Thu May 16 2013 Jon Ciesla <limburgher@gmail.com> 2.3.1-3
d33d181
- Enable --enable-pkcs11, BZ 963868.
d33d181
58e2bd8
* Mon Apr 08 2013 Kalev Lember <kalevlember@gmail.com> 2.3.1-2
58e2bd8
- Update perl requires filtering
58e2bd8
2ffe46a
* Tue Apr 02 2013 Jon Ciesla <limburgher@gmail.com> 2.3.1-1
2ffe46a
- 2.3.1, BZ 929402.
2ffe46a
ae75982
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
ae75982
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
ae75982
f3eed52
* Tue Jan 15 2013 Jon Ciesla <limburgher@gmail.com> 2.3.0-1
f3eed52
- 2.3.0, BZ 893700.
f3eed52
cb64f56
* Wed Sep 26 2012 Jon Ciesla <limburgher@gmail.com> 2.2.2-9
cb64f56
- Dropped net-tools, BZ 785794.
cb64f56
cc15ebf
* Wed Sep 05 2012 Jon Ciesla <limburgher@gmail.com> 2.2.2-8
cc15ebf
- Dropped config from tmpfiles conf.
cc15ebf
9696838
* Wed Sep 05 2012 Jon Ciesla <limburgher@gmail.com> 2.2.2-7
9696838
- Fix tmpfiles location, BZ 840188.
9696838
- Fix run ownership, BZ 854440.
9696838
2428a8d
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.2-6
2428a8d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2428a8d
b871210
* Thu Apr 12 2012 Jon Ciesla <limburgher@gmail.com> 2.2.2-5
b871210
- Add hardened build.
b871210
cc89cae
* Mon Feb 13 2012 Jon Ciesla <limburgher@gmail.com> 2.2.2-4
cc89cae
- Use PrivateTmp=true, BZ 782522.
cc89cae
Kay Sievers 28f3551
* Wed Feb  8 2012 Kay Sievers <kay@redhat.com> - 2.2.2-3
Kay Sievers 28f3551
- Drop dependency on 'dev' package; it is gone since many years
Kay Sievers 28f3551
99d3597
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.2-2
99d3597
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
99d3597
834c613
* Fri Dec 23 2011 Jon Ciesla <limburgher@gmail.com> 2.2.2-1
834c613
- Update to 2.2.2.
834c613
8b3e151
* Fri Sep  9 2011 Tom Callaway <spot@fedoraproject.org> 2.2.1-2
8b3e151
- convert to systemd
8b3e151
Jon Ciesla 5127293
* Fri Jul 08 2011 Jon Ciesla <limb@jcomserv.net> 2.2.1-1
Jon Ciesla 5127293
- Update to 2.2.1.
Jon Ciesla 5127293
Jon Ciesla 83327cf
* Fri Jun 17 2011 Jon Ciesla <limb@jcomserv.net> 2.2.0-2
Jon Ciesla 83327cf
- Bump and rebuild for BZ 712251.
Jon Ciesla 83327cf
Jon Ciesla 9a96fb3
* Thu May 19 2011 Jon Ciesla <limb@jcomserv.net> 2.2.0-1
Jon Ciesla 9a96fb3
- Update to 2.2.0.
Jon Ciesla 9a96fb3
Jon Ciesla f49c6db
* Thu Mar 17 2011 Jon Ciesla <limb@jcomserv.net> 2.1.4-1
Jon Ciesla f49c6db
- Update to 2.1.4.
Jon Ciesla f49c6db
c0f3785
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.3-2
c0f3785
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c0f3785
Jon Ciesla e415da3
* Thu Oct 07 2010 Jon Ciesla <limb@jcomserv.net> 2.1.3-1
Jon Ciesla e415da3
- Update to 2.1.3.
Jon Ciesla e415da3
Steven Pritchard 212dca3
* Thu Aug 19 2010 Steven Pritchard <steve@kspei.com> 2.1.2-1
Steven Pritchard 212dca3
- Update to 2.1.2.
Steven Pritchard 212dca3
a0543cc
* Mon Jan 04 2010 Jon Ciesla <limb@jcomserv.net> 2.1.1-2
a0543cc
- Fix init script *.sh sourcing, BZ 498348.
a0543cc
- Added init script info block, BZ 392991, BZ 541219.
a0543cc
b466ea7
* Fri Dec 11 2009 Steven Pritchard <steve@kspei.com> 2.1.1-1
b466ea7
- Update to 2.1.1.
b466ea7
7856b87
* Sat Nov 21 2009 Steven Pritchard <steve@kspei.com> 2.1-0.39.rc22
7856b87
- Update to 2.1_rc22.
7856b87
ebf0c10
* Thu Nov 12 2009 Steven Pritchard <steve@kspei.com> 2.1-0.38.rc21
ebf0c10
- Update to 2.1_rc21.
ebf0c10
3a32e51
* Sun Oct 25 2009 Robert Scheck <robert@fedoraproject.org> 2.1-0.37.rc20
3a32e51
- Added script_security initialisation in initscript (#458594 #c20)
3a32e51
50efe3f
* Fri Oct 02 2009 Steven Pritchard <steve@kspei.com> 2.1-0.36.rc20
50efe3f
- Update to 2.1_rc20.
50efe3f
0582bf1
* Sun Sep 06 2009 Kalev Lember <kalev@smartlink.ee> - 2.1-0.35.rc19
0582bf1
- Update to 2.1_rc19
0582bf1
- Build with pkcs11-helper
0582bf1
ea30305
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.1-0.34.rc15
ea30305
- rebuilt with new openssl
ea30305
f45c916
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1-0.33.rc15
f45c916
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f45c916
6197d9c
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1-0.32.rc15
6197d9c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
6197d9c
85b7f82
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> 2.1-0.31.rc15
85b7f82
- rebuild with new openssl
85b7f82
03e60ef
* Thu Dec 11 2008 Steven Pritchard <steve@kspei.com> 2.1-0.30.rc15
03e60ef
- Attempt to fix BZ#476129.
03e60ef
03e60ef
* Sat Nov 29 2008 Robert Scheck <robert@fedoraproject.org> 2.1-0.29.rc15
d291b71
- Update to 2.1_rc15
d291b71
03e60ef
* Wed Aug 13 2008 Steven Pritchard <steve@kspei.com> 2.1-0.28.rc9
8bfe673
- Add "--script-security 2" by default for backwards compatibility
8bfe673
  (see bug #458594).
8bfe673
479939e
* Fri Aug 01 2008 Steven Pritchard <steve@kspei.com> 2.1-0.27.rc9
479939e
- Update to 2.1_rc9.
479939e
6fa9826
* Sat Jun 14 2008 Steven Pritchard <steve@kspei.com> 2.1-0.26.rc8
6fa9826
- Update to 2.1_rc8.
6fa9826
- Update License tag.
6fa9826
4eb43a8
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.1-0.25.rc7
4eb43a8
- Autorebuild for GCC 4.3
4eb43a8
b0115e9
* Tue Jan 29 2008 Steven Pritchard <steve@kspei.com> 2.1-0.24.rc7
b0115e9
- Update to 2.1_rc7
b0115e9
- Drop BETA21-userpriv-fixups.patch (upstream)
b0115e9
9f1c9a4
* Fri Jan 25 2008 Steven Pritchard <steve@kspei.com> 2.1-0.23.rc6
9f1c9a4
- Apply update to BETA21-userpriv-fixups.patch from Alon Bar-Lev
9f1c9a4
1a06dfe
* Thu Jan 24 2008 Steven Pritchard <steve@kspei.com> 2.1-0.22.rc6
1a06dfe
- Update to 2.1_rc6
1a06dfe
- Pass paths to ifconfig, ip, and route to configure
69624a3
- BR iproute and Require iproute and net-tools
7ebae03
- Add BETA21-userpriv-fixups.patch from Alon Bar-Lev
1a06dfe
9382402
* Wed Jan 23 2008 Steven Pritchard <steve@kspei.com> 2.1-0.21.rc5
9382402
- Update to 2.1_rc5
9382402
707ab0b
* Wed Dec 05 2007 Steven Pritchard <steve@kspei.com> 2.1-0.20.rc4
707ab0b
- Remove check macro cruft.
707ab0b
786ab96
* Thu Apr 26 2007 Steven Pritchard <steve@kspei.com> 2.1-0.19.rc4
786ab96
- Update to 2.1_rc4
786ab96
7ae94eb
* Mon Apr 23 2007 Steven Pritchard <steve@kspei.com> 2.1-0.18.rc3
7ae94eb
- Update to 2.1_rc3
7ae94eb
bd4d703
* Fri Mar 02 2007 Steven Pritchard <steve@kspei.com> 2.1-0.17.rc2
bd4d703
- Update to 2.1_rc2
bd4d703
7995a20
* Tue Feb 27 2007 Steven Pritchard <steve@kspei.com> 2.1-0.16.rc1
7995a20
- Randomize ports for tests to avoid conflicts on the build servers
7995a20
a8c7ba4
* Tue Feb 27 2007 Steven Pritchard <steve@kspei.com> 2.1-0.15.rc1
a8c7ba4
- Update to 2.1_rc1
a8c7ba4
88dd5c5
* Mon Oct 02 2006 Steven Pritchard <steve@kspei.com> 2.1-0.14.beta16
88dd5c5
- Update to 2.1_beta16
88dd5c5
- Drop Paul's patch (in upstream)
88dd5c5
6e18494
* Tue Sep 12 2006 Steven Pritchard <steve@kspei.com> 2.1-0.13.beta15
6e18494
- Update to 2.1_beta15
594712d
- Add openvpn-2.1_beta15-test-timeout.patch to avoid test hang
594712d
  (from Paul Howarth)
6e18494
6e18494
* Mon Aug 28 2006 Steven Pritchard <steve@kspei.com> 2.1-0.12.beta14
cb24e88
- Rebuild
cb24e88
285a654
* Mon Jul 31 2006 Steven Pritchard <steve@kspei.com> 2.1-0.11.beta14
285a654
- Rebuild
285a654
33ffaef
* Fri Apr 14 2006 Steven Pritchard <steve@kspei.com> 2.1-0.10.beta14
33ffaef
- Update to 2.1_beta14
33ffaef
7a1d925
* Wed Apr 12 2006 Steven Pritchard <steve@kspei.com> 2.1-0.9.beta13
7a1d925
- Update to 2.1_beta13
7a1d925
6b33c0d
* Wed Apr 05 2006 Steven Pritchard <steve@kspei.com> 2.1-0.8.beta12
6b33c0d
- Update to 2.1_beta12 (BZ#188050/CVE-2006-1629)
6b33c0d
273c1bc
* Tue Feb 21 2006 Steven Pritchard <steve@kspei.com> 2.1-0.7.beta11
273c1bc
- Update to 2.1_beta11
273c1bc
f7be734
* Tue Feb 14 2006 Steven Pritchard <steve@kspei.com> 2.1-0.6.beta8
f7be734
- Update to 2.1_beta8
f7be734
89ad969
* Wed Jan 04 2006 Steven Pritchard <steve@kspei.com> 2.1-0.5.beta7
89ad969
- Man page shouldn't be executable (BZ#176953)
89ad969
c93cfcc
* Tue Dec 06 2005 Steven Pritchard <steve@kspei.com> 2.1-0.4.beta7
c93cfcc
- Rebuild
c93cfcc
3816f8f
* Fri Nov 18 2005 Steven Pritchard <steve@kspei.com> 2.1-0.3.beta7
3816f8f
- Update to 2.1_beta7
3816f8f
2fc8e30
* Tue Nov 08 2005 Steven Pritchard <steve@kspei.com> 2.1-0.2.beta6
2fc8e30
- Make sample-scripts (etc.) non-executable to avoid some dependencies
2fc8e30
b705584
* Wed Nov 02 2005 Steven Pritchard <steve@kspei.com> 2.1-0.1.beta6
b705584
- Update to 2.1_beta6
b705584
38a33b7
* Mon Oct 17 2005 Steven Pritchard <steve@kspei.com> 2.1-0.1.beta4
38a33b7
- Update to 2.1_beta4
38a33b7
347a608
* Thu Aug 25 2005 Steven Pritchard <steve@kspei.com> 2.0.2-1
347a608
- Update to 2.0.2
347a608
- Refine roadwarrior-server.conf a bit
347a608
6f80732
* Mon Aug 22 2005 Steven Pritchard <steve@kspei.com> 2.0.1-1
6f80732
- Update to 2.0.1
6f80732
170f728
* Mon Jun 27 2005 Steven Pritchard <steve@kspei.com> 2.0-2
170f728
- Move the plugin directory to _libdir
170f728
- Drop the easy-rsa/Windows directory
170f728
- Comment cleanups
170f728
- Add "processname" header to init script
fdf2e0f
- The init script isn't a config file
58a61c5
- Tag contrib, sample-config-files, sample-keys, and sample-scripts as doc
a1419ca
- Create/own pid dir
170f728
5994929
* Sat Jun 25 2005 Steven Pritchard <steve@kspei.com> 2.0-1
5994929
- Update to 2.0 final
5994929
- Drop Epoch: 0 and rebuild for Fedora Extras
5994929
5994929
* Wed Feb 16 2005 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.14.rc13
5994929
- Fix/add paths to useradd
5994929
5994929
* Mon Feb 14 2005 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.13.rc13
5994929
- Update to 2.0_rc13
5994929
- More spec cleanup (suggestions from Matthias Saou)
5994929
5994929
* Tue Feb 08 2005 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.12.rc12
5994929
- Update to 2.0_rc12
5994929
- Small spec cleanups
5994929
- Drop perl auto-requirements entirely
5994929
5994929
* Mon Dec 20 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.11.rc6
5994929
- Add down-root and auth-pam plugins
5994929
- Add --enable-password-save and --enable-iproute2
5994929
- Add crypto and loopback tests (somewhat time-consuming)
5994929
5994929
* Thu Dec 16 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.10.rc5
5994929
- Update to 2.0_rc5
5994929
- Change the port to 1194 in the roadwarrior-*.conf samples
5994929
- Change openvpn-init.patch to reformat the description in the init script
5994929
- Modify the Summary and description (OpenVPN isn't UDP-only)
5994929
5994929
* Tue Dec 14 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.9.rc1
5994929
- Remove the perl(Authen::PAM) dependency
5994929
5994929
* Thu Dec 09 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.8.rc1
5994929
- Update to 2.0_rc1
5994929
5994929
* Tue Nov 16 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.7.beta17
5994929
- Update to 2.0_beta17
5994929
- Require dev instead of /dev/net/tun (for udev compatibility)
5994929
- Change openvpn-init.patch to match upstream (starts even earlier now)
5994929
5994929
* Wed Aug 04 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.6.beta10
5994929
- Remove unnecessary BuildRequires: kernel-headers
5994929
5994929
* Tue Aug 03 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.5.beta10
5994929
- Update to 2.0_beta10
5994929
- Minor fix to configuration example
5994929
- Change the init script to start a little earlier and stop much later
5994929
  (after netfs) by default
5994929
- Remove a lot of unnecessary macro use (install/mkdir/cp)
5994929
- Don't create /dev/net/tun, use Requires instead
5994929
5994929
* Sat Jul 17 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.4.beta7
5994929
- Update to 2.0_beta7
5994929
- Include gpg signature in source rpm
5994929
- Include 2.0-style configuration examples
5994929
- Minor spec cleanup
5994929
5994929
* Wed Apr 28 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.3.test23
5994929
- Add openvpn-init.patch to leave the init script disabled by default
5994929
5994929
* Wed Apr 28 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.2.test23
5994929
- Fix URL and Source0
5994929
- Add an openvpn user
5994929
5994929
* Wed Apr 28 2004 Steven Pritchard <steve@kspei.com> 0:2.0-0.fdr.0.1.test23
5994929
- Update to 2.0_test23
5994929
- BuildRequires lzo-devel, kernel-headers, openssl-devel
5994929
- Lots of spec cleanup
5994929
5994929
* Sun Feb 23 2003 Matthias Andree <matthias.andree@gmx.de> 1.3.2.14-1
5994929
- Have the version number filled in by autoconf.
5994929
5994929
* Wed Jul 10 2002 James Yonan <jim@yonan.net> 1.3.1-1
479939e
- Fixed %%preun to only remove service on final uninstall
5994929
5994929
* Mon Jun 17 2002 bishop clark (LC957) <bishop@platypus.bc.ca> 1.2.2-1
5994929
- Added condrestart to openvpn.spec & openvpn.init.
5994929
5994929
* Wed May 22 2002 James Yonan <jim@yonan.net> 1.2.0-1
5994929
- Added mknod for Linux 2.4.
5994929
5994929
* Wed May 15 2002 Doug Keller <dsk@voidstar.dyndns.org> 1.1.1.16-2
5994929
- Added init scripts
5994929
- Added conf file support
5994929
5994929
* Mon May 13 2002 bishop clark (LC957) <bishop@platypus.bc.ca> 1.1.1.14-1
5994929
- Added new directories for config examples and such
5994929
5994929
* Sun May 12 2002 bishop clark (LC957) <bishop@platypus.bc.ca> 1.1.1.13-1
5994929
- Updated buildroot directive and cleanup command
5994929
- added easy-rsa utilities
5994929
5994929
* Mon Mar 25 2002 bishop clark (LC957) <bishop@platypus.bc.ca> 1.0-1
5994929
- Initial build.