17 Feb
2010
17 Feb
'10
1:55 a.m.
David Donn wrote:
I want to set up some config parameters for use in my perl module. I think these are supposed to be in the RAD_CONFIG hash. But this hash always seems to be empty.
That hash is per-request configuration. i.e. authentication type, etc.
My rlm_perl config file (from /etc/raddb/modules): perl example {
module = ${confdir}/example.pl
foo = bar
}
My perl code (example.pl): use strict; ... # doesn't print anything, expected it to print "module = /etc/raddb/example.pl" and "foo = bar" foreach my $k (keys %RAD_CONFIG) {
You cannot access the configuration files from rlm_perl. Try describing a problem rather than a solution. Maybe there's another solution that works. Alan DeKok.