Update issue postfix
This commit is contained in:
parent
882cdf805f
commit
0312e1dbe4
@ -2,5 +2,6 @@
|
|||||||
|
|
||||||
def postfix() -> dict:
|
def postfix() -> dict:
|
||||||
postfix = dict()
|
postfix = dict()
|
||||||
|
postfix['regexp'] = "inet_interfaces = all"
|
||||||
|
postfix['replace'] = "inet_interfaces = loopback-only"
|
||||||
return postfix
|
return postfix
|
||||||
|
@ -2,20 +2,20 @@ import re
|
|||||||
from json import dumps
|
from json import dumps
|
||||||
|
|
||||||
class ParsingBase:
|
class ParsingBase:
|
||||||
def __init__(self, objects, audit):
|
def __init__(self, objects, audit) -> None:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def runParsing(self):
|
def runParsing(self) -> None:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def _parseFile(self, fdata):
|
def _parseFile(self, fdata) -> None:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def _parsingFile(self, line, item) -> dict:
|
def _parsingFile(self, line, item) -> None:
|
||||||
"""
|
"""
|
||||||
This function parse the line and try to find the item in it
|
This function parse the line and try to find the item in it
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def getResults(self) -> dict:
|
def getResults(self) -> None:
|
||||||
pass
|
pass
|
||||||
|
1
reports/reports_2023_06_08.html
Normal file
1
reports/reports_2023_06_08.html
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user