1649ed1725
Since the rootwrap code was graduated to a separate library, This change completes one from oslo-incubator: Backport 'ident' from python 3.3 for Oslo's SysLogHandler (with commit 79e8a9a08daf563aa8a8d9280c9a6a27dcafc8f2) To honor RFC5424 add use_syslog_rfc_format config option (default False, would be deprecated in J after existing syslog format deprecation) which adds APP-NAME to syslog message before MSG part to reflect application or service name. Usable only with use_syslog, otherwise ignored. During J, the default logging format for syslog should be changed to always provide APP-NAME, thus use_syslog_rfc_format could be deprecated in J as well. Closes-bug: #904307 Change-Id: Icff9db07d543738e092a8826e8a0d2e4b213fc38 Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
# Configuration for rootwrap
|
|
# This file should be owned by (and only-writeable by) the root user
|
|
|
|
[DEFAULT]
|
|
# List of directories to load filter definitions from (separated by ',').
|
|
# These directories MUST all be only writeable by root !
|
|
filters_path=/etc/oslo-rootwrap/filters.d,/usr/share/oslo-rootwrap
|
|
|
|
# List of directories to search executables in, in case filters do not
|
|
# explicitly specify a full path (separated by ',')
|
|
# If not specified, defaults to system PATH environment variable.
|
|
# These directories MUST all be only writeable by root !
|
|
exec_dirs=/sbin,/usr/sbin,/bin,/usr/bin
|
|
|
|
# Enable logging to syslog
|
|
# Default value is False
|
|
use_syslog=False
|
|
|
|
# Enable RFC5424 compliant format for syslog (add APP-NAME before MSG part)
|
|
# Default value is False - no format changes
|
|
# TODO(bogdando) remove or use True after existing syslog format deprecation in J
|
|
use_syslog_rfc_format=False
|
|
|
|
# Which syslog facility to use.
|
|
# Valid values include auth, authpriv, syslog, user0, user1...
|
|
# Default value is 'syslog'
|
|
syslog_log_facility=syslog
|
|
|
|
# Which messages to log.
|
|
# INFO means log all usage
|
|
# ERROR means only log unsuccessful attempts
|
|
syslog_log_level=ERROR
|