Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
From 835571774dc519dd2cff7ab1020cf298cc953a8f Mon Sep 17 00:00:00 2001
|
||||
From: Thordur Bjornsson <thorduri@secnorth.net>
|
||||
Date: Tue, 7 Jul 2015 12:34:08 +0200
|
||||
Subject: [PATCH] omfile: unconditionally include fcntl.h.
|
||||
|
||||
required for open() flags
|
||||
|
||||
Signed-off-by: Thordur Bjornsson <thorduri@secnorth.net>
|
||||
[Bernd: downloaded from upstream commit:
|
||||
https://github.com/rsyslog/rsyslog/commit/835571774dc519dd2cff7ab1020cf298cc953a8f
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
---
|
||||
tools/omfile.c | 4 +---
|
||||
1 file changed, 1 insertion(+), 3 deletions(-)
|
||||
|
||||
diff --git a/tools/omfile.c b/tools/omfile.c
|
||||
index 482e723..4444b97 100644
|
||||
--- a/tools/omfile.c
|
||||
+++ b/tools/omfile.c
|
||||
@@ -48,9 +48,7 @@
|
||||
#include <libgen.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/file.h>
|
||||
-#ifdef OS_SOLARIS
|
||||
-# include <fcntl.h>
|
||||
-#endif
|
||||
+#include <fcntl.h>
|
||||
#ifdef HAVE_ATOMIC_BUILTINS
|
||||
# include <pthread.h>
|
||||
#endif
|
||||
19
deprecated/firmware/buildroot/package/rsyslog/Config.in
Normal file
19
deprecated/firmware/buildroot/package/rsyslog/Config.in
Normal file
@@ -0,0 +1,19 @@
|
||||
config BR2_PACKAGE_RSYSLOG
|
||||
bool "rsyslog"
|
||||
select BR2_PACKAGE_ZLIB
|
||||
select BR2_PACKAGE_LIBESTR
|
||||
select BR2_PACKAGE_LIBLOGGING
|
||||
select BR2_PACKAGE_JSON_C
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on !BR2_STATIC_LIBS # modules
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
|
||||
help
|
||||
Rsyslog is a powerful and flexible syslog implementation
|
||||
|
||||
http://www.rsyslog.com
|
||||
|
||||
comment "rsyslog needs a toolchain w/ threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
36
deprecated/firmware/buildroot/package/rsyslog/S01logging
Normal file
36
deprecated/firmware/buildroot/package/rsyslog/S01logging
Normal file
@@ -0,0 +1,36 @@
|
||||
#!/bin/sh
|
||||
|
||||
start() {
|
||||
printf "Starting rsyslog daemon: "
|
||||
start-stop-daemon -S -q -p /var/run/rsyslogd.pid --exec /usr/sbin/rsyslogd
|
||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
||||
}
|
||||
|
||||
stop() {
|
||||
printf "Stopping rsyslog daemon: "
|
||||
start-stop-daemon -K -q -p /var/run/rsyslogd.pid
|
||||
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
||||
}
|
||||
|
||||
restart() {
|
||||
stop
|
||||
sleep 1
|
||||
start
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
start
|
||||
;;
|
||||
stop)
|
||||
stop
|
||||
;;
|
||||
restart|reload)
|
||||
restart
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
||||
@@ -0,0 +1,2 @@
|
||||
# From http://www.rsyslog.com/downloads/download-v8-stable/
|
||||
sha256 eab00e8e758cd9dd33b3e2cf6af80297d1951dc7db37bd723a6488a35d577adc rsyslog-8.9.0.tar.gz
|
||||
96
deprecated/firmware/buildroot/package/rsyslog/rsyslog.mk
Normal file
96
deprecated/firmware/buildroot/package/rsyslog/rsyslog.mk
Normal file
@@ -0,0 +1,96 @@
|
||||
################################################################################
|
||||
#
|
||||
# rsyslog
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RSYSLOG_VERSION = 8.9.0
|
||||
RSYSLOG_SITE = http://rsyslog.com/files/download/rsyslog
|
||||
RSYSLOG_LICENSE = GPLv3, LGPLv3, Apache-2.0
|
||||
RSYSLOG_LICENSE_FILES = COPYING COPYING.LESSER COPYING.ASL20
|
||||
RSYSLOG_DEPENDENCIES = zlib libestr liblogging json-c host-pkgconf
|
||||
RSYSLOG_CONF_ENV = ac_cv_prog_cc_c99='-std=c99'
|
||||
RSYSLOG_PLUGINS = imdiag imfile impstats imptcp \
|
||||
mmanon mmaudit mmfields mmjsonparse mmpstrucdata mmsequence mmutf8fix \
|
||||
mail omprog omruleset omstdout omuxsock \
|
||||
pmaixforwardedfrom pmciscoios pmcisconames pmlastmsg pmsnare
|
||||
RSYSLOG_CONF_OPTS = --disable-generate-man-pages \
|
||||
$(foreach x,$(call qstrip,$(RSYSLOG_PLUGINS)),--enable-$(x))
|
||||
|
||||
# Build after BusyBox
|
||||
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
||||
RSYSLOG_DEPENDENCIES += busybox
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBEE),y)
|
||||
RSYSLOG_DEPENDENCIES += libee
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
||||
RSYSLOG_DEPENDENCIES += libgcrypt
|
||||
RSYSLOG_CONF_ENV += LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config
|
||||
RSYSLOG_CONF_OPTS += --enable-libgcrypt
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-libgcrypt
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MYSQL),y)
|
||||
RSYSLOG_DEPENDENCIES += mysql
|
||||
RSYSLOG_CONF_OPTS += --enable-mysql
|
||||
RSYSLOG_CONF_ENV += ac_cv_prog_MYSQL_CONFIG=$(STAGING_DIR)/usr/bin/mysql_config
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-mysql
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_POSTGRESQL),y)
|
||||
RSYSLOG_DEPENDENCIES += postgresql
|
||||
RSYSLOG_CONF_OPTS += --enable-pgsql
|
||||
RSYSLOG_CONF_ENV += ac_cv_prog_PG_CONFIG=$(STAGING_DIR)/usr/bin/pg_config
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-pgsql
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
|
||||
RSYSLOG_DEPENDENCIES += util-linux
|
||||
RSYSLOG_CONF_OPTS += --enable-uuid
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-uuid
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_INIT_SYSTEMD),y)
|
||||
RSYSLOG_CONF_OPTS += \
|
||||
--enable-systemd \
|
||||
--with-systemdsystemunitdir=/usr/lib/systemd/system
|
||||
RSYSLOG_DEPENDENCIES += systemd
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-systemd
|
||||
endif
|
||||
|
||||
define RSYSLOG_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -m 0755 -D package/rsyslog/S01logging \
|
||||
$(TARGET_DIR)/etc/init.d/S01logging
|
||||
endef
|
||||
|
||||
# The rsyslog.service is installed by rsyslog, but the link is not created
|
||||
# so the service is not enabled.
|
||||
# We need to create another link which is due to the fact that the
|
||||
# rsyslog.service contains an Alias=
|
||||
# If we were to use systemctl enable to enable the service, it would
|
||||
# create both, so we mimic that.
|
||||
define RSYSLOG_INSTALL_INIT_SYSTEMD
|
||||
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
||||
ln -sf ../../../../usr/lib/systemd/system/rsyslog.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/rsyslog.service
|
||||
ln -sf ../../../../usr/lib/systemd/system/rsyslog.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/syslog.service
|
||||
endef
|
||||
|
||||
define RSYSLOG_INSTALL_CONF
|
||||
$(INSTALL) -m 0644 -D $(@D)/platform/redhat/rsyslog.conf \
|
||||
$(TARGET_DIR)/etc/rsyslog.conf
|
||||
mkdir -p $(TARGET_DIR)/etc/rsyslog.d
|
||||
endef
|
||||
|
||||
RSYSLOG_POST_INSTALL_TARGET_HOOKS += RSYSLOG_INSTALL_CONF
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user