summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorBogdan Dobrelya <bdobrelia@mirantis.com>2014-02-24 10:52:16 +0200
committerBogdan Dobrelya <bdobrelia@mirantis.com>2014-02-25 19:18:13 +0200
commit1649ed17252160b5f50bd7e500f9b243a14bd8e7 (patch)
tree7215456c1e2ed0a73bfb1f412671d9744272848c /etc
parent8ef33015c607d0356a2fca47f39028384dd366af (diff)
downloadoslo-rootwrap-1649ed17252160b5f50bd7e500f9b243a14bd8e7.tar.gz
To honor RFC5424 add use_syslog_rfc_format config option
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>
Diffstat (limited to 'etc')
-rw-r--r--etc/rootwrap.conf.sample5
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/rootwrap.conf.sample b/etc/rootwrap.conf.sample
index a29f501..197b84c 100644
--- a/etc/rootwrap.conf.sample
+++ b/etc/rootwrap.conf.sample
@@ -16,6 +16,11 @@ exec_dirs=/sbin,/usr/sbin,/bin,/usr/bin
# 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'