From e6910974ca9fea8b1c685c29242e75fa09151d4e Mon Sep 17 00:00:00 2001 From: Charlotte Brandhorst-Satzkorn Date: Fri, 12 Jan 2024 09:26:04 -0800 Subject: [PATCH] cmd/tailscale/cli: add description to exit-node CLI command This change adds a description to the exit-node CLI command. This description will be displayed when using `tailscale -h` and `tailscale exit-node -h`. Fixes #10787 Signed-off-by: Charlotte Brandhorst-Satzkorn --- cmd/tailscale/cli/exitnode.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/tailscale/cli/exitnode.go b/cmd/tailscale/cli/exitnode.go index 60fc8dc86..77e2453d0 100644 --- a/cmd/tailscale/cli/exitnode.go +++ b/cmd/tailscale/cli/exitnode.go @@ -23,6 +23,8 @@ import ( var exitNodeCmd = &ffcli.Command{ Name: "exit-node", ShortUsage: "exit-node [flags]", + ShortHelp: "Show machines on your tailnet configured as exit nodes", + LongHelp: "Show machines on your tailnet configured as exit nodes", Subcommands: []*ffcli.Command{ { Name: "list",