From fd8c6d9481910d7ee587cbd1098346da868f5068 Mon Sep 17 00:00:00 2001 From: varac Date: Thu, 1 Nov 2012 10:05:31 +0100 Subject: corrected ssl path --- manifests/ssl/deploy_cert.pp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'manifests/ssl') diff --git a/manifests/ssl/deploy_cert.pp b/manifests/ssl/deploy_cert.pp index cca5b21..4e9c158 100644 --- a/manifests/ssl/deploy_cert.pp +++ b/manifests/ssl/deploy_cert.pp @@ -1,7 +1,7 @@ define couchdb::ssl::deploy_cert ($cert, $key) { - +include couchdb::params file { 'couchdb_cert_directory': - path => "$couchdb::cert_path:", + path => "$couchdb::params::cert_path", ensure => 'directory', mode => '0600', owner => 'couchdb', @@ -9,7 +9,7 @@ define couchdb::ssl::deploy_cert ($cert, $key) { } file { 'couchdb_cert"': - path => "$couchdb::cert_path/server_cert.pem", + path => "$couchdb::params::cert_path/server_cert.pem", mode => '0644', owner => 'couchdb', group => 'couchdb', @@ -17,7 +17,7 @@ define couchdb::ssl::deploy_cert ($cert, $key) { } file { 'couchdb_key': - path => "$couchdb::cert_path/server_key.pem", + path => "$couchdb::params::cert_path/server_key.pem", mode => '0600', owner => 'couchdb', group => 'couchdb', -- cgit v1.2.3