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

« back to all changes in this revision

Viewing changes to agent/mongo/mongo.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:
285
285
                " --noprealloc" +
286
286
                " --syslog" +
287
287
                " --smallfiles" +
288
 
                " --journal" +
289
288
                " --keyFile " + utils.ShQuote(sharedSecretPath(dataDir))
290
289
        if withHA {
291
290
                mongoCmd += " --replSet " + ReplicaSetName
374
373
                "--noprealloc",
375
374
                "--syslog",
376
375
                "--smallfiles",
377
 
                "--journal",
378
376
        )
379
377
        return cmd, nil
380
378
}