From 4f9e0308990626ed3e50db5822c5374f182aba1c Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Sat, 14 Sep 2024 13:16:04 +0200 Subject: [PATCH] net/zerotier: spoofmac is not supported here PR: https://forum.opnsense.org/index.php?topic=42798.0 --- net/zerotier/Makefile | 2 +- net/zerotier/src/etc/inc/plugins.inc.d/zerotier.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/zerotier/Makefile b/net/zerotier/Makefile index 101ec5385..aad751c0a 100644 --- a/net/zerotier/Makefile +++ b/net/zerotier/Makefile @@ -1,6 +1,6 @@ PLUGIN_NAME= zerotier PLUGIN_VERSION= 1.3.2 -PLUGIN_REVISION= 4 +PLUGIN_REVISION= 5 PLUGIN_COMMENT= Virtual Networks That Just Work PLUGIN_DEPENDS= zerotier PLUGIN_MAINTAINER= dharrigan@gmail.com diff --git a/net/zerotier/src/etc/inc/plugins.inc.d/zerotier.inc b/net/zerotier/src/etc/inc/plugins.inc.d/zerotier.inc index b325c637b..68d740538 100644 --- a/net/zerotier/src/etc/inc/plugins.inc.d/zerotier.inc +++ b/net/zerotier/src/etc/inc/plugins.inc.d/zerotier.inc @@ -62,5 +62,5 @@ function zerotier_services() function zerotier_devices() { - return [['pattern' => '^zt', 'volatile' => true]]; + return [['pattern' => '^zt', 'spoofmac' => false, 'volatile' => true]]; }