net/freeradius: Added remote syslog support (#3990) (#4172)

This commit is contained in:
Philipp Nieting
2024-08-12 10:42:21 +02:00
committed by GitHub
parent 016bf27cb5
commit 1a4a15de1b
3 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
PLUGIN_NAME= freeradius
PLUGIN_VERSION= 1.9.24
PLUGIN_VERSION= 1.9.25
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.25
* Added support for remote syslog
1.9.24
* Allow ":" character in usernames and passwords (contributed by Chris Helming)
@@ -57,3 +57,10 @@ function freeradius_xmlrpc_sync()
$result['services'] = ["freeradius"];
return array($result);
}
function freeradius_syslog()
{
return [
'freeradius' => ['facility' => ['radiusd']]
];
}