Files
mongo/db/repl/testing.js
Dwight e70ce01e32 rs
2010-05-05 16:33:35 -04:00

19 lines
366 B
JavaScript

// helpers for testing repl sets
// run
// mongo --shell testing.js
cfg = {
_id: 'asdf',
members: [
{ _id : 0, host : "dm_hp" },
{ _id : 2, host : "dm_hp:27002" }
]
};
db = db.getSisterDB("admin");
local = db.getSisterDB("local");
print("\nswitched to admin db\n");
function rc(c) { return db.runCommand(c); }