summaryrefslogtreecommitdiff
path: root/puppet/modules/site_couchdb/manifests/init.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-04-04 12:50:30 -0400
committerMicah Anderson <micah@riseup.net>2013-04-04 12:50:30 -0400
commit2c53c5023b925cb596e3f450f194482eade1fbeb (patch)
tree2f29b02cf9be45209212bd08cfa453554b97e264 /puppet/modules/site_couchdb/manifests/init.pp
parentc228491af3929e07766903c3ce29a06fab86ad63 (diff)
add Erlang Distributed Node Protocol Port json entry under bigcouch
setup ednp_server and ednp_client stunnels update couchdb puppet submodule to support configurable ednp_port parameter and general module cleanup pass ednp_port to couchdb setup so that it is configured in the vm.args template clarify in comments the difference between the epmd and ednp ports remove hard-coded erlang_vm_port variable and instead setup shorewall to allow for the stunnel connection only setup dnat rules for the ednp client connections
Diffstat (limited to 'puppet/modules/site_couchdb/manifests/init.pp')
-rw-r--r--puppet/modules/site_couchdb/manifests/init.pp7
1 files changed, 5 insertions, 2 deletions
diff --git a/puppet/modules/site_couchdb/manifests/init.pp b/puppet/modules/site_couchdb/manifests/init.pp
index 0fc951c2..9ffa4122 100644
--- a/puppet/modules/site_couchdb/manifests/init.pp
+++ b/puppet/modules/site_couchdb/manifests/init.pp
@@ -21,10 +21,13 @@ class site_couchdb ( $bigcouch = false ) {
$bigcouch_config = $couchdb_config['bigcouch']
$bigcouch_cookie = $bigcouch_config['cookie']
- class {'couchdb':
+ $ednp_port = $bigcouch_config['ednp_port']
+
+ class { 'couchdb':
bigcouch => $bigcouch,
admin_pw => $couchdb_admin_pw,
- bigcouch_cookie => $bigcouch_cookie
+ bigcouch_cookie => $bigcouch_cookie,
+ ednp_port => $ednp_port
}
include couchdb::bigcouch::package::cloudant