From 0ea5f4c6e64b3cead014c01ac4cb0f01f8582060 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Wed, 23 Nov 2022 11:05:03 +0100 Subject: [PATCH] net/wireguard: make kmod default for 23.1, add go package Discussed with @mimugmail -- only needs proper service check for kmod variant as that has no PID to latch on to. --- net/wireguard/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/net/wireguard/Makefile b/net/wireguard/Makefile index 3b8d3acfe..ec0622c2f 100644 --- a/net/wireguard/Makefile +++ b/net/wireguard/Makefile @@ -2,7 +2,13 @@ PLUGIN_NAME= wireguard PLUGIN_VERSION= 1.13 PLUGIN_REVISION= 1 PLUGIN_COMMENT= WireGuard VPN service -PLUGIN_DEPENDS= wireguard-go wireguard-tools +PLUGIN_DEPENDS= wireguard-tools PLUGIN_MAINTAINER= m.muenz@gmail.com +PLUGIN_VARIANTS= kmod go + +kmod_NAME= wireguard + +go_NAME= wireguard-go +go_DEPENDS= wireguard-go .include "../../Mk/plugins.mk"