command/policy-list

This commit is contained in:
Mitchell Hashimoto
2015-04-01 18:45:11 -07:00
parent 933e790ad0
commit 4930e3885d
3 changed files with 114 additions and 0 deletions

78
command/policy_list.go Normal file
View File

@@ -0,0 +1,78 @@
package command
import (
"fmt"
"strings"
)
// PolicyListCommand is a Command that enables a new endpoint.
type PolicyListCommand struct {
Meta
}
func (c *PolicyListCommand) Run(args []string) int {
flags := c.Meta.FlagSet("policy-list", FlagSetDefault)
flags.Usage = func() { c.Ui.Error(c.Help()) }
if err := flags.Parse(args); err != nil {
return 1
}
args = flags.Args()
if len(args) != 0 {
flags.Usage()
c.Ui.Error(fmt.Sprintf(
"\npolicy-list expects zero arguments"))
return 1
}
client, err := c.Client()
if err != nil {
c.Ui.Error(fmt.Sprintf(
"Error initializing client: %s", err))
return 2
}
policies, err := client.Sys().ListPolicies()
if err != nil {
c.Ui.Error(fmt.Sprintf(
"Error: %s", err))
return 1
}
for _, p := range policies {
c.Ui.Output(p)
}
return 0
}
func (c *PolicyListCommand) Synopsis() string {
return "List the policies on the server"
}
func (c *PolicyListCommand) Help() string {
helpText := `
Usage: vault policy-list [options]
List the policies that are available.
This command lists the policies that are written to the Vault server.
General Options:
-address=TODO The address of the Vault server.
-ca-cert=path Path to a PEM encoded CA cert file to use to
verify the Vault server SSL certificate.
-ca-path=path Path to a directory of PEM encoded CA cert files
to verify the Vault server SSL certificate. If both
-ca-cert and -ca-path are specified, -ca-path is used.
-insecure Do not verify TLS certificate. This is highly
not recommended. This is especially not recommended
for unsealing a vault.
`
return strings.TrimSpace(helpText)
}