Update status command

This commit is contained in:
Seth Vargo 2017-09-07 22:03:57 -04:00
parent c4ccbf3ab3
commit 05b18b8e4f
No known key found for this signature in database
GPG Key ID: C921994F9C27E0FF
1 changed files with 1 additions and 4 deletions

View File

@ -9,18 +9,15 @@ import (
"github.com/posener/complete"
)
// Ensure we are implementing the right interfaces.
var _ cli.Command = (*StatusCommand)(nil)
var _ cli.CommandAutocomplete = (*StatusCommand)(nil)
// StatusCommand is a Command that outputs the status of whether Vault is sealed
// or not as well as HA information.
type StatusCommand struct {
*BaseCommand
}
func (c *StatusCommand) Synopsis() string {
return "Prints seal and HA status"
return "Print seal and HA status"
}
func (c *StatusCommand) Help() string {