1
0
forked from clan/clan-core

Merge pull request 'clan(help): improve install description' (#1274) from a-kenji-improve-clan-help into main

This commit is contained in:
clan-bot 2024-04-26 09:49:50 +00:00
commit 4602c06835

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)