summaryrefslogtreecommitdiffstats
path: root/rules/rsyslog.in
blob: eab69d67646dd0239988262ecdcf2e2207365da0 (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
99
100
101
102
103
104
## SECTION=networking

menuconfig RSYSLOG
	tristate
	select LIBC_DL
	select LIBC_RT
	select LIBC_PTHREAD
	select GCCLIBS_GCC_S
	select ZLIB
	select LIBESTR
	select JSON_C
	select LIBNET		if RSYSLOG_OMUDPSPOOF
	select SYSTEMD		if RSYSLOG_SYSTEMD
	prompt "rsyslog                       "
	help
	  FIXME

if RSYSLOG

config RSYSLOG_SYSTEMD
	bool
	default INITMETHOD_SYSTEMD

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

config RSYSLOG_REGEXP
	bool
	# 8.8.0 fail to build without regex support
	default y
	prompt "regular expression support" if BROKEN

config RSYSLOG_INET
	bool
	# 8.8.0 fail to run without inet support
	default y
	prompt "networking support" if BROKEN

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