1
0
forked from clan/clan-core

clan(help): improve install description

This commit is contained in:
a-kenji 2024-04-26 11:42:18 +02:00
parent 39d6edc673
commit a3f6996d69

View File

@ -29,5 +29,13 @@ def register_parser(parser: argparse.ArgumentParser) -> None:
list_parser = subparser.add_parser("list", help="List machines")
register_list_parser(list_parser)
install_parser = subparser.add_parser("install", help="Install a machine")
install_parser = subparser.add_parser(
"install",
help="Install a machine",
description="""
Install a configured machine over the network.
The target must be a Linux based system reachable via SSH.
Installing a machine means overwriting the target's disk.
""",
)
register_install_parser(install_parser)