X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=README.markdown;h=4ca99bbe3a6dbdcb8cbe17d61d31dfb8389b2d93;hb=4ab2b0cf3a3ce6287cc6336a2e3f125fd0f98bb1;hp=070ca6248e0dd89b4f79c64edc78d82c49484009;hpb=39f7ecfdcecd7ede2525c1b3418ecc0772937ca8;p=integration%2Fpackaging%2Fpuppet-opendaylight.git diff --git a/README.markdown b/README.markdown index 070ca62..4ca99bb 100644 --- a/README.markdown +++ b/README.markdown @@ -96,7 +96,7 @@ OpenDaylight is installed from. ```puppet class { 'opendaylight': - rpm_repo => 'https://nexus.opendaylight.org/content/repositories/opendaylight-fluorine-epel-7-$basearch-devel', + rpm_repo => 'https://nexus.opendaylight.org/content/repositories/opendaylight-neon-epel-7-$basearch-devel', } ``` @@ -359,6 +359,33 @@ Default: `%d{ISO8601} | %-5p | %-16t | %-60c{6} | %m%n` Valid options: A valid string that is a valid log4j2 pattern. +##### `enable_paxosgi_logger` + +Boolean that controls whether the PaxOsgi appender is enabled for logging. + +Note that enabling this will also require to modify the log pattern to +make use of the added capabilities. To do so the variable `log_pattern` should +be overriden to include a pattern that includes the tokens that PaxOsgi adds. + +This could be achieving, for example, by setting `log_pattern` to a string +that includes: + +'%X{bundle.id} - %X{bundle.name} - %X{bundle.version}' + +Failure to change the `log_pattern` will mean that the PaxOsgi appender will +be enabled but the added functionality not used on the logging. This has no +negative effect on the system and it will continue to run, just it will not +include the added information one could get from PaxOsgi. + +A good example would be to set this variable to `true` and set `log_pattern` +to: + +'%d{ISO8601} | %-5p | %-16t | %-32c{1} | %X{bundle.id} - %X{bundle.name} - %X{bundle.version} | %m%n' + +Default: `false` + +Valid options: The boolean values `true` and `false`. + ##### `enable_ha` Enable or disable ODL High Availablity.