summaryrefslogtreecommitdiff
path: root/puppet/modules/site_ca_daemon/manifests/couchdb.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-04-10 12:27:39 -0400
committerMicah Anderson <micah@riseup.net>2013-04-10 12:36:49 -0400
commit92f565f349266f7c5adfc88b31d0d2902431efa4 (patch)
tree97e02aaae69fb05e67d625befd63a84f5aeb1505 /puppet/modules/site_ca_daemon/manifests/couchdb.pp
parent7cb8deafbb02d42c6cd4af4b19d9d269e3d4bf42 (diff)
clean up ca_daemon things, it is not used any longer because it has been included in the web app (#1978)
remove site_ca_daemon module and configuration in site.pp as well as the provider_base/services/ca.json
Diffstat (limited to 'puppet/modules/site_ca_daemon/manifests/couchdb.pp')
-rw-r--r--puppet/modules/site_ca_daemon/manifests/couchdb.pp16
1 files changed, 0 insertions, 16 deletions
diff --git a/puppet/modules/site_ca_daemon/manifests/couchdb.pp b/puppet/modules/site_ca_daemon/manifests/couchdb.pp
deleted file mode 100644
index f446a05b..00000000
--- a/puppet/modules/site_ca_daemon/manifests/couchdb.pp
+++ /dev/null
@@ -1,16 +0,0 @@
-class site_ca_daemon::couchdb {
-
- $ca = hiera('ca_daemon')
- $couchdb_host = $ca['couchdb_hosts']
- $couchdb_user = $ca['couchdb_user']['username']
- $couchdb_password = $ca['couchdb_user']['password']
-
- file {
- '/etc/leap/leap_ca.yaml':
- content => template('site_ca_daemon/leap_ca.yaml.erb'),
- owner => leap_ca_daemon,
- group => leap_ca_daemon,
- mode => '0600';
- }
-
-}