From 0ee2eea8201d5c9d41b7f80e7d1499415e40650d Mon Sep 17 00:00:00 2001 From: Revant Nandgaonkar Date: Wed, 25 Dec 2024 12:22:09 +0530 Subject: [PATCH] docs(easy-install): update README --- README.md | 6 ++++++ easy-install.py | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 32dd1edcd..c9444c65a 100755 --- a/README.md +++ b/README.md @@ -97,6 +97,8 @@ options: -h, --help show this help message and exit -n PROJECT, --project PROJECT Project Name + -g, --cronstring CRONSTRING + Backup Cronstring, default: "@every 6h" -i IMAGE, --image IMAGE Full Image Name -q, --no-ssl No https @@ -138,6 +140,8 @@ options: -h, --help show this help message and exit -n PROJECT, --project PROJECT Project Name + -g, --cronstring CRONSTRING + Backup Cronstring, default: "@every 6h" -i IMAGE, --image IMAGE Full Image Name -q, --no-ssl No https @@ -163,6 +167,8 @@ options: -h, --help show this help message and exit -n PROJECT, --project PROJECT Project Name + -g, --cronstring CRONSTRING + Backup Cronstring, default: "@every 6h" -i IMAGE, --image IMAGE Full Image Name -q, --no-ssl No https diff --git a/easy-install.py b/easy-install.py index 57f6231ca..7f9e50bf8 100755 --- a/easy-install.py +++ b/easy-install.py @@ -527,7 +527,12 @@ def add_setup_options(parser: argparse.ArgumentParser): def add_common_parser(parser: argparse.ArgumentParser): parser = add_project_option(parser) - parser.add_argument("-g", "--cronstring", help="Cronstring", default="@every 6h") + parser.add_argument( + "-g", + "--cronstring", + help='Backup Cronstring, default: "@every 6h"', + default="@every 6h", + ) parser.add_argument("-i", "--image", help="Full Image Name") parser.add_argument( "-m", "--http-port", help="Http port in case of no-ssl", default="8080"