diff options
author | varac <varacanero@zeromail.org> | 2012-12-10 23:36:48 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2012-12-10 23:36:48 +0100 |
commit | 3f0bbccb1b0020530ae4e4a0682fbf9f5f401e3b (patch) | |
tree | 9e55f411b2e465d92b6701bd2ff07dc19a4960b2 /puppet/modules/site_couchdb | |
parent | 3c52477a6c0cb4d4cc3caee2aea350acc51a5c8a (diff) |
couchdb: use x509 module to deploy certs (fixes #1063)
Diffstat (limited to 'puppet/modules/site_couchdb')
-rw-r--r-- | puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp b/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp index fb3477db..02aae0c3 100644 --- a/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp +++ b/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp @@ -10,20 +10,16 @@ define site_couchdb::apache_ssl_proxy ($key, $cert) { } apache::vhost::file { 'couchdb_proxy': } - file { '/etc/couchdb/server_cert.pem': - mode => '0644', - owner => 'couchdb', - group => 'couchdb', - content => $cert, - notify => Service[apache], + x509::key { + 'leap_couchdb': + content => $x509['key'], + notify => Service[apache]; } - file { '/etc/couchdb/server_key.pem': - mode => '0600', - owner => 'couchdb', - group => 'couchdb', - content => $key, - notify => Service[apache], + x509::cert { + 'leap_couchdb': + content => $x509['cert'], + notify => Service[apache]; } } |