Don't output warning about not storing the token if the user uses

-token-only during `vault login`.
This commit is contained in:
Jeff Mitchell 2018-03-01 21:02:54 -05:00
parent 2646ed5e2a
commit e073e7fc68
1 changed files with 2 additions and 1 deletions

View File

@ -321,7 +321,8 @@ func (c *LoginCommand) Run(args []string) int {
"use the value set by this command, unset the VAULT_TOKEN environment "+
"variable or set it to the token displayed below.") + "\n")
}
} else {
} else if !c.flagTokenOnly {
// If token-only the user knows it won't be stored, so don't warn
c.UI.Warn(wrapAtLength(
"The token was not stored in token helper. Set the VAULT_TOKEN "+
"environment variable or pass the token below with each request to "+