diff options
author | Matt Weber <matthew.weber@rockwellcollins.com> | 2015-07-10 18:27:57 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-11 09:28:24 +0200 |
commit | d42f0f96aa13bc160bdfeb40ca75f53adb7af64e (patch) | |
tree | 2eb602c2386f8e92aa42b163b17c6d858887a50a | |
parent | e7d515d00e5d36e1260da3768178d2364db1ef90 (diff) | |
download | buildroot-d42f0f96aa13bc160bdfeb40ca75f53adb7af64e.tar.gz buildroot-d42f0f96aa13bc160bdfeb40ca75f53adb7af64e.zip |
rsyslog: fix config file comment style
The upstream versions of rsyslog (v8 and higher) have this commit to fix
the config file comment issue. Carry this patch here until the version
is bumped.
Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Clayton Shotwell <clayton.shotwell@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/rsyslog/0001-fix-config-file-comments.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/package/rsyslog/0001-fix-config-file-comments.patch b/package/rsyslog/0001-fix-config-file-comments.patch new file mode 100644 index 0000000000..bc5448dbff --- /dev/null +++ b/package/rsyslog/0001-fix-config-file-comments.patch @@ -0,0 +1,37 @@ +From fe01c9ec4979c78b6a7caf045cab17ba52d4ad08 Mon Sep 17 00:00:00 2001 +From: Brad Barden <brad+github@mifflinet.net> +Date: Sun, 11 Jan 2015 17:52:11 -0600 +Subject: [PATCH] bugfix header in platform/redhat/rsyslog.conf + +the "For more information" doc path includes the string "*/", breaking c-style comment format. fixes #202. +--- + platform/redhat/rsyslog.conf | 19 +++++++++---------- + 1 file changed, 9 insertions(+), 10 deletions(-) + +diff --git a/platform/redhat/rsyslog.conf b/platform/redhat/rsyslog.conf +index 340874d..3df6c7e 100644 +--- a/platform/redhat/rsyslog.conf ++++ b/platform/redhat/rsyslog.conf +@@ -1,13 +1,12 @@ +-/* rsyslog configuration file (for Red Hat-based systems) +- * note that most of this config file uses old-style format, +- * because it is well-known AND quite suitable for simple cases +- * like we have with the default config. For more advanced +- * things, RainerScript configuration is suggested. +- * +- * For more information see /usr/share/doc/rsyslog-*/rsyslog_conf.html +- * or latest version online at http://www.rsyslog.com/doc/rsyslog_conf.html +- * If you experience problems, see http://www.rsyslog.com/doc/troubleshoot.html +- */ ++# rsyslog configuration file (for Red Hat-based systems) ++# note that most of this config file uses old-style format, ++# because it is well-known AND quite suitable for simple cases ++# like we have with the default config. For more advanced ++# things, RainerScript configuration is suggested. ++# ++# For more information see /usr/share/doc/rsyslog-*/rsyslog_conf.html ++# or latest version online at http://www.rsyslog.com/doc/rsyslog_conf.html ++# If you experience problems, see http://www.rsyslog.com/doc/troubleshoot.html + + #### MODULES #### + |