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

Side by Side Diff: cmd/juju/bootstrap.go

Issue 6819115: environs: add a certificate argument to Bootstrap
Patch Set: environs: add a certificate argument to Bootstrap Created 12 years, 4 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:
View unified diff | Download patch
« no previous file with comments | « cmd/builddb/main.go ('k') | environs/dummy/environs.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "launchpad.net/juju-core/environs" 6 "launchpad.net/juju-core/environs"
7 ) 7 )
8 8
9 // BootstrapCommand is responsible for launching the first machine in a juju 9 // BootstrapCommand is responsible for launching the first machine in a juju
10 // environment, and setting up everything necessary to continue working. 10 // environment, and setting up everything necessary to continue working.
(...skipping 15 matching lines...) Expand all
26 return cmd.CheckEmpty(f.Args()) 26 return cmd.CheckEmpty(f.Args())
27 } 27 }
28 28
29 // Run connects to the environment specified on the command line and bootstraps 29 // Run connects to the environment specified on the command line and bootstraps
30 // a juju in that environment if none already exists. 30 // a juju in that environment if none already exists.
31 func (c *BootstrapCommand) Run(_ *cmd.Context) error { 31 func (c *BootstrapCommand) Run(_ *cmd.Context) error {
32 environ, err := environs.NewFromName(c.EnvName) 32 environ, err := environs.NewFromName(c.EnvName)
33 if err != nil { 33 if err != nil {
34 return err 34 return err
35 } 35 }
36 » return environ.Bootstrap(c.UploadTools) 36 » // TODO (rog) use juju.Bootstrap
37 » return environ.Bootstrap(c.UploadTools, []byte("fake cert"))
37 } 38 }
OLDNEW
« no previous file with comments | « cmd/builddb/main.go ('k') | environs/dummy/environs.go » ('j') | no next file with comments »

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