From 06d65f79218628aa962f73529fd2876a11a07a2f Mon Sep 17 00:00:00 2001 From: Spitap Date: Thu, 31 Oct 2024 12:01:18 +0100 Subject: [PATCH] imported arguments --- run.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/run.py b/run.py index 90e243a..78cd78b 100755 --- a/run.py +++ b/run.py @@ -124,11 +124,17 @@ def main(input_args): help="For script usage, do not require user interaction " "backup will be saved at ./modoboa_backup/Backup_M_Y_d_H_M " "if --backup-path is not provided") + parser.add_argument( + "--no-mail", action="store_true", default=False, + help="Disable mail backup (save space)") parser.add_argument( "--restore", type=str, metavar="path", help="Restore a previously backup up modoboa instance on a NEW machine. " "You MUST provide backup directory" ) + parser.add_argument( + "--skip-checks", action="store_true", default=False, + help="Skip the checks the installer performs initially") parser.add_argument("domain", type=str, help="The main domain of your future mail server") args = parser.parse_args(input_args)