LEFT | RIGHT |
1 package main | 1 package main |
2 | 2 |
3 import ( | 3 import ( |
4 "launchpad.net/gnuflag" | 4 "launchpad.net/gnuflag" |
5 "launchpad.net/juju-core/cmd" | 5 "launchpad.net/juju-core/cmd" |
6 "os" | 6 "os" |
7 ) | 7 ) |
8 | 8 |
9 // When we import an environment provider implementation | 9 // When we import an environment provider implementation |
10 // here, it will register itself with environs, and hence | 10 // here, it will register itself with environs, and hence |
(...skipping 10 matching lines...) Expand all Loading... |
21 ` | 21 ` |
22 | 22 |
23 // Main registers subcommands for the juju executable, and hands over control | 23 // Main registers subcommands for the juju executable, and hands over control |
24 // to the cmd package. This function is not redundant with main, because it | 24 // to the cmd package. This function is not redundant with main, because it |
25 // provides an entry point for testing with arbitrary command line arguments. | 25 // provides an entry point for testing with arbitrary command line arguments. |
26 func Main(args []string) { | 26 func Main(args []string) { |
27 juju := &cmd.SuperCommand{Name: "juju", Doc: jujuDoc, Log: &cmd.Log{}} | 27 juju := &cmd.SuperCommand{Name: "juju", Doc: jujuDoc, Log: &cmd.Log{}} |
28 juju.Register(&AddUnitCommand{}) | 28 juju.Register(&AddUnitCommand{}) |
29 juju.Register(&BootstrapCommand{}) | 29 juju.Register(&BootstrapCommand{}) |
30 juju.Register(&DeployCommand{}) | 30 juju.Register(&DeployCommand{}) |
31 » juju.Register(&DestroyCommand{}) | 31 » juju.Register(&DestroyEnvironmentCommand{}) |
32 juju.Register(&ExposeCommand{}) | 32 juju.Register(&ExposeCommand{}) |
33 juju.Register(&StatusCommand{}) | 33 juju.Register(&StatusCommand{}) |
34 juju.Register(&UnexposeCommand{}) | 34 juju.Register(&UnexposeCommand{}) |
35 juju.Register(&UpgradeJujuCommand{}) | 35 juju.Register(&UpgradeJujuCommand{}) |
36 os.Exit(cmd.Main(juju, cmd.DefaultContext(), args[1:])) | 36 os.Exit(cmd.Main(juju, cmd.DefaultContext(), args[1:])) |
37 } | 37 } |
38 | 38 |
39 func main() { | 39 func main() { |
40 Main(os.Args) | 40 Main(os.Args) |
41 } | 41 } |
42 | 42 |
43 func addEnvironFlags(name *string, f *gnuflag.FlagSet) { | 43 func addEnvironFlags(name *string, f *gnuflag.FlagSet) { |
44 f.StringVar(name, "e", "", "juju environment to operate in") | 44 f.StringVar(name, "e", "", "juju environment to operate in") |
45 f.StringVar(name, "environment", "", "") | 45 f.StringVar(name, "environment", "", "") |
46 } | 46 } |
LEFT | RIGHT |