package/sysklogd: add option for remote syslog retry delay
Signed-off-by: Joachim Wiberg <troglobit@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
99cff5ef74
commit
36bbd4265f
@ -15,6 +15,19 @@ config BR2_PACKAGE_SYSKLOGD
|
||||
|
||||
if BR2_PACKAGE_SYSKLOGD
|
||||
|
||||
config BR2_PACKAGE_SYSKLOGD_REMOTE_DELAY
|
||||
int "Retry delay (sec)"
|
||||
default "180"
|
||||
help
|
||||
Retry delay (seconds) for sending to remote syslog servers.
|
||||
|
||||
When set up to forward logs to a remote syslog server, the
|
||||
network may not always be available. E.g., default interface
|
||||
down, or no route to the remote server. This setting controls
|
||||
the back-off time before retrying.
|
||||
|
||||
Default: 180 seconds
|
||||
|
||||
config BR2_PACKAGE_SYSKLOGD_LOGGER
|
||||
bool "logger tool"
|
||||
help
|
||||
|
@ -9,7 +9,9 @@ SYSKLOGD_SITE = https://github.com/troglobit/sysklogd/releases/download/v$(SYSKL
|
||||
SYSKLOGD_LICENSE = BSD-3-Clause
|
||||
SYSKLOGD_LICENSE_FILES = LICENSE
|
||||
SYSKLOGD_CPE_ID_VALID = YES
|
||||
SYSKLOGD_CONF_OPTS = --exec-prefix=/
|
||||
SYSKLOGD_CONF_OPTS = \
|
||||
--exec-prefix=/ \
|
||||
--with-suspend-time=$(BR2_PACKAGE_SYSKLOGD_REMOTE_DELAY)
|
||||
|
||||
# Disable/Enable utilities
|
||||
ifeq ($(BR2_PACKAGE_SYSKLOGD_LOGGER),y)
|
||||
|
Loading…
Reference in New Issue
Block a user