|
Hello, in the docs for Ops Manager 2.0 (current), step #2 reads
Issue the following command to set up a yum repository definition:
[mongodb-org-3.2]
|
name=MongoDB Repository
|
baseurl=https://repo.mongodb.org/yum/amazon/2013.03/mongodb-org/3.2/x86_64/
|
gpgcheck=0
|
enabled=1
|
It should read
Issue the following command to set up a yum repository definition:
echo "[mongodb-org-3.2]
|
name=MongoDB Repository
|
baseurl=https://repo.mongodb.org/yum/amazon/2013.03/mongodb-org/3.2/x86_64/
|
gpgcheck=0
|
enabled=1" | sudo tee /etc/yum.repos.d/mongodb.repo
|
To be precise, instead of listing what that contents of yum repo should be, this command actually sets it.
This is also incorrect in the 2.1-pre (upcoming) version, but appears to be correct in the Ops Manager 1.8 docs.
Thanks,
Amit
|