Make mongo 2.6 version selection less specific

This commit is contained in:
Michael Schmatz 2014-12-29 23:20:43 -05:00
parent c13922a2d8
commit ec99c93059

View file

@ -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.6.0","v2.6.1","v2.6.4","v2.6.5"]
allowedMongoVersions = ["v2.6"]
if which("mongod") and any(i in subprocess.check_output("mongod --version",shell=True) for i in allowedMongoVersions):
mongo_executable = "mongod"
else: