diff options
author | ivan <ivan> | 2008-10-24 19:54:11 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-10-24 19:54:11 +0000 |
commit | 1b7db3fe3d9049141a13721d658747fe2a006859 (patch) | |
tree | 366e8685965388f8bfe0aba3c476fa2d91104bb1 /fs_selfservice/FS-SelfService/SelfService/FreeRadiusVoip.pm | |
parent | 4508c78eebec13288ab9f93425fa9714133e0a6d (diff) |
rlm_perl hook for prepaid voip radius, RT#4100
Diffstat (limited to 'fs_selfservice/FS-SelfService/SelfService/FreeRadiusVoip.pm')
-rw-r--r-- | fs_selfservice/FS-SelfService/SelfService/FreeRadiusVoip.pm | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/fs_selfservice/FS-SelfService/SelfService/FreeRadiusVoip.pm b/fs_selfservice/FS-SelfService/SelfService/FreeRadiusVoip.pm index 0ab4f1456..47a2bfa78 100644 --- a/fs_selfservice/FS-SelfService/SelfService/FreeRadiusVoip.pm +++ b/fs_selfservice/FS-SelfService/SelfService/FreeRadiusVoip.pm @@ -1,7 +1,9 @@ -# Add this to the modules section of radiusd.conf -# #path to this module -# module=/usr/local/share/perl/5.8.8/FS/SelfService/FreeRadiusVoip.pm -# func_autheenticate = authenticate +#Add this to the modules section of radiusd.conf +# perl { +# #path to this module +# module=/usr/local/share/perl/5.8.8/FS/SelfService/FreeRadiusVoip.pm +# func_authenticate = authenticate +# } # #In the Authorize section #Make sure that you have 'files' uncommented. Then add a line containing 'perl' @@ -18,6 +20,11 @@ # and then add # DEFAULT Auth-Type = Perl # Fall-Through = 1 +# +# and on debian systems, add this to /etc/init.d/freeradius, with the +# correct path (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=416266) +# LD_PRELOAD=/usr/lib/libperl.so.5.8.8 +# export LD_PRELOAD BEGIN { $FS::SelfService::skip_uid_check = 1; } |