summaryrefslogtreecommitdiff
path: root/puppet/modules/site_stunnel
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-09-13 16:20:07 +0200
committervarac <varacanero@zeromail.org>2013-09-13 16:20:07 +0200
commit3e5e685200e9b5c3ac8567100e552929ea55d8e8 (patch)
tree0c02d9ac2eb4f7aed93c3a4212d6511db9cebfc7 /puppet/modules/site_stunnel
parent3a9569ca027dccef87509323f08407e60039d9a9 (diff)
setup stunnel config to use default x509 cert,key+ca (#3837)
* fix stunnel setups for couchdb, mx, webapp services
Diffstat (limited to 'puppet/modules/site_stunnel')
-rw-r--r--puppet/modules/site_stunnel/manifests/setup.pp18
1 files changed, 0 insertions, 18 deletions
diff --git a/puppet/modules/site_stunnel/manifests/setup.pp b/puppet/modules/site_stunnel/manifests/setup.pp
deleted file mode 100644
index 2309800b..00000000
--- a/puppet/modules/site_stunnel/manifests/setup.pp
+++ /dev/null
@@ -1,18 +0,0 @@
-define site_stunnel::setup ($cert_name, $key, $cert, $ca_name, $ca) {
-
- include site_stunnel
-
- x509::key {
- $cert_name:
- content => $key,
- notify => Service['stunnel'];
- }
-
- x509::cert {
- $cert_name:
- content => $cert,
- notify => Service['stunnel'];
- }
-
-}
-