diff options
author | Slater, Joseph <joe.slater@windriver.com> | 2019-11-01 11:22:51 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-11-01 17:22:53 -0700 |
commit | ef9f2b31b230e32dbc817f9914818bdcb6292ff6 (patch) | |
tree | 84f92657ac119d784bf1dfe08ca11a99c19b9a56 | |
parent | 98853a4f5d7fa8b05119021793d6e01bb62ce060 (diff) | |
download | meta-openembedded-ef9f2b31b230e32dbc817f9914818bdcb6292ff6.tar.gz |
syslog-ng: change conf files to version 3.19
Also add dns_cache(no) option to eliminate initialization warning.
Signed-off-by: Joe Slater <joe.slater@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf.systemd | 9 | ||||
-rw-r--r-- | meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf.sysvinit | 9 |
2 files changed, 14 insertions, 4 deletions
diff --git a/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf.systemd b/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf.systemd index 9e910caa18..965abf7224 100644 --- a/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf.systemd +++ b/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf.systemd | |||
@@ -1,11 +1,16 @@ | |||
1 | @version: 3.15 | 1 | @version: 3.19 |
2 | # | 2 | # |
3 | # Syslog-ng configuration file, compatible with default Debian syslogd | 3 | # Syslog-ng configuration file, compatible with default Debian syslogd |
4 | # installation. Originally written by anonymous (I can't find his name) | 4 | # installation. Originally written by anonymous (I can't find his name) |
5 | # Revised, and rewrited by me (SZALAY Attila <sasa@debian.org>) | 5 | # Revised, and rewrited by me (SZALAY Attila <sasa@debian.org>) |
6 | # | ||
7 | # Move to 3.19 | ||
8 | # Only change is to add dns_cache(no) to options to suppress initialization warning. | ||
9 | # | ||
10 | # Joe Slater <joe.slater@windriver.com> | ||
6 | 11 | ||
7 | # First, set some global options. | 12 | # First, set some global options. |
8 | options { chain_hostnames(off); flush_lines(0); use_dns(no); use_fqdn(no); | 13 | options { chain_hostnames(off); flush_lines(0); use_dns(no); dns_cache(no); use_fqdn(no); |
9 | owner("root"); group("adm"); perm(0640); stats_freq(0); | 14 | owner("root"); group("adm"); perm(0640); stats_freq(0); |
10 | bad_hostname("^gconfd$"); | 15 | bad_hostname("^gconfd$"); |
11 | }; | 16 | }; |
diff --git a/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf.sysvinit b/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf.sysvinit index fb183ee177..2b39b8c1fe 100644 --- a/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf.sysvinit +++ b/meta-oe/recipes-support/syslog-ng/files/syslog-ng.conf.sysvinit | |||
@@ -1,11 +1,16 @@ | |||
1 | @version: 3.15 | 1 | @version: 3.19 |
2 | # | 2 | # |
3 | # Syslog-ng configuration file, compatible with default Debian syslogd | 3 | # Syslog-ng configuration file, compatible with default Debian syslogd |
4 | # installation. Originally written by anonymous (I can't find his name) | 4 | # installation. Originally written by anonymous (I can't find his name) |
5 | # Revised, and rewrited by me (SZALAY Attila <sasa@debian.org>) | 5 | # Revised, and rewrited by me (SZALAY Attila <sasa@debian.org>) |
6 | # | ||
7 | # Move to 3.19 | ||
8 | # Only change is to add dns_cache(no) to options to suppress initialization warning. | ||
9 | # | ||
10 | # Joe Slater <joe.slater@windriver.com> | ||
6 | 11 | ||
7 | # First, set some global options. | 12 | # First, set some global options. |
8 | options { chain_hostnames(off); flush_lines(0); use_dns(no); use_fqdn(no); | 13 | options { chain_hostnames(off); flush_lines(0); use_dns(no); dns_cache(no); use_fqdn(no); |
9 | owner("root"); group("adm"); perm(0640); stats_freq(0); | 14 | owner("root"); group("adm"); perm(0640); stats_freq(0); |
10 | bad_hostname("^gconfd$"); | 15 | bad_hostname("^gconfd$"); |
11 | }; | 16 | }; |