From 489b64b4efa07db8fbce29b22b67be26d0d03640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A9ri=20Le=20Bouder?= Date: Sat, 8 Feb 2014 01:39:39 +0100 Subject: [PATCH] mongo: disable bind_ip parameter commit 93028bc for mongodb to use $os_params::api_eth,. This breaks different part of the code where we try to connect to mongo using 127.0.0.1. For example in manifests/telemetry/server.pp and $os_params::mongodb_address. For the moment, I set it to undef. See: #186 --- manifests/database/nosql.pp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/manifests/database/nosql.pp b/manifests/database/nosql.pp index 0a62242e..0c73aae5 100644 --- a/manifests/database/nosql.pp +++ b/manifests/database/nosql.pp @@ -18,7 +18,11 @@ # Install a nosql server (MongoDB) # class cloud::database::nosql( - $bind_ip = $os_params::api_eth, + # $bind_ip = $os_params::api_eth, + # disabled for the moment + # See: https://github.com/enovance/puppet-cloud/issues/186 + $bind_ip = undef, + $nojournal = false, ) { # bind_ip should be an array