~mfoord/juju-core/ha-rsyslog-2

« back to all changes in this revision

Viewing changes to state/apiserver/provisioner/provisioner.go

  • Committer: Michael Foord
  • Date: 2014-05-22 14:23:16 UTC
  • mfrom: (2728.22.5 009-ha-rsyslog-api)
  • Revision ID: michael.foord@canonical.com-20140522142316-hd3u3yyfi2xydzei
Merge back to good revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
        cfg[container.ConfigName] = "juju"
204
204
        switch args.Type {
205
205
        case instance.LXC:
206
 
                if useLxcClone, ok := config.LXCUseClone(); ok {
207
 
                        cfg["use-clone"] = fmt.Sprint(useLxcClone)
208
 
                }
209
 
                if useLxcCloneAufs, ok := config.LXCUseCloneAUFS(); ok {
210
 
                        cfg["use-aufs"] = fmt.Sprint(useLxcCloneAufs)
211
 
                }
 
206
                cfg["use-clone"] = fmt.Sprint(config.LXCUseClone())
212
207
        }
213
208
        result.ManagerConfig = cfg
214
209
        return result, nil