mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
net/freeradius: Add HA config sync (#2300)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user