summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-devtools/yasm/yasm/0001-bitvect-fix-build-with-gcc-15.patch38
-rw-r--r--meta-oe/recipes-devtools/yasm/yasm/0001-yasm-Set-build-date-to-SOURCE_DATE_EPOCH.patch37
-rw-r--r--meta-oe/recipes-devtools/yasm/yasm/0002-yasm-Use-BUILD_DATE-for-reproducibility.patch42
-rw-r--r--meta-oe/recipes-devtools/yasm/yasm/CVE-2021-33456.patch35
-rw-r--r--meta-oe/recipes-devtools/yasm/yasm/CVE-2021-33464.patch34
-rw-r--r--meta-oe/recipes-devtools/yasm/yasm/CVE-2023-29579.patch39
-rw-r--r--meta-oe/recipes-devtools/yasm/yasm_git.bb40
-rw-r--r--meta-oe/recipes-extended/colortail/colortail_0.3.5.bb10
-rw-r--r--meta-oe/recipes-extended/tmux/tmux_3.6.bb (renamed from meta-oe/recipes-extended/tmux/tmux_3.5a.bb)2
-rw-r--r--meta-oe/recipes-kernel/crash/crash_8.0.6.bb2
-rw-r--r--meta-oe/recipes-support/fuse/fuse3_3.17.4.bb3
-rw-r--r--meta-oe/recipes-support/hdf5/hdf5_2.0.0.bb5
-rw-r--r--meta-oe/recipes-support/syslog-ng/syslog-ng_4.8.2.bb2
13 files changed, 21 insertions, 268 deletions
diff --git a/meta-oe/recipes-devtools/yasm/yasm/0001-bitvect-fix-build-with-gcc-15.patch b/meta-oe/recipes-devtools/yasm/yasm/0001-bitvect-fix-build-with-gcc-15.patch
deleted file mode 100644
index f3f2c431d5..0000000000
--- a/meta-oe/recipes-devtools/yasm/yasm/0001-bitvect-fix-build-with-gcc-15.patch
+++ /dev/null
@@ -1,38 +0,0 @@
1From 64ef740eb262f329e55eebadf2ce276b146d44e9 Mon Sep 17 00:00:00 2001
2From: Martin Jansa <martin.jansa@gmail.com>
3Date: Tue, 22 Apr 2025 19:06:24 +0200
4Subject: [PATCH] bitvect: fix build with gcc-15
5
6* fixes:
7libyasm/bitvect.h:86:32: error: cannot use keyword 'false' as enumeration constant
8 86 | typedef enum boolean { false = FALSE, true = TRUE } boolean;
9 | ^~~~~
10../git/libyasm/bitvect.h:86:32: note: 'false' is a keyword with '-std=c23' onwards
11
12as suggested in:
13https://github.com/yasm/yasm/issues/283#issuecomment-2661108816
14
15Upstream-Status: Submitted [https://github.com/yasm/yasm/pull/287]
16
17Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
18---
19 libyasm/bitvect.h | 6 +++++-
20 1 file changed, 5 insertions(+), 1 deletion(-)
21
22diff --git a/libyasm/bitvect.h b/libyasm/bitvect.h
23index 3aee3a53..a13470ad 100644
24--- a/libyasm/bitvect.h
25+++ b/libyasm/bitvect.h
26@@ -83,7 +83,11 @@ typedef Z_longword *Z_longwordptr;
27 #ifdef MACOS_TRADITIONAL
28 #define boolean Boolean
29 #else
30- typedef enum boolean { false = FALSE, true = TRUE } boolean;
31+ #if __STDC_VERSION__ < 202311L
32+ typedef enum boolean { false = FALSE, true = TRUE } boolean;
33+ #else
34+ typedef bool boolean;
35+ #endif
36 #endif
37 #endif
38
diff --git a/meta-oe/recipes-devtools/yasm/yasm/0001-yasm-Set-build-date-to-SOURCE_DATE_EPOCH.patch b/meta-oe/recipes-devtools/yasm/yasm/0001-yasm-Set-build-date-to-SOURCE_DATE_EPOCH.patch
deleted file mode 100644
index 42f5559e3f..0000000000
--- a/meta-oe/recipes-devtools/yasm/yasm/0001-yasm-Set-build-date-to-SOURCE_DATE_EPOCH.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From eb164bb201c0f792fa8aa78270c47294065183a3 Mon Sep 17 00:00:00 2001
2From: Oleh Matiusha <omatiush@cisco.com>
3Date: Tue, 6 Feb 2024 09:33:11 +0000
4Subject: [PATCH 1/2] yasm: Set build date to SOURCE_DATE_EPOCH
5
6If SOURCE_DATE_EPOCH is set, use it to generate a reproducible
7string for BUILD_DATE.
8
9Signed-off-by: Oleh Matiusha <omatiush@cisco.com>
10
11Upstream-Status: Pending
12---
13 configure.ac | 8 ++++++++
14 1 file changed, 8 insertions(+)
15
16diff --git a/configure.ac b/configure.ac
17index 2823ecd..eeb51ce 100644
18--- a/configure.ac
19+++ b/configure.ac
20@@ -103,6 +103,14 @@ AM_WITH_DMALLOC
21 #
22 AC_CHECK_HEADERS([strings.h libgen.h unistd.h direct.h sys/stat.h])
23
24+# Use reproducible build date and time
25+if test "$SOURCE_DATE_EPOCH"; then
26+ DATE_FMT="%d %b %Y %H:%M:%S"
27+ BUILD_DATE=$(LC_ALL=C date -u -d "@$SOURCE_DATE_EPOCH" "+$DATE_FMT")
28+ AC_DEFINE_UNQUOTED([BUILD_DATE], ["$BUILD_DATE"], [Use reproducidle build date])
29+fi
30+
31+
32 #
33 # Checks for typedefs, structures, and compiler characteristics.
34 #
35--
362.33.0
37
diff --git a/meta-oe/recipes-devtools/yasm/yasm/0002-yasm-Use-BUILD_DATE-for-reproducibility.patch b/meta-oe/recipes-devtools/yasm/yasm/0002-yasm-Use-BUILD_DATE-for-reproducibility.patch
deleted file mode 100644
index 4b9c933d01..0000000000
--- a/meta-oe/recipes-devtools/yasm/yasm/0002-yasm-Use-BUILD_DATE-for-reproducibility.patch
+++ /dev/null
@@ -1,42 +0,0 @@
1From 19fffab74a201dc41c3da7e74d86eafa8f68bbc6 Mon Sep 17 00:00:00 2001
2From: Oleh Matiusha <omatiush@cisco.com>
3Date: Tue, 6 Feb 2024 09:34:26 +0000
4Subject: [PATCH] yasm: Use BUILD_DATE for reproducibility
5
6Use reproducible build date instead of compilation time and date.
7
8Signed-off-by: Oleh Matiusha <omatiush@cisco.com>
9
10
11Upstream-Status: Pending
12---
13 tools/re2c/parser.c | 5 +++++
14 1 file changed, 5 insertions(+)
15
16diff --git a/tools/re2c/parser.c b/tools/re2c/parser.c
17index 02d5c66..1c90aee 100644
18--- a/tools/re2c/parser.c
19+++ b/tools/re2c/parser.c
20@@ -5,6 +5,7 @@
21 #include "tools/re2c/globals.h"
22 #include "tools/re2c/parse.h"
23 #include "tools/re2c/parser.h"
24+#include "config.h"
25
26 int yylex(void);
27 static RegExp *parse_expr(void);
28@@ -233,7 +234,11 @@ void parse(FILE *i, FILE *o){
29 peektok = NONE;
30
31 fputs("/* Generated by re2c 0.9.1-C on ", o);
32+#ifndef BUILD_DATE
33 fprintf(o, "%-24s", ctime(&now));
34+#else
35+ fprintf(o, "%-24s", BUILD_DATE " ");
36+#endif
37 fputs(" */\n", o); oline+=2;
38
39 in = Scanner_new(i);
40--
412.33.0
42
diff --git a/meta-oe/recipes-devtools/yasm/yasm/CVE-2021-33456.patch b/meta-oe/recipes-devtools/yasm/yasm/CVE-2021-33456.patch
deleted file mode 100644
index 2340d8ed75..0000000000
--- a/meta-oe/recipes-devtools/yasm/yasm/CVE-2021-33456.patch
+++ /dev/null
@@ -1,35 +0,0 @@
1From 1126140b8f5ece18c58640725f0e4c08e5ec97b0 Mon Sep 17 00:00:00 2001
2From: Gyorgy Sarvari <skandigraun@gmail.com>
3Date: Sat, 15 Nov 2025 13:34:15 +0100
4Subject: [PATCH] A potential null pointer difference is that the return value
5 of the hash may be null. This fixes CVE-2021-33456.
6
7From: lixuebing <lixuebing@cqsoftware.com.cn>
8Date: Mon, 25 Aug 2025 13:51:28 +0800
9Subject: Fix null-pointer-dereference in hash
10Bug: https://github.com/yasm/yasm/issues/175
11Origin: https://github.com/yasm/yasm/pull/290
12
13CVE: CVE-2021-33456
14Upstream-Status: Submitted [https://github.com/yasm/yasm/pull/290]
15
16Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
17---
18 modules/preprocs/nasm/nasm-pp.c | 4 ++++
19 1 file changed, 4 insertions(+)
20
21diff --git a/modules/preprocs/nasm/nasm-pp.c b/modules/preprocs/nasm/nasm-pp.c
22index f9f92dd1..473d98c1 100644
23--- a/modules/preprocs/nasm/nasm-pp.c
24+++ b/modules/preprocs/nasm/nasm-pp.c
25@@ -1102,6 +1102,10 @@ hash(char *s)
26 {
27 unsigned int h = 0;
28 unsigned int i = 0;
29+ /* Check if the input string is NULL to avoid null pointer dereference */
30+ if (s == NULL) {
31+ return 0;
32+ }
33 /*
34 * Powers of three, mod 31.
35 */
diff --git a/meta-oe/recipes-devtools/yasm/yasm/CVE-2021-33464.patch b/meta-oe/recipes-devtools/yasm/yasm/CVE-2021-33464.patch
deleted file mode 100644
index ebae250ff9..0000000000
--- a/meta-oe/recipes-devtools/yasm/yasm/CVE-2021-33464.patch
+++ /dev/null
@@ -1,34 +0,0 @@
1From 3c3f968d48d768c1e355199d4067d99cb72abc26 Mon Sep 17 00:00:00 2001
2From: Gyorgy Sarvari <skandigraun@gmail.com>
3Date: Sat, 15 Nov 2025 13:30:12 +0100
4Subject: [PATCH] Handle file descriptors with nonexisting env names better.
5 Avoid writing past allocated memory.
6
7This fixes CVE-2021-33464.
8Author: Petter Reinholdtsen <pere@debian.org>
9Bug: https://github.com/yasm/yasm/issues/164
10Bug-Debian: https://bugs.debian.org/1016353
11Forwarded: https://github.com/yasm/yasm/issues/164
12Last-Update: 2025-04-30
13
14CVE: CVE-2021-33464
15Upstream-Status: Submitted [https://github.com/yasm/yasm/issues/164]
16
17Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
18---
19 modules/preprocs/nasm/nasm-pp.c | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22diff --git a/modules/preprocs/nasm/nasm-pp.c b/modules/preprocs/nasm/nasm-pp.c
23index 512f02c3..f9f92dd1 100644
24--- a/modules/preprocs/nasm/nasm-pp.c
25+++ b/modules/preprocs/nasm/nasm-pp.c
26@@ -1815,7 +1815,7 @@ inc_fopen(char *file, char **newname)
27 error(ERR_WARNING, "environment variable `%s' does not exist",
28 p1+1);
29 *p2 = '%';
30- p1 = p2+1;
31+ pb = p1 = p2+1;
32 continue;
33 }
34 /* need to expand */
diff --git a/meta-oe/recipes-devtools/yasm/yasm/CVE-2023-29579.patch b/meta-oe/recipes-devtools/yasm/yasm/CVE-2023-29579.patch
deleted file mode 100644
index 58b4ed1996..0000000000
--- a/meta-oe/recipes-devtools/yasm/yasm/CVE-2023-29579.patch
+++ /dev/null
@@ -1,39 +0,0 @@
1From 81c1b7b0a28f052eaadddcb010944bf67e6ae257 Mon Sep 17 00:00:00 2001
2From: Gyorgy Sarvari <skandigraun@gmail.com>
3Date: Sat, 15 Nov 2025 13:24:21 +0100
4Subject: [PATCH] Make sure CPU feature parsing use large enough string buffer.
5 Fixes CVE-2023-29579.
6
7Author: Petter Reinholdtsen <pere@debian.org>
8Bug: https://github.com/yasm/yasm/issues/214
9Bug-Debian: https://bugs.debian.org/1035951
10Forwarded: https://github.com/yasm/yasm/issues/214
11Last-Update: 2025-04-30
12
13This patch is taken from Debian:
14https://sources.debian.org/patches/yasm/1.3.0-8/1000-x86-dir-cpu-CVE-2023-29579.patch/
15
16CVE: CVE-2023-29579
17Upstream-Status: Submitted [https://github.com/yasm/yasm/issues/214]
18
19Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
20---
21 modules/arch/x86/x86arch.c | 5 +++--
22 1 file changed, 3 insertions(+), 2 deletions(-)
23
24diff --git a/modules/arch/x86/x86arch.c b/modules/arch/x86/x86arch.c
25index bac11774..58327958 100644
26--- a/modules/arch/x86/x86arch.c
27+++ b/modules/arch/x86/x86arch.c
28@@ -165,8 +165,9 @@ x86_dir_cpu(yasm_object *object, yasm_valparamhead *valparams,
29 yasm_error_set(YASM_ERROR_SYNTAX,
30 N_("invalid argument to [%s]"), "CPU");
31 else {
32- char strcpu[16];
33- sprintf(strcpu, "%lu", yasm_intnum_get_uint(intcpu));
34+ char strcpu[21]; /* 21 = ceil(log10(LONG_MAX)+1) */
35+ assert(8*sizeof(unsigned long) <= 64);
36+ snprintf(strcpu, sizeof(strcpu), "%lu", yasm_intnum_get_uint(intcpu));
37 yasm_x86__parse_cpu(arch_x86, strcpu, strlen(strcpu));
38 }
39 } else
diff --git a/meta-oe/recipes-devtools/yasm/yasm_git.bb b/meta-oe/recipes-devtools/yasm/yasm_git.bb
deleted file mode 100644
index 6ddd94621a..0000000000
--- a/meta-oe/recipes-devtools/yasm/yasm_git.bb
+++ /dev/null
@@ -1,40 +0,0 @@
1SUMMARY = "x86 (SSE) assembler supporting NASM and GAS-syntaxes"
2LICENSE = "MIT"
3HOMEPAGE = "http://www.tortall.net/projects/yasm/"
4
5LIC_FILES_CHKSUM = "file://COPYING;md5=a12d8903508fb6bfd49d8d82c6170dd9"
6
7DEPENDS += "flex-native bison-native"
8PACKAGECONFIG[docs] = ",,xmlto-native,"
9
10PV = "1.3.0+git"
11# v1.3.0-87
12SRCREV = "121ab150b3577b666c79a79f4a511798d7ad2432"
13SRC_URI = "git://github.com/yasm/yasm.git;branch=master;protocol=https \
14 file://0001-yasm-Set-build-date-to-SOURCE_DATE_EPOCH.patch \
15 file://0002-yasm-Use-BUILD_DATE-for-reproducibility.patch \
16 file://0001-bitvect-fix-build-with-gcc-15.patch \
17 file://CVE-2023-29579.patch \
18 file://CVE-2021-33464.patch \
19 file://CVE-2021-33456.patch \
20 "
21
22
23inherit autotools gettext python3native
24
25CACHED_CONFIGUREVARS = "CCLD_FOR_BUILD='${CC_FOR_BUILD}'"
26
27BBCLASSEXTEND = "native"
28
29PARALLEL_MAKE = ""
30
31do_configure:prepend() {
32 # Don't include $CC (which includes path to sysroot) in generated header.
33 sed -i -e "s/^echo \"\/\* generated \$ac_cv_stdint_message \*\/\" >>\$ac_stdint$"// ${S}/m4/ax_create_stdint_h.m4
34}
35
36CVE_STATUS_GROUPS += "CVE_STATUS_HASH_UPDATE"
37CVE_STATUS_HASH_UPDATE = "CVE-2021-33454 CVE-2023-31975 CVE-2023-37732"
38CVE_STATUS_HASH_UPDATE[status] = "fixed-version: patched in current git hash"
39
40CVE_PRODUCT += "tortall:yasm yasm_project:yasm"
diff --git a/meta-oe/recipes-extended/colortail/colortail_0.3.5.bb b/meta-oe/recipes-extended/colortail/colortail_0.3.5.bb
new file mode 100644
index 0000000000..936cdf10eb
--- /dev/null
+++ b/meta-oe/recipes-extended/colortail/colortail_0.3.5.bb
@@ -0,0 +1,10 @@
1SUMMARY = "Like the tail command line utility but with colors"
2DESCRIPTION = "Colortail - like tail but with color highlighting configured via patterns"
3HOMEPAGE = "https://github.com/joakim666/colortail"
4LICENSE = "GPL-2.0-only"
5LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
6
7SRC_URI = "git://github.com/joakim666/colortail.git;branch=master;tag=${PV};protocol=https"
8SRCREV = "653bbbe3292759f5fb5ae9f769f131c1a320965d"
9
10inherit autotools pkgconfig
diff --git a/meta-oe/recipes-extended/tmux/tmux_3.5a.bb b/meta-oe/recipes-extended/tmux/tmux_3.6.bb
index 72c84f562e..5daa1b174a 100644
--- a/meta-oe/recipes-extended/tmux/tmux_3.5a.bb
+++ b/meta-oe/recipes-extended/tmux/tmux_3.6.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://tmux.c;beginline=3;endline=17;md5=f256b76d52e7b4d02bf
8DEPENDS = "ncurses libevent bison-native" 8DEPENDS = "ncurses libevent bison-native"
9 9
10SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.gz" 10SRC_URI = "https://github.com/tmux/tmux/releases/download/${PV}/tmux-${PV}.tar.gz"
11SRC_URI[sha256sum] = "16216bd0877170dfcc64157085ba9013610b12b082548c7c9542cc0103198951" 11SRC_URI[sha256sum] = "136db80cfbfba617a103401f52874e7c64927986b65b1b700350b6058ad69607"
12 12
13UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases" 13UPSTREAM_CHECK_URI = "https://github.com/tmux/tmux/releases"
14UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+[a-z]?)" 14UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+[a-z]?)"
diff --git a/meta-oe/recipes-kernel/crash/crash_8.0.6.bb b/meta-oe/recipes-kernel/crash/crash_8.0.6.bb
index 1af90978e0..893d4de410 100644
--- a/meta-oe/recipes-kernel/crash/crash_8.0.6.bb
+++ b/meta-oe/recipes-kernel/crash/crash_8.0.6.bb
@@ -12,6 +12,8 @@ EXTRA_OEMAKE:class-cross = 'RPMPKG="${PV}" \
12EXTRA_OEMAKE:append:class-native = " LDFLAGS='${BUILD_LDFLAGS}'" 12EXTRA_OEMAKE:append:class-native = " LDFLAGS='${BUILD_LDFLAGS}'"
13EXTRA_OEMAKE:append:class-cross = " LDFLAGS='${BUILD_LDFLAGS}'" 13EXTRA_OEMAKE:append:class-cross = " LDFLAGS='${BUILD_LDFLAGS}'"
14 14
15DEPENDS:append:class-cross = " zlib-native"
16
15do_install:class-target () { 17do_install:class-target () {
16 oe_runmake DESTDIR=${D} install 18 oe_runmake DESTDIR=${D} install
17} 19}
diff --git a/meta-oe/recipes-support/fuse/fuse3_3.17.4.bb b/meta-oe/recipes-support/fuse/fuse3_3.17.4.bb
index 85991ff7be..fcd09059ab 100644
--- a/meta-oe/recipes-support/fuse/fuse3_3.17.4.bb
+++ b/meta-oe/recipes-support/fuse/fuse3_3.17.4.bb
@@ -25,6 +25,9 @@ CVE_PRODUCT = "fuse_project:fuse"
25 25
26inherit meson pkgconfig ptest 26inherit meson pkgconfig ptest
27 27
28# fix riscv32-yoe-linux-musl-ld.lld: error: undefined symbol: __atomic_fetch_add_8
29LDFLAGS:append:toolchain-clang:riscv32 = " -latomic"
30
28SRC_URI += " \ 31SRC_URI += " \
29 file://run-ptest \ 32 file://run-ptest \
30 file://fuse3.conf \ 33 file://fuse3.conf \
diff --git a/meta-oe/recipes-support/hdf5/hdf5_2.0.0.bb b/meta-oe/recipes-support/hdf5/hdf5_2.0.0.bb
index 798ca1b83f..93fe352b99 100644
--- a/meta-oe/recipes-support/hdf5/hdf5_2.0.0.bb
+++ b/meta-oe/recipes-support/hdf5/hdf5_2.0.0.bb
@@ -7,7 +7,7 @@ SECTION = "libs"
7LICENSE = "BSD-3-Clause" 7LICENSE = "BSD-3-Clause"
8LIC_FILES_CHKSUM = "file://LICENSE;md5=71a191398102f76050a4e56e78cb4891" 8LIC_FILES_CHKSUM = "file://LICENSE;md5=71a191398102f76050a4e56e78cb4891"
9 9
10inherit cmake siteinfo qemu multilib_header 10inherit cmake pkgconfig siteinfo qemu multilib_header multilib_script
11 11
12DEPENDS += "qemu-native zlib" 12DEPENDS += "qemu-native zlib"
13 13
@@ -48,8 +48,11 @@ do_configure:append() {
48do_install:append() { 48do_install:append() {
49 # Used for generating config files on target 49 # Used for generating config files on target
50 oe_multilib_header H5pubconf.h 50 oe_multilib_header H5pubconf.h
51 sed -i -e 's|${RECIPE_SYSROOT_NATIVE}||g' ${D}${bindir}/h5cc
51} 52}
52 53
54MULTILIB_SCRIPTS += "${PN}:${bindir}/h5cc"
55
53BBCLASSEXTEND = "native" 56BBCLASSEXTEND = "native"
54 57
55# h5fuse.sh script needs bash 58# h5fuse.sh script needs bash
diff --git a/meta-oe/recipes-support/syslog-ng/syslog-ng_4.8.2.bb b/meta-oe/recipes-support/syslog-ng/syslog-ng_4.8.2.bb
index cfc376ded1..3d8570122b 100644
--- a/meta-oe/recipes-support/syslog-ng/syslog-ng_4.8.2.bb
+++ b/meta-oe/recipes-support/syslog-ng/syslog-ng_4.8.2.bb
@@ -13,7 +13,7 @@ LICENSE = "GPL-2.0-only & LGPL-2.1-only"
13LIC_FILES_CHKSUM = "file://COPYING;md5=924958cefc9f7de3e0b818832b8a1cec" 13LIC_FILES_CHKSUM = "file://COPYING;md5=924958cefc9f7de3e0b818832b8a1cec"
14 14
15# util-linux added to get libuuid 15# util-linux added to get libuuid
16DEPENDS = "libpcre flex glib-2.0 openssl util-linux bison-native curl json-c" 16DEPENDS = "libpcre2 flex glib-2.0 openssl util-linux bison-native curl json-c"
17 17
18SRC_URI = "https://github.com/balabit/syslog-ng/releases/download/${BP}/${BP}.tar.gz \ 18SRC_URI = "https://github.com/balabit/syslog-ng/releases/download/${BP}/${BP}.tar.gz \
19 file://syslog-ng.conf.systemd \ 19 file://syslog-ng.conf.systemd \