diff mbox series

[1/1] package/sysklogd: replace local syslog.conf sample with upstream

Message ID 20210201125236.451176-1-troglobit@gmail.com
State Accepted
Headers show
Series [1/1] package/sysklogd: replace local syslog.conf sample with upstream | expand

Commit Message

Joachim Wiberg Feb. 1, 2021, 12:52 p.m. UTC
This patch drops the local syslog.conf in favor of the one shipped with
sysklogd.  The upstream syslog.conf sample differs from the Buildroot
one primarily in shifting to /var/log/syslog as the default for log
messages.  It also comes with a dedicated /var/log/kern.log and some
commented-out filtering examples.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
---
 package/sysklogd/sysklogd.mk | 2 +-
 package/sysklogd/syslog.conf | 9 ---------
 2 files changed, 1 insertion(+), 10 deletions(-)
 delete mode 100644 package/sysklogd/syslog.conf

Comments

Peter Korsgaard Feb. 4, 2021, 7:29 p.m. UTC | #1
>>>>> "Joachim" == Joachim Wiberg <troglobit@gmail.com> writes:

 > This patch drops the local syslog.conf in favor of the one shipped with
 > sysklogd.  The upstream syslog.conf sample differs from the Buildroot
 > one primarily in shifting to /var/log/syslog as the default for log
 > messages.  It also comes with a dedicated /var/log/kern.log and some
 > commented-out filtering examples.

 > Signed-off-by: Joachim Wiberg <troglobit@gmail.com>

Committed, thanks.
diff mbox series

Patch

diff --git a/package/sysklogd/sysklogd.mk b/package/sysklogd/sysklogd.mk
index c6c59da69f..ff181372b6 100644
--- a/package/sysklogd/sysklogd.mk
+++ b/package/sysklogd/sysklogd.mk
@@ -25,7 +25,7 @@  SYSKLOGD_CONF_OPTS += --without-logger
 endif
 
 define SYSKLOGD_INSTALL_SAMPLE_CONFIG
-	$(INSTALL) -D -m 0644 package/sysklogd/syslog.conf \
+	$(INSTALL) -D -m 0644 $(@D)/syslog.conf \
 		$(TARGET_DIR)/etc/syslog.conf
 endef
 
diff --git a/package/sysklogd/syslog.conf b/package/sysklogd/syslog.conf
deleted file mode 100644
index 411bd645ff..0000000000
--- a/package/sysklogd/syslog.conf
+++ /dev/null
@@ -1,9 +0,0 @@ 
-# /etc/syslog.conf - Configuration file for syslogd
-
-auth,authpriv.*		/var/log/auth.log
-*.*;auth,authpriv.none	/var/log/messages
-user.*			/var/log/user.log
-
-*.emerg			*
-
-include /etc/syslog.d/*.conf