From: Peter Palfrader Date: Thu, 20 Aug 2015 07:06:40 +0000 (+0200) Subject: Get rid of search replication stunnel X-Git-Url: https://git.donarmstrong.com/?p=dsa-puppet.git;a=commitdiff_plain;h=ac0a4f6fbe55ce6b2eba7ded7ce573922a240d74 Get rid of search replication stunnel It interacts badly with how xapian does network. In particular, when the server closes the connection, stunnel does too, not sending to the client any remaining data. --- diff --git a/modules/roles/manifests/search_backend.pp b/modules/roles/manifests/search_backend.pp index 3b14a675..cc365046 100644 --- a/modules/roles/manifests/search_backend.pp +++ b/modules/roles/manifests/search_backend.pp @@ -1,6 +1,3 @@ class roles::search_backend { - stunnel4::server { 'searchsync': - accept => '17010', - connect => 7010, - } + } diff --git a/modules/roles/manifests/search_frontend.pp b/modules/roles/manifests/search_frontend.pp index 0b37015b..a790cac1 100644 --- a/modules/roles/manifests/search_frontend.pp +++ b/modules/roles/manifests/search_frontend.pp @@ -1,9 +1,4 @@ class roles::search_frontend { - stunnel4::client { 'searchsync': - accept => '127.0.0.1:7010', - connecthost => 'wolkenstein.debian.org', - connectport => 17010, - } ssl::service { 'search.debian.org': notify => Service['apache2'], }