First commit

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2022-11-01 13:28:53 +01:00
commit 4b912741cb
73 changed files with 3753 additions and 0 deletions

View file

@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
from .GrepLog import GrepLog
class PostStartup(GrepLog): # export
def __init__(self, regex = None, log_glob=None, act_timeout=2, total_timeout=None):
if regex is None:
regex = 'done with post-startup start'
super().__init__(regex=regex, log_glob=log_glob, act_timeout=act_timeout, total_timeout=total_timeout)