From d164f502a19a0a143e680033477ad8c6d65799eb Mon Sep 17 00:00:00 2001 From: June Date: Sun, 9 Jun 2024 00:33:24 +0200 Subject: [PATCH] docs: add help text doc. that reboot is a conv. alias for boot --reboot --- src/infra_rebuild/cli/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/infra_rebuild/cli/__init__.py b/src/infra_rebuild/cli/__init__.py index f8b5f6c..05cef25 100644 --- a/src/infra_rebuild/cli/__init__.py +++ b/src/infra_rebuild/cli/__init__.py @@ -50,7 +50,7 @@ def test(hosts, reboot): operations.run("test", hosts, reboot) -@infra_rebuild.command() +@infra_rebuild.command(short_help=" ", help="This operation is a convenience alias for boot --reboot.") @click.argument("hosts", nargs=-1) def reboot(hosts): operations.run("boot", hosts, True)