From: Peter Palfrader Date: Sun, 20 Mar 2011 23:16:32 +0000 (+0100) Subject: Experimentally enable stunnel between heininen and unger X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;ds=inline;h=da0daac848f0f8e481932be94be791f37fe8a9bf;p=mirror%2Fdsa-puppet.git Experimentally enable stunnel between heininen and unger --- diff --git a/manifests/site.pp b/manifests/site.pp index 924038c18..0c71c52d3 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -35,6 +35,28 @@ node default { finzi,fano,fasch,field: { include kfreebsd } } + case $hostname { + heininen: { + include "stunnel4" + stunnel4::stunnel_server { + "ekeyd": + accept => 18888, + connect => "127.0.0.1:8888", + ; + } + } + unger: { + include "stunnel4" + stunnel4::stunnel_client { + "ekeyd": + accept => "127.0.0.1:8888", + connecthost => "heininen.debian.org", + connectport => 18888, + ; + } + } + } + case $smartarraycontroller { "true": { include debian-proliant } }