dhcpd/fsl.dhcpd

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

mercurial