summaryrefslogtreecommitdiffstats
path: root/rules/syslogng.in
blob: 52847b21a03188c021b7d641170b7deece35a2cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
## SECTION=networking
# syslog-ng configuration

menuconfig SYSLOGNG
	tristate
	prompt "syslog-ng                     "
	select EVENTLOG
	select GLIB
	select LIBC_NSL
	select LIBC_RT
	select LIBNET		if SYSLOGNG_SPOOF_SOURCE
	select TCPWRAPPER	if SYSLOGNG_TCP_WRAPPER
	help
	  The next generation syslog daemon.

if SYSLOGNG

config SYSLOGNG_IPV6
	bool
	prompt "Support ipv6"
	help
	  Enable ipv6 support, otherwise ipv4 is supported only

config SYSLOGNG_TCP_WRAPPER
	bool
	prompt "tcpwrapper support"
	help
	  Support /etc/hosts.deny and /etc/hosts.allow.

config SYSLOGNG_SPOOF_SOURCE
	bool
	prompt "spoof_source feature"
	help
	  Enables the ability for source address spoofing.
	  This means that the host running syslog-ng generates
	  UDP packets with the source IP address matching the
	  original sender of the message. It is useful when
	  you want to perform some kind of preprocessing via
	  syslog-ng then forward messages to your central log
	  management solution with the source address of the
	  original sender. This option only works for UDP
	  destinations though the original message can be
	  received by TCP as well.

comment "runtime options   ---"

config SYSLOGNG_CONFIG
	bool
	default y
	prompt "Install configuration file"
	help
	  Installs (if present) the "./projectroot/etc/syslog-ng.conf"
	  file from your workspace, otherwise a generic one from the
	  ptxdist installation
	  ("<PTXDIST>/generic/etc/syslog-ng.conf").

config SYSLOGNG_STARTSCRIPT
	bool
	default y
	help
	  Installs (if present) the
	  "./projectroot/etc/init.d/syslog-ng" startscript from your
	  workspace, otherwise a generic one from the ptxdist
	  installation ("<PTXDIST>/generic/etc/init.d/syslog-ng").

endif