aboutsummaryrefslogtreecommitdiffstats
path: root/config/freeradius2/freeradius.inc
diff options
context:
space:
mode:
authorAlexander Wilke <nachtfalkeaw@web.de>2012-10-01 12:01:11 -0700
committerAlexander Wilke <nachtfalkeaw@web.de>2012-10-01 12:01:11 -0700
commit438c72341f82830b21cf4c59dad2aa480a2ca6b6 (patch)
tree80eecc36cdb934229f3b397164f0535924944212 /config/freeradius2/freeradius.inc
parent360b9fa1e48221f6b07c3dde8f2b0f757a70f710 (diff)
parent216f21eec749dfa66b4fd7241e0fa8742fcaaa9d (diff)
downloadpfsense-packages-438c72341f82830b21cf4c59dad2aa480a2ca6b6.tar.gz
pfsense-packages-438c72341f82830b21cf4c59dad2aa480a2ca6b6.tar.bz2
pfsense-packages-438c72341f82830b21cf4c59dad2aa480a2ca6b6.zip
Merge pull request #324 from Nachtfalkeaw/master
FreeRADIUS2: New XMLRPC sync options
Diffstat (limited to 'config/freeradius2/freeradius.inc')
-rw-r--r--config/freeradius2/freeradius.inc23
1 files changed, 11 insertions, 12 deletions
diff --git a/config/freeradius2/freeradius.inc b/config/freeradius2/freeradius.inc
index 92ec2e4f..79aaa5bd 100644
--- a/config/freeradius2/freeradius.inc
+++ b/config/freeradius2/freeradius.inc
@@ -2465,25 +2465,24 @@ function freeradius_sync_on_changes() {
return;
}
- log_error("FreeRADIUS: Starting XMLRPC process (freeradius_do_xmlrpc_sync).");
- log_error("FreeRADIUS: Starting XMLRPC with time out: {$varsynctimeout}.");
+ log_error("FreeRADIUS: Starting XMLRPC process (freeradius_do_xmlrpc_sync) with timeout {$varsynctimeout} seconds.");
// if checkbox is checked get IP and password of the destination hosts
foreach ($config['installedpackages']['freeradiussync']['config'] as $rs ){
foreach($rs['row'] as $sh){
// if checkbox is NOT checked do nothing
if($sh['varsyncdestinenable']) {
- $varsyncprotocol = $sh['varsyncprotocol'];
- $sync_to_ip = $sh['varsyncipaddress'];
- $password = $sh['varsyncpassword'];
- $varsyncport = $sh['varsyncport'];
- if($password && $sync_to_ip && $varsyncport && $varsyncprotocol)
+ $varsyncprotocol = $sh['varsyncprotocol'];
+ $sync_to_ip = $sh['varsyncipaddress'];
+ $password = $sh['varsyncpassword'];
+ $varsyncport = $sh['varsyncport'];
+ if($password && $sync_to_ip && $varsyncport && $varsyncprotocol)
freeradius_do_xmlrpc_sync($sync_to_ip, $password, $varsyncport, $varsyncprotocol);
- }
- else {
- log_error("FreeRADIUS: Sync with {$sh['varsyncipaddress']} is disable");
- }
- }
+ }
+ else {
+ log_error("FreeRADIUS: XMLRPC Sync with {$sh['varsyncipaddress']} is disabled");
+ }
+ }
}
log_error("FreeRADIUS: Finished XMLRPC process (freeradius_do_xmlrpc_sync).");
}