net/freeradius: Add HA config sync (#2300)

This commit is contained in:
Michael
2021-03-28 18:37:46 +02:00
committed by GitHub
parent f557e2b09a
commit 73bc94bd5d
3 changed files with 15 additions and 3 deletions
+1 -2
View File
@@ -1,6 +1,5 @@
PLUGIN_NAME= freeradius
PLUGIN_VERSION= 1.9.9
PLUGIN_REVISION= 1
PLUGIN_VERSION= 1.9.10
PLUGIN_COMMENT= RADIUS Authentication, Authorization and Accounting Server
PLUGIN_DEPENDS= freeradius3
PLUGIN_MAINTAINER= m.muenz@gmail.com
+4
View File
@@ -15,6 +15,10 @@ The server is fast, feature-rich, modular, and scalable.
Plugin Changelog
================
1.9.10
* Add HA config sync
1.9.9
* Create option to set EAP-TTLS-GTC (contributed by Kjeld Schouten-Lebbing)
@@ -1,7 +1,7 @@
<?php
/*
Copyright (C) 2017 Michael Muenz <m.muenz@gmail.com>
Copyright (C) 2017 - 2021 Michael Muenz <m.muenz@gmail.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without
@@ -47,3 +47,12 @@ function freeradius_services()
return $services;
}
function freeradius_xmlrpc_sync()
{
$result = array();
$result['id'] = 'freeradius';
$result['section'] = 'OPNsense.freeradius';
$result['description'] = gettext('Freeradius');
return array($result);
}