(tinc) hook in xmlrpc sync

This commit is contained in:
Ad Schellevis 2016-11-22 21:10:49 +01:00
parent ae7b41b2a7
commit 542dd642d3

View file

@ -97,3 +97,13 @@ function tinc_interfaces()
return $interfaces;
}
function tinc_xmlrpc_sync()
{
$result = array();
$result['id'] = 'tincvpn';
$result['section'] = 'OPNsense.Tinc';
$result['description'] = 'Tinc VPN';
$result['help'] = gettext('Synchronize Tinc VPN settings to backup');
return array($result);
}