]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blob - pkgs/core/syslog-ng/logextract
Remove legacy build system.
[people/ms/ipfire-3.x.git] / pkgs / core / syslog-ng / logextract
1 #!/usr/bin/python
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007, 2008, 2009 Michael Tremer & Christian Schmidt #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 import os
23 import sys
24 import re
25
26 # This is a default log extractor deamon the whole logline will be given when
27 # called by syslog, the deamon checks periodicly for new lines from stdin, if
28 # there is one it´ll read otherwise it´ll loop
29
30 def main():
31 while 1:
32 # Reads the line from stdin, if none break
33 data = sys.stdin.readline()
34 if not data: break
35 try:
36 # When there is input do something with it
37 f = open("/tmp/somefile", "w")
38 f.write("%s\n" % data)
39 f.close()
40 except:
41 break
42 main()
43 sys.exit(0)