Update issue postfix

This commit is contained in:
gbucchino 2023-06-08 16:04:00 +02:00
parent 882cdf805f
commit 0312e1dbe4
3 changed files with 8 additions and 6 deletions

@ -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

File diff suppressed because one or more lines are too long