summaryrefslogtreecommitdiff
path: root/puppet/modules/site_shorewall/manifests/couchdb.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-04-02 16:55:12 -0400
committerMicah Anderson <micah@riseup.net>2013-04-02 16:55:12 -0400
commitee1555bd9091e1ffe66e54856d2bde72d50a7e60 (patch)
treee0268d29d31eb6fbb5412bd76965d62240dc14a6 /puppet/modules/site_shorewall/manifests/couchdb.pp
parentc849ef699d6426b3161f901eea625247cdefbef5 (diff)
firewall: remove no longer needed epmd port
Diffstat (limited to 'puppet/modules/site_shorewall/manifests/couchdb.pp')
-rw-r--r--puppet/modules/site_shorewall/manifests/couchdb.pp6
1 files changed, 1 insertions, 5 deletions
diff --git a/puppet/modules/site_shorewall/manifests/couchdb.pp b/puppet/modules/site_shorewall/manifests/couchdb.pp
index 6a8c2cf2..1ef91bb0 100644
--- a/puppet/modules/site_shorewall/manifests/couchdb.pp
+++ b/puppet/modules/site_shorewall/manifests/couchdb.pp
@@ -6,16 +6,12 @@ class site_shorewall::couchdb {
$couch_server = $stunnel['couch_server']
$couch_stunnel_port = $couch_server['accept']
- # Erlang Port Mapper daemon, used for communication between
- # bigcouch cluster nodes
- $portmapper_port = '5369'
-
# see http://stackoverflow.com/questions/8459949/bigcouch-cluster-connection-issue#comment10467603_8463814
$erlang_vm_port = '9001'
# define macro for incoming services
file { '/etc/shorewall/macro.leap_couchdb':
- content => "PARAM - - tcp ${couch_stunnel_port},${portmapper_port},${erlang_vm_port}",
+ content => "PARAM - - tcp ${couch_stunnel_port},${erlang_vm_port}",
notify => Service['shorewall'],
require => Package['shorewall']
}