net/tayga: interface registration

This commit is contained in:
Franco Fichtner
2023-02-01 11:38:42 +01:00
parent d1a17b7650
commit 108525e89c
2 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
PLUGIN_NAME= tayga
PLUGIN_VERSION= 1.2
PLUGIN_REVISION= 1
PLUGIN_REVISION= 2
PLUGIN_COMMENT= Tayga NAT64
PLUGIN_DEPENDS= tayga
PLUGIN_MAINTAINER= m.muenz@gmail.com
@@ -36,4 +36,13 @@ class ServiceController extends ApiMutableServiceControllerBase
protected static $internalServiceTemplate = 'OPNsense/Tayga';
protected static $internalServiceEnabled = 'enabled';
protected static $internalServiceName = 'tayga';
/**
* hook group interface registration on reconfigure
* @return bool
*/
protected function invokeInterfaceRegistration()
{
return true;
}
}