mirror of https://github.com/fail2ban/fail2ban
amend to 7520d250b0
(#2444): don't use default flags (SYSTEM) if journalfiles are specified (similar journalflags set to 0);
fix failure of testJournalFilesArg and cover both cases now.pull/2517/head
parent
19052d9789
commit
39d9133baa
|
@ -91,7 +91,9 @@ class FilterSystemd(JournalFilter): # pragma: systemd no cover
|
|||
try:
|
||||
args['flags'] = int(kwargs.pop('journalflags'))
|
||||
except KeyError:
|
||||
args['flags'] = 4
|
||||
# be sure all journal types will be opened if files specified (don't set flags):
|
||||
if 'files' not in args or not len(args['files']):
|
||||
args['flags'] = 4
|
||||
|
||||
return args
|
||||
|
||||
|
|
|
@ -1280,6 +1280,11 @@ def get_monitor_failures_journal_testcase(Filter_): # pragma: systemd no cover
|
|||
jrnlfile = self._getRuntimeJournal()
|
||||
self._initFilter(journalfiles=jrnlfile)
|
||||
|
||||
def testJournalFilesAndFlagsArgs(self):
|
||||
# retrieve current system journal path
|
||||
jrnlfile = self._getRuntimeJournal()
|
||||
self._initFilter(journalfiles=jrnlfile, journalflags=0)
|
||||
|
||||
def testJournalPathArg(self):
|
||||
# retrieve current system journal path
|
||||
jrnlpath = self._getRuntimeJournal()
|
||||
|
|
Loading…
Reference in New Issue