OpenVPN: Update to version 2.3.11.
Message ID | 1467042197-28617-1-git-send-email-erik.kapfer@ipfire.org |
---|---|
State | Dropped |
Headers |
Return-Path: <development-bounces@lists.ipfire.org> Received: from mail01.ipfire.org (hedwig.ipfire.org [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id 0FE8561C24 for <patchwork@ipfire.org>; Mon, 27 Jun 2016 17:43:57 +0200 (CEST) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 6FFA3111; Mon, 27 Jun 2016 17:43:56 +0200 (CEST) Received: from ipfire-server.local (p4FD0E959.dip0.t-ipconnect.de [79.208.233.89]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 0C566D5; Mon, 27 Jun 2016 17:43:53 +0200 (CEST) From: Erik Kapfer <erik.kapfer@ipfire.org> To: development@lists.ipfire.org Subject: [PATCH] OpenVPN: Update to version 2.3.11. Date: Mon, 27 Jun 2016 17:43:17 +0200 Message-Id: <1467042197-28617-1-git-send-email-erik.kapfer@ipfire.org> X-Mailer: git-send-email 2.7.4 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: IPFire development talk <development.lists.ipfire.org> List-Unsubscribe: <http://lists.ipfire.org/mailman/options/development>, <mailto:development-request@lists.ipfire.org?subject=unsubscribe> List-Archive: <http://lists.ipfire.org/pipermail/development/> List-Post: <mailto:development@lists.ipfire.org> List-Help: <mailto:development-request@lists.ipfire.org?subject=help> List-Subscribe: <http://lists.ipfire.org/mailman/listinfo/development>, <mailto:development-request@lists.ipfire.org?subject=subscribe> Errors-To: development-bounces@lists.ipfire.org Sender: "Development" <development-bounces@lists.ipfire.org> |
Message
Erik Kapfer
June 28, 2016, 1:43 a.m. UTC
The enable-password-save option has been removed with enable_password_save=yes .
Signed-off-by: Erik Kapfer <erik.kapfer@ipfire.org>
---
lfs/openvpn | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Comments
Hi all, this update includes improvements but also some security related fixes. Changelog can be overviewed in here --> https://community.openvpn.net/openvpn/wiki/ChangesInOpenvpn23#OpenVPN2.3.11 . Please keep in mind that the current OpenVPN version on IPFire is 2.3.7 , this update includes OpenVPN version 2.3.11 . The "--enable-password-save" option has been changed to "enable_password_save=yes" which is also included in this patch. Have made some tests with the via-env method like described in here --> http://forum.ipfire.org/viewtopic.php?t=5995#p41498 which seems to work without problems. Sources has been uploaded. Greetings, Erik Am 27.06.2016 um 17:43 schrieb Erik Kapfer <erik.kapfer@ipfire.org>: > The enable-password-save option has been removed with enable_password_save=yes . > > Signed-off-by: Erik Kapfer <erik.kapfer@ipfire.org> > --- > lfs/openvpn | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/lfs/openvpn b/lfs/openvpn > index 96e37f7..10934fc 100644 > --- a/lfs/openvpn > +++ b/lfs/openvpn > @@ -1,7 +1,7 @@ > ############################################################################### > # # > # IPFire.org - A linux based firewall # > -# Copyright (C) 2015 IPFire Team <info@ipfire.org> # > +# Copyright (C) 2016 IPFire Team <info@ipfire.org> # > # # > # This program is free software: you can redistribute it and/or modify # > # it under the terms of the GNU General Public License as published by # > @@ -24,7 +24,7 @@ > > include Config > > -VER = 2.3.7 > +VER = 2.3.11 > > THISAPP = openvpn-$(VER) > DL_FILE = $(THISAPP).tar.xz > @@ -40,7 +40,7 @@ objects = $(DL_FILE) > > $(DL_FILE) = $(DL_FROM)/$(DL_FILE) > > -$(DL_FILE)_MD5 = 5b819f7cd0b875f55f20a947224967aa > +$(DL_FILE)_MD5 = fe17a25235d65e60af8986c6c78c4650 > > install : $(TARGET) > > @@ -74,7 +74,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) > --prefix=/usr \ > --sysconfdir=/var/ipfire/ovpn \ > --enable-iproute2 \ > - --enable-password-save \ > + enable_password_save=yes \ > --enable-plugins \ > --enable-plugin-auth-pam \ > --enable-plugin-down-root > -- > 2.7.4 >