[oe-commits] [meta-openembedded] 29/32: syslog-ng: fix syntax error in syslog-ng.conf

git at git.openembedded.org git at git.openembedded.org
Sat Mar 11 16:58:17 UTC 2017


This is an automated email from the git hooks/post-receive script.

martin_jansa pushed a commit to branch master
in repository meta-openembedded.

commit 268e2a619ab13b1d6a561e99eb2dbaec572e34ec
Author: Yi Zhao <yi.zhao at windriver.com>
AuthorDate: Thu Mar 9 09:56:00 2017 +0800

    syslog-ng: fix syntax error in syslog-ng.conf
    
    The backtick as a special character causes a syntax error by the parser
    in comment line:
    Error performing backtick substitution in configuration file;
    error='missing closing backtick (`) character',
    filename='/etc/syslog-ng/syslog-ng.conf', line='55:1'
    
    Replace it with single quote and bump the conf version to 3.8.
    
    Signed-off-by: Yi Zhao <yi.zhao at windriver.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf b/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf
index f0da2b7..0c6f543 100644
--- a/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf
+++ b/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf
@@ -1,4 +1,4 @@
- at version: 3.5
+ at version: 3.8
 #
 # Syslog-ng configuration file, compatible with default Debian syslogd
 # installation. Originally written by anonymous (I can't find his name)
@@ -52,7 +52,7 @@ destination d_newscrit { file("/var/log/news/news.crit"); };
 destination d_newserr { file("/var/log/news/news.err"); };
 destination d_newsnotice { file("/var/log/news/news.notice"); };
 
-# Some `catch-all' logfiles.
+# Some 'catch-all' logfiles.
 #
 destination d_debug { file("/var/log/debug"); };
 destination d_error { file("/var/log/error"); };

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list