Formatting

parent 73e723e5
...@@ -90,33 +90,29 @@ def parseArgumentTupleAndReturnSlapgridObject(*argument_tuple): ...@@ -90,33 +90,29 @@ def parseArgumentTupleAndReturnSlapgridObject(*argument_tuple):
parser.add_argument("--supervisord-socket", parser.add_argument("--supervisord-socket",
help="The socket supervisor will use.") help="The socket supervisor will use.")
parser.add_argument("--supervisord-configuration-path", parser.add_argument("--supervisord-configuration-path",
help="The location where supervisord configuration " help="The location where supervisord configuration will be stored.")
"will be stored.") parser.add_argument("--usage-report-periodicity", type=int, default="24",
parser.add_argument("--usage-report-periodicity",
type=int, default="24",
help="The periodicity of usage report sends, in hours.") help="The periodicity of usage report sends, in hours.")
parser.add_argument("--buildout", help="Location of buildout binary.", parser.add_argument("--buildout", default=None,
default=None) help="Location of buildout binary.")
parser.add_argument("--pidfile", parser.add_argument("--pidfile",
help="The location where pidfile will be created.") help="The location where pidfile will be created.")
parser.add_argument("--logfile", parser.add_argument("--logfile",
help="The location where slapgrid logfile will be " help="The location where slapgrid logfile will be created.")
"created.")
parser.add_argument("--key_file", help="SSL Authorisation key file.") parser.add_argument("--key_file", help="SSL Authorisation key file.")
parser.add_argument("--cert_file", parser.add_argument("--cert_file",
help="SSL Authorisation certificate file.") help="SSL Authorisation certificate file.")
parser.add_argument("--signature_private_key_file", help="Signature private " parser.add_argument("--signature_private_key_file",
"key file.") help="Signature private key file.")
parser.add_argument("--master_ca_file", help="Root certificate of SlapOS " parser.add_argument("--master_ca_file",
"master key.") help="Root certificate of SlapOS master key.")
parser.add_argument("--certificate_repository_path", parser.add_argument("--certificate_repository_path",
help="Path to directory where downloaded certificates would be stored.") help="Path to directory where downloaded certificates would be stored.")
parser.add_argument("-c", "--console", action="store_true", default=False, parser.add_argument("-c", "--console", action="store_true", default=False,
help="Enables console output and live output from subcommands.") help="Enables console output and live output from subcommands.")
parser.add_argument("-v", "--verbose", action="store_true", default=False, parser.add_argument("-v", "--verbose", action="store_true", default=False,
help="Be verbose.") help="Be verbose.")
parser.add_argument("--promise-timeout", parser.add_argument("--promise-timeout", type=int, default=3,
type=int, default=3,
help="Promise timeout in seconds.") help="Promise timeout in seconds.")
parser.add_argument("configuration_file", nargs=1, type=argparse.FileType(), parser.add_argument("configuration_file", nargs=1, type=argparse.FileType(),
help="SlapOS configuration file.") help="SlapOS configuration file.")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment