dhcpd/fsl.dhcpd

Thu, 09 Aug 2012 00:41:14 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 09 Aug 2012 00:41:14 +0200
changeset 495
01294b31a79e
permissions
-rw-r--r--

Introduce a lot of changes to correct source and build logic including:
Correct URLs, reorder existing patch hunks, update vendor version and
patch accordingly, integrate optional SQLite storage, modernize package
(remove boilerplate RPM logic), correct preprocessor definitions as
NIS+was removed from Solaris 11, use parallel make, improve configuration
spacing and whitespace, and remove now uneeded postfix-script(1) and
post-install(1) relocation.

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