|
It is odd that for Ubuntu we provide sample commands to set up repos for each of the supported OS releases:
echo "deb http://repo.mongodb.com/apt/ubuntu precise/mongodb-enterprise/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
|
echo "deb http://repo.mongodb.com/apt/ubuntu trusty/mongodb-enterprise/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
|
echo "deb http://repo.mongodb.com/apt/ubuntu xenial/mongodb-enterprise/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
|
But for Debian we provide commands for Debian 7 Wheezy only:
echo "deb http://repo.mongodb.com/apt/debian wheezy/mongodb-enterprise/3.2 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
|
echo "deb http://repo.mongodb.com/apt/debian wheezy/mongodb-enterprise/2.6 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise-2.6.list
|
We should make the documentation to be consistent - the installation instructions for Debian should provide sample commands for all of the supported OS releaases just like we have it with Ubuntu. I.e. we need to add these:
echo "deb http://repo.mongodb.com/apt/debian jessie/mongodb-enterprise/3.2 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
|
echo "deb http://repo.mongodb.com/apt/debian jessie/mongodb-enterprise/2.6 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise-2.6.list
|
And for the 3.4 docs add this:
echo "deb http://repo.mongodb.com/apt/debian jessie/mongodb-enterprise/3.4 main" | sudo tee /etc/apt/sources.list.d/mongodb-enterprise.list
|
This should be done for both - for the Enterprise and for the Community edition docs.
|