diff --git a/net/freeradius/Makefile b/net/freeradius/Makefile index 1c54bc9fa..2faab42f6 100644 --- a/net/freeradius/Makefile +++ b/net/freeradius/Makefile @@ -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 diff --git a/net/freeradius/pkg-descr b/net/freeradius/pkg-descr index b5e7b176f..29fb02263 100644 --- a/net/freeradius/pkg-descr +++ b/net/freeradius/pkg-descr @@ -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) diff --git a/net/freeradius/src/etc/inc/plugins.inc.d/freeradius.inc b/net/freeradius/src/etc/inc/plugins.inc.d/freeradius.inc index ab1a54176..88888879e 100644 --- a/net/freeradius/src/etc/inc/plugins.inc.d/freeradius.inc +++ b/net/freeradius/src/etc/inc/plugins.inc.d/freeradius.inc @@ -57,3 +57,10 @@ function freeradius_xmlrpc_sync() $result['services'] = ["freeradius"]; return array($result); } + +function freeradius_syslog() +{ + return [ + 'freeradius' => ['facility' => ['radiusd']] + ]; +}