From c88c973fa714b14c51764e5669ea2c95c2aad34d Mon Sep 17 00:00:00 2001
From: Michael Schmatz <michaelschmatz@gmail.com>
Date: Mon, 10 Mar 2014 14:18:34 -0700
Subject: [PATCH] Added 2.6.0-rc1 to allowed Mongo versions

---
 bin/coco-mongodb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/coco-mongodb b/bin/coco-mongodb
index be4f285ed..4ff889493 100755
--- a/bin/coco-mongodb
+++ b/bin/coco-mongodb
@@ -71,7 +71,7 @@ def which(cmd, mode=os.F_OK | os.X_OK, path=None):
 
 
 current_directory = os.path.dirname(os.path.realpath(sys.argv[0]))
-allowedMongoVersions = ["v2.5.4","v2.5.5"]
+allowedMongoVersions = ["v2.5.4","v2.5.5","v2.6.0-rc1"]
 if which("mongod") and any(i in subprocess.check_output("mongod --version",shell=True) for i in allowedMongoVersions):
     mongo_executable = "mongod"
 else: