On Fedora, when ceilometer is enabled and mongodb is used as backend,
devstack installation would fail due to missing mongodb client package.
This patch ensures the package gets installed.
Change-Id: I981bb55f86541e5ff19c52160269a7789b94423f
| ... | ... |
@@ -151,6 +151,8 @@ function configure_ceilometer() {
|
| 151 | 151 |
|
| 152 | 152 |
function configure_mongodb() {
|
| 153 | 153 |
if is_fedora; then |
| 154 |
+ # install mongodb client |
|
| 155 |
+ install_package mongodb |
|
| 154 | 156 |
# ensure smallfiles selected to minimize freespace requirements |
| 155 | 157 |
sudo sed -i '/--smallfiles/!s/OPTIONS=\"/OPTIONS=\"--smallfiles /' /etc/sysconfig/mongod |
| 156 | 158 |
|