source: trunk/host/debian/scripts-syslog-ng-config/debian/transform_syslog-ng.conf.scripts @ 2419

Last change on this file since 2419 was 2419, checked in by achernya, 11 years ago
Actually have a .transform script
File size: 350 bytes
Line 
1#!/bin/sh
2
3cat
4cat <<EOF
5
6# Zephyr to scripts
7destination d_zroot { program("/usr/lib/scripts-syslog-ng-config/d_zroot.pl"); };
8filter f_oom { facility(kern) and (message("Out of memory:") or message("Killed process")); };
9log { source(s_src); filter(f_auth); destination(d_zroot); };
10log { source(s_src); filter(f_oom); destination(d_zroot); };
11EOF
Note: See TracBrowser for help on using the repository browser.