Example #1
0
func SubCommand() cli.Command {
	return cli.Command{
		Name:   "setup",
		Usage:  "setup [regexp]",
		Action: commands.AnvilAction(setupAction),
	}
}
Example #2
0
func SubCommand() cli.Command {
	return cli.Command{
		Name:   "destroy",
		Usage:  "destroy [regexp]",
		Action: commands.AnvilAction(destroyAction),
	}
}
Example #3
0
func SubCommand() cli.Command {
	return cli.Command{
		Name:   "login",
		Usage:  "login [regexp]",
		Action: commands.AnvilAction(loginAction),
	}
}
Example #4
0
func SubCommand() cli.Command {
	return cli.Command{
		Name:   "provision",
		Usage:  "provision [regexp]",
		Action: commands.AnvilAction(provisionAction),
	}
}
Example #5
0
func SubCommand() cli.Command {
	return cli.Command{
		Name:   "status",
		Usage:  "status [regexp]",
		Action: commands.AnvilAction(statusAction),
	}
}
Example #6
0
func SubCommand() cli.Command {
	return cli.Command{
		Name:   "verify",
		Usage:  "verify [regexp]",
		Action: commands.AnvilAction(verifyAction),
	}
}
Example #7
0
func SubCommand() cli.Command {
	return cli.Command{
		Name:   "test",
		Usage:  "test [regexp]",
		Action: commands.AnvilAction(testAction),
		Flags:  buildFlags(),
	}
}