Merge branch 'master-oss' into sethvargo/cli-magic

This commit is contained in:
Jeff Mitchell
2018-01-03 14:02:31 -05:00
1088 changed files with 95212 additions and 45132 deletions

View File

@@ -138,7 +138,7 @@ func (c *AuthListCommand) detailedMounts(auths map[string]*api.AuthMount) []stri
}
}
out := []string{"Path | Type | Accessor | Plugin | Default TTL | Max TTL | Replication | Description"}
out := []string{"Path | Type | Accessor | Plugin | Default TTL | Max TTL | Replication | Seal Wrap | Description"}
for _, path := range paths {
mount := auths[path]
@@ -150,7 +150,7 @@ func (c *AuthListCommand) detailedMounts(auths map[string]*api.AuthMount) []stri
replication = "local"
}
out = append(out, fmt.Sprintf("%s | %s | %s | %s | %s | %s | %v | %s",
out = append(out, fmt.Sprintf("%s | %s | %s | %s | %s | %s | %s | %t | %s",
path,
mount.Type,
mount.Accessor,
@@ -158,6 +158,7 @@ func (c *AuthListCommand) detailedMounts(auths map[string]*api.AuthMount) []stri
defaultTTL,
maxTTL,
replication,
mount.SealWrap,
mount.Description,
))
}