echocat/puppet-mongodb

unable to install enterprise version of mongodb using module.

Closed this issue · 1 comments

Is there way to install enterprise version of mongo using this module

I dont know, if 10gen provides RPM or DEB packages for MongoDB enterprise. But I see, that you have to register to download it. So the modules repo will be useless. If you can download same package, then you can use the following parameters to disable the modules own repo manager and use your own repo (where you should store your enterprise packages)
And you can specify the name of the package (package_ensure)

So it can look like this:

node "mongoenterprise.my.domain" {

  include myownrepe::mongodb

  class { "mongodb":
    package_ensure =>  "mongoEnterprise-2.4.9-whatever",
    repo_manage => false"
  }
}