mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
net/radsecproxy: wrong pid file location; closes #3437
This commit is contained in:
parent
ec4d29100c
commit
08144eda8b
2 changed files with 2 additions and 9 deletions
|
|
@ -1,5 +1,6 @@
|
|||
PLUGIN_NAME= radsecproxy
|
||||
PLUGIN_VERSION= 1.0
|
||||
PLUGIN_REVISION= 1
|
||||
PLUGIN_COMMENT= RADIUS proxy provides both RADIUS UDP and TCP/TLS (RadSec) transport
|
||||
PLUGIN_DEPENDS= radsecproxy
|
||||
PLUGIN_MAINTAINER= tobias@boehnert.dev
|
||||
|
|
|
|||
|
|
@ -37,14 +37,6 @@ function radsecproxy_enabled()
|
|||
|
||||
function radsecproxy_syslog()
|
||||
{
|
||||
// $syslogconf = array();
|
||||
|
||||
// $syslogconf['radsecproxy'] = array(
|
||||
// 'facility' => array('radsecproxy'),
|
||||
// );
|
||||
|
||||
// return $syslogconf;
|
||||
|
||||
$logfacilities = array();
|
||||
$logfacilities['radsecproxy'] = array(
|
||||
'facility' => array('LOG_DAEMON'),
|
||||
|
|
@ -66,7 +58,7 @@ function radsecproxy_services()
|
|||
'stop' => array('radsecproxy stop'),
|
||||
),
|
||||
'name' => 'radsecproxy',
|
||||
'pidfile' => '/var/run/radsecproxy/radsecproxy.pid'
|
||||
'pidfile' => '/var/run/radsecproxy.pid'
|
||||
);
|
||||
}
|
||||
return $services;
|
||||
|
|
|
|||
Loading…
Reference in a new issue