Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(14)

Delta Between Two Patch Sets: cmd/juju/main.go

Issue 6498085: cmd/jujud: implement upgrade-juju command
Left Patch Set: cmd/jujud: implement upgrade-juju command Created 12 years, 7 months ago
Right Patch Set: cmd/jujud: implement upgrade-juju command Created 12 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « cmd/juju/cmd_test.go ('k') | cmd/juju/main_test.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b