diff --git a/net/tayga/Makefile b/net/tayga/Makefile index bc8a613ca..fe232e6ac 100644 --- a/net/tayga/Makefile +++ b/net/tayga/Makefile @@ -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 diff --git a/net/tayga/src/opnsense/mvc/app/controllers/OPNsense/Tayga/Api/ServiceController.php b/net/tayga/src/opnsense/mvc/app/controllers/OPNsense/Tayga/Api/ServiceController.php index 4c82981ce..54288658c 100644 --- a/net/tayga/src/opnsense/mvc/app/controllers/OPNsense/Tayga/Api/ServiceController.php +++ b/net/tayga/src/opnsense/mvc/app/controllers/OPNsense/Tayga/Api/ServiceController.php @@ -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; + } }