diff options
author | Stepan Henek <stepan.henek@nic.cz> | 2021-04-25 23:32:29 +0200 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-10-18 12:14:36 -1000 |
commit | c4e994011f56d30e031705c16c6b5c498c530852 (patch) | |
tree | cfcca3ea674f645e639cd2caef5b589ac189f4ef /package/network/utils/wireguard-tools/Makefile | |
parent | dbb0019cbef43c6ce5d02a52bfe662d2217ce603 (diff) | |
download | upstream-c4e994011f56d30e031705c16c6b5c498c530852.tar.gz upstream-c4e994011f56d30e031705c16c6b5c498c530852.tar.bz2 upstream-c4e994011f56d30e031705c16c6b5c498c530852.zip |
wireguard-tools: add uci option to disable wireguard peers
Right now when I want to temporarily disable wg peer I need to delete
the entire peer section. This is not such a good solution because I
loose the previous configuration of the peer.
This patch adds `disabled` option to peer config which causes that
the config section is ignored.
Signed-off-by: Stepan Henek <stepan.henek@nic.cz>
[use $(AUTORELEASE)]
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'package/network/utils/wireguard-tools/Makefile')
-rw-r--r-- | package/network/utils/wireguard-tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/utils/wireguard-tools/Makefile b/package/network/utils/wireguard-tools/Makefile index 11372f2331..717ec2bbb1 100644 --- a/package/network/utils/wireguard-tools/Makefile +++ b/package/network/utils/wireguard-tools/Makefile @@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=wireguard-tools PKG_VERSION:=1.0.20210424 -PKG_RELEASE:=1 +PKG_RELEASE:=$(AUTORELEASE) PKG_SOURCE:=wireguard-tools-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://git.zx2c4.com/wireguard-tools/snapshot/ |