net/radsecproxy: wrong pid file location; closes #3437

This commit is contained in:
Franco Fichtner 2023-05-12 11:35:16 +02:00
parent ec4d29100c
commit 08144eda8b
2 changed files with 2 additions and 9 deletions

View file

@ -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

View file

@ -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;