diff options
author | Micah Anderson <micah@riseup.net> | 2013-01-29 15:17:28 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-01-29 15:17:28 -0500 |
commit | 93054f283f7f6e4e04fa9ddf901158654a62e9df (patch) | |
tree | 5a63067ee094838c573526ff9bacfa1640ef582d /puppet/modules/site_couchdb/manifests | |
parent | fd72a5e2a5f044003544602ebfa59dbaac685324 (diff) |
eliminate dynamic lookup deprecation warnings for site_couchdb::apache_ssl_proxy
Diffstat (limited to 'puppet/modules/site_couchdb/manifests')
-rw-r--r-- | puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp b/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp index 02aae0c3..7739473e 100644 --- a/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp +++ b/puppet/modules/site_couchdb/manifests/apache_ssl_proxy.pp @@ -12,13 +12,13 @@ define site_couchdb::apache_ssl_proxy ($key, $cert) { x509::key { 'leap_couchdb': - content => $x509['key'], + content => $key, notify => Service[apache]; } x509::cert { 'leap_couchdb': - content => $x509['cert'], + content => $cert, notify => Service[apache]; } |