From 558a976c6cb0e01ed82c6f08b94eefccacbc64eb Mon Sep 17 00:00:00 2001 From: ummeegge Date: Wed, 18 Nov 2020 15:10:38 +0000 Subject: [PATCH] OpenVPN: Update to version 2.5.0 - Update works with two warnings. 1) --ncp-disable needs to be changed to --data-ciphers . 2) --topology net30 needs to be replaced with --topology subnet . Both changes have time until 2.6.0 . - Should we change to "Netlink support" --> https://github.com/OpenVPN/openvpn/blob/master/Changes.rst#new-features-1 by disable --enable-iproute2 ? Signed-off-by: ummeegge --- config/rootfiles/common/openvpn | 1 - lfs/openvpn | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/config/rootfiles/common/openvpn b/config/rootfiles/common/openvpn index 547842db3d..41ccc885e6 100644 --- a/config/rootfiles/common/openvpn +++ b/config/rootfiles/common/openvpn @@ -19,7 +19,6 @@ usr/sbin/openvpn #usr/share/doc/openvpn/README.down-root #usr/share/doc/openvpn/README.mbedtls #usr/share/doc/openvpn/management-notes.txt -#usr/share/man/man8/openvpn.8 var/ipfire/ovpn/ca var/ipfire/ovpn/caconfig var/ipfire/ovpn/ccd diff --git a/lfs/openvpn b/lfs/openvpn index 779bf5520c..d564708264 100644 --- a/lfs/openvpn +++ b/lfs/openvpn @@ -24,7 +24,7 @@ include Config -VER = 2.4.9 +VER = 2.5.0 THISAPP = openvpn-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = 446df6dc29364d00929ea9c725412cb8 +$(DL_FILE)_MD5 = ba426e2217833b522810d6c06f7cc8f7 install : $(TARGET) @@ -73,7 +73,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && ./configure \ --prefix=/usr \ --sysconfdir=/var/ipfire/ovpn \ - --enable-iproute2 \ --enable-plugins \ --enable-plugin-auth-pam \ --enable-plugin-down-root -- 2.47.2