last changes and fix + new benchmarks

This commit is contained in:
Domingo Dirutigliano
2025-02-18 23:03:46 +01:00
parent 5ef38df66a
commit 16f6b6a8fb
15 changed files with 499 additions and 6 deletions

View File

@@ -104,7 +104,7 @@ def gen_args(args_to_parse: list[str]|None = None):
parser_start.add_argument('--psw-on-web', required=False, help='Setup firegex password on the web interface', action="store_true", default=False)
parser_start.add_argument('--port', "-p", type=int, required=False, help='Port where open the web service of the firewall', default=4444)
parser_start.add_argument('--logs', required=False, action="store_true", help='Show firegex logs', default=False)
parser_start.add_argument('--version', '-v', required=False, type=str , help='Version of the firegex image to use', default="latest")
parser_start.add_argument('--version', '-v', required=False, type=str , help='Version of the firegex image to use', default=None)
#Stop Command
parser_stop = subcommands.add_parser('stop', help='Stop the firewall')