Index: provider/azure/environ.go |
=== modified file 'provider/azure/environ.go' |
--- provider/azure/environ.go 2013-10-02 10:38:04 +0000 |
+++ provider/azure/environ.go 2013-10-15 04:38:40 +0000 |
@@ -245,7 +245,7 @@ |
} |
// Bootstrap is specified in the Environ interface. |
-func (env *azureEnviron) Bootstrap(cons constraints.Value, possibleTools tools.List) (err error) { |
+func (env *azureEnviron) Bootstrap(cons constraints.Value) (err error) { |
// The creation of the affinity group and the virtual network is specific to the Azure provider. |
err = env.createAffinityGroup() |
if err != nil { |
@@ -267,7 +267,7 @@ |
env.deleteVirtualNetwork() |
} |
}() |
- err = common.Bootstrap(env, cons, possibleTools) |
+ err = common.Bootstrap(env, cons) |
return err |
} |