radiusclient/fsl.radiusclient

Sat, 03 Oct 2009 16:18:52 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Oct 2009 16:18:52 +0200
changeset 220
a6cd892638c1
permissions
-rw-r--r--

Update version, adjust corresponding buildconf, and correct logic.
1: Make minor corrections and improvements to scripts patch logic.
2: Upgrade to most recent stable release version 3.0.2.
3: Force selection of a single db backend, as multiple ones never
were supported (changing 'with_db<end>' identifiers accordingly.)
4: Unfortunately add gawk requirement although only partly needed.
5: Add openssl::with_threads requirement to solve strange and hard
to debug problems on Solaris leading to connection failures:

'host-dir JobId 0: Error: openssl.c:86 Connect failure: ERR=error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number'

and

'host-dir JobId 40: Fatal error: TLS negotiation failed with FD at "back1.host.com:9102"'

michael@18 1 ##
michael@18 2 ## fsl.arpwatch -- OSSP fsl configuration
michael@18 3 ##
michael@18 4
michael@18 5 ident (radexample)/.+ q{
michael@18 6 prefix(
michael@18 7 prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
michael@18 8 )
michael@18 9 -> {
michael@18 10 debug: file(
michael@18 11 path="@l_prefix@/var/radiusclient/radexample.log",
michael@18 12 perm=0644
michael@18 13 )
michael@18 14 }
michael@18 15 };
michael@18 16
michael@18 17 ident (radlogin)/.+ q{
michael@18 18 prefix(
michael@18 19 prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
michael@18 20 )
michael@18 21 -> {
michael@18 22 debug: file(
michael@18 23 path="@l_prefix@/var/radiusclient/radlogin.log",
michael@18 24 perm=0644
michael@18 25 )
michael@18 26 }
michael@18 27 };
michael@18 28
michael@18 29 ident (radstatus)/.+ q{
michael@18 30 prefix(
michael@18 31 prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
michael@18 32 )
michael@18 33 -> {
michael@18 34 debug: file(
michael@18 35 path="@l_prefix@/var/radiusclient/radstatus.log",
michael@18 36 perm=0644
michael@18 37 )
michael@18 38 }
michael@18 39 };
michael@18 40
michael@18 41 ident (radacct)/.+ q{
michael@18 42 prefix(
michael@18 43 prefix="%b %d %H:%M:%S %N <%L> $1[%P]: "
michael@18 44 )
michael@18 45 -> {
michael@18 46 debug: file(
michael@18 47 path="@l_prefix@/var/radiusclient/radacct.log",
michael@18 48 perm=0644
michael@18 49 )
michael@18 50 }
michael@18 51 };
michael@18 52

mercurial