aports/community/syslog-summary/02-new-python-magic.patch
Stuart Cardall fbbc0f0c76 community/syslog-summary: new aport
https://github.com/dpaleino/syslog-summary
Summarize the contents of a syslog log file / useful with logcheck

Patched to support:
 - new thread safe version of python-magic
 - socklog
2016-09-21 12:14:32 +02:00

17 lines
501 B
Diff

## use the new thread safe version of python-magic not the original ##
--- syslog-summary-1.14/syslog-summary
+++ syslog-summary-1.14/syslog-summary.new
@@ -130,9 +130,8 @@
"""Returns True if the filename is a gzipped compressed file"""
try:
import magic
- ms = magic.open(magic.MAGIC_NONE)
- ms.load()
- if re.search("^gzip compressed data.*", ms.file(filename)):
+ ms = magic.from_file(filename)
+ if re.search("^gzip compressed data.*", ms):
return True
else:
return False