CLI help: drop remaining 'default domain' wording

This commit is contained in:
2026-09-07 02:07:05 +00:00
parent f2e6f5784e
commit d767012d80
+4 -4
View File
@@ -228,12 +228,12 @@ def main():
"--rp-id",
action="append",
help="Relying Party ID of the initial domain(s) (default: localhost). "
"Repeatable and comma-separated; the first is the default domain. "
"Repeatable and comma-separated; bootstrap options apply to the first. "
"Further domains are added via the admin interface.",
)
init_parser.add_argument(
"--rp-name",
help="Relying Party name of the default domain (default: same as rp-id). "
help="Relying Party name of the first domain (default: same as rp-id). "
"Used by the initial admin registration; editable later via admin UI.",
)
init_parser.add_argument(
@@ -241,12 +241,12 @@ def main():
action="append",
dest="origins",
metavar="URL",
help="Allowed origin URL(s) for the default domain. May be specified "
help="Allowed origin URL(s) for the first domain. May be specified "
"multiple times; comma-separated values accepted.",
)
init_parser.add_argument(
"--auth-host",
help="Dedicated authentication site for the default domain "
help="Dedicated authentication site for the first domain "
"(optionally with scheme/port)",
)
_add_listen_option(init_parser, help_extra=" (stored in the database)")