XMLRPC / HA sync - remove services from filter_configure_xmlrpc. closes https://github.com/opnsense/core/issues/4771

o add dpinger to routing, missed a spot there
This commit is contained in:
Ad Schellevis 2021-04-22 12:06:05 +02:00
parent a9a844148d
commit 08dcb63b0d
2 changed files with 1 additions and 6 deletions

View File

@ -383,7 +383,7 @@ function core_xmlrpc_sync()
'help' => gettext('Synchronize the Static Route configuration and Gateways to the other HA host.'),
'section' => 'staticroutes,gateways',
'id' => 'staticroutes',
'services' => ["routing"],
'services' => ["routing", "dpinger"],
);
$result[] = array(
'description' => gettext('Network Time'),

View File

@ -123,13 +123,8 @@ function filter_configure_xmlrpc()
require_once("interfaces.inc");
system_routing_configure();
plugins_configure('monitor');
filter_configure();
system_hosts_generate();
local_sync_accounts();
plugins_configure('dhcp');
plugins_configure('dns');
plugins_configure('remote');
return true;
}