6a3688c8edbb5e8b8ac5cb353b232e53261f1142
[mirror/dsa-puppet.git] / modules / syslog_ng / templates / syslog-ng.conf.erb
1 <%- if has_variable?("syslogversion") and @syslogversion.to_s == "3.1" -%>
2 @version: 3.0
3 <%- elsif has_variable?("syslogversion") and @syslogversion.to_s == "3.5" -%>
4 @version: 3.5
5 @include "scl.conf"
6 <%- elsif has_variable?("syslogversion") and @syslogversion.to_s == "3.8" -%>
7 @version: 3.8
8 @include "scl.conf"
9 <%- else -%>
10 @version: 3.3
11 @include "scl.conf"
12 <%- end -%>
13
14 ##
15 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
16 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
17 ##
18
19 #
20 # Configuration file for syslog-ng under Debian
21 #
22 # attempts at reproducing default syslog behavior
23
24 # the standard syslog levels are (in descending order of priority):
25 # emerg alert crit err warning notice info debug
26 # the aliases "error", "panic", and "warn" are deprecated
27 # the "none" priority found in the original syslogd configuration is
28 # only used in internal messages created by syslogd
29
30
31 ######
32 # options
33
34 options {
35         # disable the chained hostname format in logs
36         # (default is enabled)
37         chain_hostnames(1);
38
39         # the time to wait before a died connection is re-established
40         # (default is 60)
41         time_reopen(10);
42
43         # the time to wait before an idle destination file is closed
44         # (default is 60)
45         time_reap(360);
46
47         # the number of lines buffered before written to file
48         # you might want to increase this if your disk isn't catching with
49         # all the log messages you get or if you want less disk activity
50         # (say on a laptop)
51         # (default is 0)
52         #sync(0);
53
54         # the number of lines fitting in the output queue
55 <%- if has_variable?("syslogversion") and @syslogversion.to_s == "3.1" -%>
56         log_fifo_size(2048);
57 <%- else -%>
58         log_fifo_size(10000);
59 <%- end -%>
60
61         # enable or disable directory creation for destination files
62         create_dirs(yes);
63
64         # default owner, group, and permissions for log files
65         # (defaults are 0, 0, 0600)
66         #owner(root);
67         group(adm);
68         perm(0640);
69
70         # default owner, group, and permissions for created directories
71         # (defaults are 0, 0, 0700)
72         #dir_owner(root);
73         #dir_group(root);
74         dir_perm(0755);
75
76         # enable or disable DNS usage
77         # syslog-ng blocks on DNS queries, so enabling DNS may lead to
78         # a Denial of Service attack
79         # (default is yes)
80         use_dns(no);
81
82         # maximum length of message in bytes
83         # this is only limited by the program listening on the /dev/log Unix
84         # socket, glibc can handle arbitrary length log messages, but -- for
85         # example -- syslogd accepts only 1024 bytes
86         # (default is 2048)
87         #log_msg_size(2048);
88
89         #Disable statistic log messages.
90         stats_freq(0);
91
92         # Some program send log messages through a private implementation.
93         # and sometimes that implementation is bad. If this happen syslog-ng
94         # may recognise the program name as hostname. Whit this option
95         # we tell the syslog-ng that if a hostname match this regexp than that
96         # is not a real hostname.
97         bad_hostname("^gconfd$");
98
99         keep_hostname(no);
100
101         # We believe our own clock more than we believe the client clock.
102         keep_timestamp(no);
103 };
104
105
106 ######
107 # sources
108
109 # all known message sources
110 source s_local {
111         # message generated by Syslog-NG
112         internal();
113 <%- if has_variable?("syslogversion") and @syslogversion.to_s == "3.1" -%>
114         # standard Linux log source (this is the default place for the syslog()
115         # function to send logs to)
116         unix-stream("/dev/log");
117         # messages from the kernel
118         file("/proc/kmsg" program_override("kernel: "));
119 <%- else -%>
120         system();
121 <%- end -%>
122 };
123
124 <%- if (@hostname == "lotti") || (@hostname == "lully") || (@hostname == "loghost-grnet-01") -%>
125 source s_network {
126         tcp6(port(5140) max-connections(400)
127                 tls( key_file("/etc/exim4/ssl/thishost.key")
128                      cert_file("/etc/exim4/ssl/thishost.crt")
129                      ca_dir("/etc/exim4/ssl/")
130                 )
131         );
132 };
133 <%- end -%>
134
135
136 ######
137 # destinations
138
139 # some standard log files
140 destination df_auth { file("/var/log/auth.log"); };
141 destination df_syslog { file("/var/log/syslog"); };
142 destination df_cron { file("/var/log/cron.log"); };
143 destination df_daemon { file("/var/log/daemon.log"); };
144 destination df_kern { file("/var/log/kern.log"); };
145 destination df_lpr { file("/var/log/lpr.log"); };
146 destination df_mail { file("/var/log/mail.log" group(maillog)); };
147 # destination df_mail_info { file("/var/log/mail.info" group(maillog)); };
148 destination df_mail_warn { file("/var/log/mail.warn" group(maillog)); };
149 destination df_mail_err { file("/var/log/mail.err" group(maillog)); };
150 destination df_user { file("/var/log/user.log" perm(0644)); };
151 destination df_uucp { file("/var/log/uucp.log"); };
152
153 # these files are meant for the mail system log files
154 # and provide re-usable destinations for {mail,cron,...}.info,
155 # {mail,cron,...}.notice, etc.
156 destination df_facility_dot_info { file("/var/log/$FACILITY.info"); };
157 destination df_facility_dot_notice { file("/var/log/$FACILITY.notice"); };
158 destination df_facility_dot_warn { file("/var/log/$FACILITY.warn"); };
159 destination df_facility_dot_err { file("/var/log/$FACILITY.err"); };
160 destination df_facility_dot_crit { file("/var/log/$FACILITY.crit"); };
161
162 # these files are meant for the news system, and are kept separated
163 # because they should be owned by "news" instead of "root"
164 destination df_news_dot_notice { file("/var/log/news/news.notice" owner("news")); };
165 destination df_news_dot_err { file("/var/log/news/news.err" owner("news")); };
166 destination df_news_dot_crit { file("/var/log/news/news.crit" owner("news")); };
167
168 # some more classical and useful files found in standard syslog configurations
169 destination df_debug { file("/var/log/debug"); };
170 destination df_messages { file("/var/log/messages"); };
171
172 <%- if @kernel == 'Linux' -%>
173 # pipes
174 # a console to view log messages under X
175 destination dp_xconsole { pipe("/dev/xconsole"); };
176
177 <%- end -%>
178 # consoles
179 # this will send messages to everyone logged in
180 destination du_all { usertty("*"); };
181
182
183 ######
184 # filters
185
186 # all messages from the auth and authpriv facilities
187 filter f_auth { facility(auth, authpriv); };
188
189 # all messages except from the auth and authpriv facilities
190 filter f_syslog { not facility(auth, authpriv, mail); };
191
192 # respectively: messages from the cron, daemon, kern, lpr, mail, news, user,
193 # and uucp facilities
194 filter f_cron { facility(cron); };
195 filter f_daemon { facility(daemon); };
196 filter f_kern { facility(kern); };
197 filter f_lpr { facility(lpr); };
198 filter f_mail { facility(mail); };
199 filter f_news { facility(news); };
200 filter f_user { facility(user); };
201 filter f_uucp { facility(uucp); };
202
203 # some filters to select messages of priority greater or equal to info, warn,
204 # and err
205 # (equivalents of syslogd's *.info, *.warn, and *.err)
206 filter f_at_least_info { level(info..emerg); };
207 filter f_at_least_notice { level(notice..emerg); };
208 filter f_at_least_warn { level(warn..emerg); };
209 filter f_at_least_err { level(err..emerg); };
210 filter f_at_least_crit { level(crit..emerg); };
211
212 # all messages of priority debug not coming from the auth, authpriv, news, and
213 # mail facilities
214 filter f_debug { level(debug) and not facility(auth, authpriv, news, mail); };
215
216 # all messages of info, notice, or warn priority not coming form the auth,
217 # authpriv, cron, daemon, mail, and news facilities
218 filter f_messages {
219         level(info,notice,warn)
220             and not facility(auth,authpriv,cron,daemon,mail,news);
221 };
222
223 # messages with priority emerg
224 filter f_emerg { level(emerg); };
225
226 <%- if @kernel == 'Linux' -%>
227 # complex filter for messages usually sent to the xconsole
228 filter f_xconsole {
229     facility(daemon,mail)
230         or level(debug,info,notice,warn)
231         or (facility(news)
232                 and level(crit,err,notice));
233 };
234
235 <%- end -%>
236
237 # order matters if you use "flags(final);" to mark the end of processing in a
238 # "log" statement
239
240 ###############################################################################
241 ########## ON LOG CLIENTS #####################################################
242 ###############################################################################
243 ###############################################################################
244 ###############################################################################
245 # all log clients, including the log server, log their locally created
246 # messages to the standard places.
247
248 # auth,authpriv.*                 /var/log/auth.log
249 log {
250         source(s_local);
251         filter(f_auth);
252         destination(df_auth);
253 };
254
255 # *.*;auth,authpriv.none          -/var/log/syslog
256 log {
257         source(s_local);
258         filter(f_syslog);
259         destination(df_syslog);
260 };
261
262 # this is commented out in the default syslog.conf
263 # cron.*                         /var/log/cron.log
264 #log {
265 #        source(s_local);
266 #        filter(f_cron);
267 #        destination(df_cron);
268 #};
269
270 # daemon.*                        -/var/log/daemon.log
271 log {
272         source(s_local);
273         filter(f_daemon);
274         destination(df_daemon);
275 };
276
277 # kern.*                          -/var/log/kern.log
278 log {
279         source(s_local);
280         filter(f_kern);
281         destination(df_kern);
282 };
283
284 # lpr.*                           -/var/log/lpr.log
285 log {
286         source(s_local);
287         filter(f_lpr);
288         destination(df_lpr);
289 };
290
291 # mail.*                          -/var/log/mail.log
292 log {
293         source(s_local);
294         filter(f_mail);
295         destination(df_mail);
296 };
297
298 # user.*                          -/var/log/user.log
299 log {
300         source(s_local);
301         filter(f_user);
302         destination(df_user);
303 };
304
305 # uucp.*                          /var/log/uucp.log
306 log {
307         source(s_local);
308         filter(f_uucp);
309         destination(df_uucp);
310 };
311
312 # mail.info                       -/var/log/mail.info
313 #log {
314 #        source(s_local);
315 #        filter(f_mail);
316 #        filter(f_at_least_info);
317 #        destination(df_mail_info);
318 #};
319
320 # mail.warn                       -/var/log/mail.warn
321 log {
322         source(s_local);
323         filter(f_mail);
324         filter(f_at_least_warn);
325         destination(df_mail_warn);
326 };
327
328 # mail.err                        /var/log/mail.err
329 log {
330         source(s_local);
331         filter(f_mail);
332         filter(f_at_least_err);
333         destination(df_mail_err);
334 };
335
336 # news.crit                       /var/log/news/news.crit
337 log {
338         source(s_local);
339         filter(f_news);
340         filter(f_at_least_crit);
341         destination(df_news_dot_crit);
342 };
343
344 # news.err                        /var/log/news/news.err
345 log {
346         source(s_local);
347         filter(f_news);
348         filter(f_at_least_err);
349         destination(df_news_dot_err);
350 };
351
352 # news.notice                     /var/log/news/news.notice
353 log {
354         source(s_local);
355         filter(f_news);
356         filter(f_at_least_notice);
357         destination(df_news_dot_notice);
358 };
359
360
361 # *.=debug;\
362 #         auth,authpriv.none;\
363 #         news.none;mail.none     -/var/log/debug
364 log {
365         source(s_local);
366         filter(f_debug);
367         destination(df_debug);
368 };
369
370
371 # *.=info;*.=notice;*.=warn;\
372 #         auth,authpriv.none;\
373 #         cron,daemon.none;\
374 #         mail,news.none          -/var/log/messages
375 log {
376         source(s_local);
377         filter(f_messages);
378         destination(df_messages);
379 };
380
381 # *.emerg                         *
382 log {
383         source(s_local);
384         filter(f_emerg);
385         destination(du_all);
386 };
387
388
389 <%- if @kernel == 'Linux' -%>
390 # daemon.*;mail.*;\
391 #         news.crit;news.err;news.notice;\
392 #         *.=debug;*.=info;\
393 #         *.=notice;*.=warn       |/dev/xconsole
394 log {
395         source(s_local);
396         filter(f_xconsole);
397         destination(dp_xconsole);
398 };
399 <%- end -%>
400
401
402  <%- if @hostname != "lotti" -%>
403 destination loghost-lotti {
404         tcp("lotti.debian.org" port (5140)
405                 tls( key_file("/etc/ssl/private/thishost.key")
406                      cert_file("/etc/ssl/debian/certs/thishost.crt")
407                      ca_dir("/etc/ssl/debian/certs/")
408                 )
409         );
410 };
411  <%- end -%>
412   <%- if @hostname != "lully" -%>
413 destination loghost-lully {
414         tcp("lully.debian.org" port (5140)
415                 tls( key_file("/etc/ssl/private/thishost.key")
416                      cert_file("/etc/ssl/debian/certs/thishost.crt")
417                      ca_dir("/etc/ssl/debian/certs/")
418                 )
419         );
420 };
421  <%- end -%>
422   <%- if @hostname != "loghost-grnet-01" -%>
423 destination loghost-loghost-grnet-01 {
424         tcp("loghost-grnet-01.debian.org" port (5140)
425                 tls( key_file("/etc/ssl/private/thishost.key")
426                      cert_file("/etc/ssl/debian/certs/thishost.crt")
427                      ca_dir("/etc/ssl/debian/certs/")
428                 )
429         );
430 };
431  <%- end -%>
432
433 log {
434         source(s_local);
435  <%- if @hostname != "lotti" -%>
436         destination(loghost-lotti);
437  <%- end -%>
438  <%- if @hostname != "lully" -%>
439         destination(loghost-lully);
440  <%- end -%>
441  <%- if @hostname != "loghost-grnet-01" -%>
442         destination(loghost-loghost-grnet-01);
443  <%- end -%>
444 };
445
446
447
448 <%- if (@hostname == "lotti") || (@hostname == "lully") || (@hostname == "loghost-grnet-01") -%>
449 ###############################################################################
450 ########## ON LOG HOST ########################################################
451 ###############################################################################
452 ###############################################################################
453 #
454 # The log server, additionally, also logs all local and remote messages to
455 # a few special places.
456 destination hostdest_auth           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/auth.log"
457                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
458 destination hostdest_syslog         { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/syslog"
459                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
460 destination hostdest_cron           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/cron.log"
461                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
462 destination hostdest_daemon         { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/daemon.log"
463                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
464 destination hostdest_kern           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/kern.log"
465                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
466 destination hostdest_lpr            { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/lpr.log"
467                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
468 destination hostdest_mail           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/mail.log"
469                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
470 destination hostdest_news           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/news.log"
471                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
472 destination hostdest_user           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/user.log"
473                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
474 destination hostdest_uucp           { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/uucp.log"
475                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
476 destination hostdest_debug          { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/debug"
477                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
478 destination hostdest_messages       { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/messages"
479                                       owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
480
481
482 #----------------------------------------------------------------------
483 #  Special catch all destination hostdest_sorting by host
484 #----------------------------------------------------------------------
485 destination hostdest_facility_dot_info   { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.info"
486                                            owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
487 destination hostdest_facility_dot_notice { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.notice"
488                                            owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
489 destination hostdest_facility_dot_warn   { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.warn"
490                                            owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
491 destination hostdest_facility_dot_err    { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.err"
492                                            owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
493 destination hostdest_facility_dot_crit   { file("/var/log/hosts/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.crit"
494                                            owner(root) group(adm) perm(0640) dir_perm(0755) create_dirs(yes) dir_owner(root) dir_group(adm)); };
495
496
497 #----------------------------------------------------------------------
498 #  Catch all log files
499 #----------------------------------------------------------------------
500 destination df_ALL_auth { file("/var/log/auth-all.log"); };
501 destination df_ALL_mail { file("/var/log/mail-all.log"); };
502 destination df_ALL_syslog { file("/var/log/syslog-all"); };
503
504 log { source(s_local);
505       source(s_network);
506       filter(f_auth); destination(hostdest_auth); };
507 log { source(s_local);
508       source(s_network);
509       filter(f_syslog); destination(hostdest_syslog); };
510 log { source(s_local);
511       source(s_network);
512       filter(f_daemon); destination(hostdest_daemon); };
513 log { source(s_local);
514       source(s_network);
515       filter(f_kern); destination(hostdest_kern); };
516 log { source(s_local);
517       source(s_network);
518       filter(f_lpr); destination(hostdest_lpr); };
519 log { source(s_local);
520       source(s_network);
521       filter(f_mail); destination(hostdest_mail); };
522 log { source(s_local);
523       source(s_network);
524       filter(f_news); destination(hostdest_mail); };
525 log { source(s_local);
526       source(s_network);
527       filter(f_user); destination(hostdest_user); };
528 log { source(s_local);
529       source(s_network);
530       filter(f_uucp); destination(hostdest_uucp); };
531 log { source(s_local);
532       source(s_network);
533       filter(f_debug); destination(hostdest_debug); };
534 log { source(s_local);
535       source(s_network);
536       filter(f_messages); destination(hostdest_messages); };
537
538 log { source(s_local);
539       source(s_network);
540       filter(f_mail); filter(f_at_least_info); destination(hostdest_facility_dot_info); };
541 log { source(s_local);
542       source(s_network);
543       filter(f_mail); filter(f_at_least_warn); destination(hostdest_facility_dot_warn); };
544 log { source(s_local);
545       source(s_network);
546       filter(f_mail); filter(f_at_least_err); destination(hostdest_facility_dot_err); };
547
548
549 ## catch all:
550 log { source(s_local);
551       source(s_network);
552       filter(f_auth); destination(df_ALL_auth); };
553 log { source(s_local);
554       source(s_network);
555       filter(f_mail); destination(df_ALL_mail); };
556 log { source(s_local);
557       source(s_network);
558       filter(f_syslog); destination(df_ALL_syslog); };
559 <%- end -%>