diff options
author | Micah Anderson <micah@riseup.net> | 2013-04-04 15:40:04 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-04-04 15:40:04 -0400 |
commit | 78cd7a3a6e098448efa9e8623d1bc5c81d7a393a (patch) | |
tree | 0bbb4eb0e2fec6e74441ccade1a931a753285bdd /puppet | |
parent | c4397077adb35cf5ec05976e2918bacdd3960703 (diff) |
fix missing comma
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/modules/site_webapp/manifests/couchdb.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/site_webapp/manifests/couchdb.pp b/puppet/modules/site_webapp/manifests/couchdb.pp index 8dfe6e12..50c6f9d7 100644 --- a/puppet/modules/site_webapp/manifests/couchdb.pp +++ b/puppet/modules/site_webapp/manifests/couchdb.pp @@ -48,7 +48,7 @@ class site_webapp::couchdb { cert_name => $cert_name, key => $key, cert => $cert, - ca_name => $ca_name + ca_name => $ca_name, ca => $ca } |