~dave-cheney/juju-core/057-environs-config-default-series-tests

« back to all changes in this revision

Viewing changes to environs/dummy/environs.go

environs: split bootstrap certificate/key

It's more consistent with the way we treat cert/key
pairs elsewhere.

R=gz, john.meinel, TheMue
CC=
https://codereview.appspot.com/6782103

Show diffs side-by-side

added added

removed removed

Lines of Context:
376
376
        return e.state.name
377
377
}
378
378
 
379
 
func (e *environ) Bootstrap(uploadTools bool, certAndKey []byte) error {
 
379
func (e *environ) Bootstrap(uploadTools bool, cert, key []byte) error {
380
380
        defer delay()
381
381
        if err := e.checkBroken("Bootstrap"); err != nil {
382
382
                return err