diff options
author | varac <varacanero@zeromail.org> | 2017-02-27 10:09:09 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2017-02-27 10:09:09 +0100 |
commit | dea0638d978b4fab1f6ebe9f20ba51a3cb0effdd (patch) | |
tree | 3d81655c343f2ad7ed46d7d5bed5aa2bca2724e8 | |
parent | ec0aca98c1ce2af5d85432dc041e6a092b77b458 (diff) |
Install stunnel4 from jessie-backports
The jessie version randonly closes the connection prematurely
see https://0xacab.org/leap/platform/issues/8746
- Resolves: #8746
-rw-r--r-- | puppet/modules/site_stunnel/manifests/init.pp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/puppet/modules/site_stunnel/manifests/init.pp b/puppet/modules/site_stunnel/manifests/init.pp index a874721f..5f53d576 100644 --- a/puppet/modules/site_stunnel/manifests/init.pp +++ b/puppet/modules/site_stunnel/manifests/init.pp @@ -5,6 +5,15 @@ class site_stunnel { + # Install stunnel4 from jessie-backports because the + # jessie version randonly closes the connection prematurely + # see https://0xacab.org/leap/platform/issues/8746 + apt::preferences_snippet { 'stunnel4': + package => 'stunnel4', + release => "${::lsbdistcodename}-backports", + priority => 999; + } + # include the generic stunnel module # increase the number of open files to allow for 800 connections class { 'stunnel': default_extra => 'ulimit -n 4096' } @@ -45,4 +54,3 @@ class site_stunnel { include site_stunnel::override_service } - |