cmd/storagenode: Add long description to ge command

Add a long description to the graceful exit command to clearly mention
that the command is interactive asking which satellite the SNO wants to
exit.

Change-Id: Icd4056a470e707322f600133e63d9dc56eb877b7
This commit is contained in:
Ivan Fraixedes 2020-06-16 15:30:44 +02:00 committed by Michal Niewrzal
parent 51dfc6bf4f
commit 37cfc01ac6

View File

@ -71,8 +71,11 @@ var (
Annotations: map[string]string{"type": "helper"},
}
gracefulExitInitCmd = &cobra.Command{
Use: "exit-satellite",
Short: "Initiate graceful exit",
Use: "exit-satellite",
Short: "Initiate graceful exit",
Long: "Initiate gracefule exit.\n" +
"The command shows the list of the available satellites that can be exited " +
"and ask for choosing one.",
RunE: cmdGracefulExitInit,
Annotations: map[string]string{"type": "helper"},
}