[package] updpate syslog-ng3 to 3.0.5, add support for logging kernel messages, patch from Edgar Soldin
git-svn-id: svn://svn.openwrt.org/openwrt/packages@20314 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d959e9b5ff
commit
d0c544b3cd
@ -8,12 +8,11 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=syslog-ng
|
||||
PKG_VERSION:=3.0.4
|
||||
PKG_VERSION:=3.0.5
|
||||
PKG_RELEASE:=1
|
||||
PKG_MD5SUM:=86c39779261545d2289e9c309e262b8d
|
||||
PKG_MD5SUM:=28f0d9ff2243b330e8cd6311ef9b2f12
|
||||
|
||||
PKG_SOURCE_URL:= \
|
||||
http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/3.0.4/source/
|
||||
PKG_SOURCE_URL:=http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/$(PKG_VERSION)/source/
|
||||
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
@ -21,6 +21,10 @@ source net {
|
||||
udp(ip(0.0.0.0) port(514));
|
||||
};
|
||||
|
||||
source kernel {
|
||||
file("/proc/kmsg" program_override("kernel"));
|
||||
};
|
||||
|
||||
destination messages {
|
||||
file("/var/log/messages");
|
||||
};
|
||||
@ -28,5 +32,6 @@ destination messages {
|
||||
log {
|
||||
source(src);
|
||||
source(net);
|
||||
source(kernel);
|
||||
destination(messages);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user