Index: environs/cloudinit/cloudinit.go |
=== modified file 'environs/cloudinit/cloudinit.go' |
--- environs/cloudinit/cloudinit.go 2012-09-06 14:54:50 +0000 |
+++ environs/cloudinit/cloudinit.go 2012-09-07 10:13:33 +0000 |
@@ -24,9 +24,6 @@ |
// Creation of cloudinit data from this struct is largely provider-independent, |
// but we'll keep it internal until we need to factor it out. |
type MachineConfig struct { |
- // Provisioner specifies whether the new machine will run a provisioning agent. |
- Provisioner bool |
- |
// StateServer specifies whether the new machine will run a ZooKeeper |
// or MongoDB instance. |
StateServer bool |
@@ -139,11 +136,6 @@ |
if err := addAgentScript(c, cfg, "machine", fmt.Sprintf("--machine-id %d "+debugFlag, cfg.MachineId)); err != nil { |
return nil, err |
} |
- if cfg.Provisioner { |
- if err := addAgentScript(c, cfg, "provisioning", debugFlag); err != nil { |
- return nil, err |
- } |
- } |
// general options |
c.SetAptUpgrade(true) |