net/zerotier: register device from plugin

This commit is contained in:
Franco Fichtner 2022-08-29 09:50:21 +02:00
parent 86135ce282
commit f67b03e0fb
2 changed files with 6 additions and 1 deletions

View file

@ -1,6 +1,6 @@
PLUGIN_NAME= zerotier
PLUGIN_VERSION= 1.3.2
PLUGIN_REVISION= 3
PLUGIN_REVISION= 4
PLUGIN_COMMENT= Virtual Networks That Just Work
PLUGIN_DEPENDS= zerotier
PLUGIN_MAINTAINER= dharrigan@gmail.com

View file

@ -59,3 +59,8 @@ function zerotier_services()
return $services;
}
function zerotier_devices()
{
return [['pattern' => '^zt', 'volatile' => true]];
}