summaryrefslogtreecommitdiffstats
path: root/rules/rsyslog.in
blob: 0e24f883e0526d69161f4eee6bbbdfc3962547ac (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
## SECTION=networking

menuconfig RSYSLOG
	tristate
	select LIBC_DL
	select LIBC_RT
	select LIBC_PTHREAD
	select GCCLIBS_GCC_S
	# FIXME: still needs the headers even if zlib support is disabled
	select ZLIB		#if RSYSLOG_ZLIB
	select LIBNET		if RSYSLOG_OMUDPSPOOF
	prompt "rsyslog                       "
	help
	  FIXME

if RSYSLOG

config RSYSLOG_SYSTEMD_UNIT
	bool
	default y
	depends on SYSTEMD
	prompt "install systemd unit files for rsyslogd"

config RSYSLOG_REGEXP
	bool
	prompt "regular expression support"

config RSYSLOG_ZLIB
	bool
	prompt "zlib compression support"

config RSYSLOG_INET
	bool
	prompt "networking support"

config RSYSLOG_IMDIAG
	bool
	prompt "diag input module"

config RSYSLOG_IMFILE
	bool
	prompt "file input module"

config RSYSLOG_IMKLOG
	bool
	default y
	prompt "klog input module"

config RSYSLOG_IMMARK
	bool
	default y
	prompt "mark input module"

config RSYSLOG_IMPSTATS
	bool
	prompt "periodic statistics module"

config RSYSLOG_IMPTCP
	bool
	prompt "plain tcp input module"

config RSYSLOG_IMTCP
	bool
	default y
	prompt "tcp input module"

config RSYSLOG_IMUDP
	bool
	default y
	prompt "udp input module"

config RSYSLOG_IMUXSOCK
	bool
	default y
	prompt "unix domain socket input module"

config RSYSLOG_OMPROG
	bool
	prompt "program output module"

config RSYSLOG_OMUDPSPOOF
	bool
	prompt "spoofing network output module"

config RSYSLOG_OMSTDOUT
	bool
	prompt "stdout output module"

config RSYSLOG_OMUXSOCK
	bool
	prompt "unix domain socket output module"

config RSYSLOG_PMLASTMSG
	bool
	prompt "lastmsg parser module"

endif