clan(help): improve install description #1274

Merged
clan-bot merged 1 commits from a-kenji-improve-clan-help into main 2024-04-26 09:49:50 +00:00
Showing only changes of commit a3f6996d69 - Show all commits

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)