diff options
Diffstat (limited to 'puppet/modules')
| -rw-r--r-- | puppet/modules/site_shorewall/manifests/couchdb.pp | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/puppet/modules/site_shorewall/manifests/couchdb.pp b/puppet/modules/site_shorewall/manifests/couchdb.pp index 04b608e2..6a8c2cf2 100644 --- a/puppet/modules/site_shorewall/manifests/couchdb.pp +++ b/puppet/modules/site_shorewall/manifests/couchdb.pp @@ -2,7 +2,10 @@ class site_shorewall::couchdb {    include site_shorewall::defaults -  $couchdb_port = '6984' +  $stunnel = hiera('stunnel') +  $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' @@ -12,12 +15,11 @@ class site_shorewall::couchdb {    # define macro for incoming services    file { '/etc/shorewall/macro.leap_couchdb': -    content => "PARAM   -       -       tcp    ${couchdb_port},${portmapper_port},${erlang_vm_port}", +    content => "PARAM   -       -       tcp    ${couch_stunnel_port},${portmapper_port},${erlang_vm_port}",      notify  => Service['shorewall'],      require => Package['shorewall']    } -    shorewall::rule {        'net2fw-couchdb':          source      => 'net', | 
