From bbd013c0d9c1b5f723551f14552909b031dc6dd4 Mon Sep 17 00:00:00 2001 From: Wouter de Bruijn Date: Thu, 13 Feb 2025 14:39:09 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Added=20missing=20cli=20argument?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zabbixci/cli.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/zabbixci/cli.py b/zabbixci/cli.py index 852a618..7602ad1 100644 --- a/zabbixci/cli.py +++ b/zabbixci/cli.py @@ -133,6 +133,10 @@ def read_args(args: list[str] | None = None): "--image-prefix-path", help="The path in the git repository, used to store the images", ) + zabbixci_group.add_argument( + "--icon-map-prefix-path", + help="The path in the git repository, used to store the icon maps", + ) zabbixci_group.add_argument( "--template-whitelist", help="Comma separated list of templates to include", @@ -284,12 +288,21 @@ def read_args(args: list[str] | None = None): "--git-keypassphrase", help="SSH key passphrase, used for ssh authentication", ) + git_group.add_argument( + "--git-author-name", + help="Git author name", + ) + git_group.add_argument( + "--git-author-email", + help="Git author email", + ) zabbixci_advanced_group = method_parser.add_argument_group("ZabbixCI advanced") # ZabbixCI advanced zabbixci_advanced_group.add_argument( "-v", + "--verbose", help="Enable verbose logging", dest="verbose", const=True,