diff options
author | varac <varacanero@zeromail.org> | 2015-10-05 15:22:25 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2015-10-06 11:07:35 +0200 |
commit | 276b77cdcc0d169b84e046afe8763e2c52ff76fb (patch) | |
tree | d0d7ee2e7f0953df2be7d2a1fd55340e6ccffd90 /puppet/modules/tapicero/templates | |
parent | 133ba7d5af1659458996ef4f2d1cb8919b438394 (diff) |
[feat] remove tapicero leftovers
Soledad now creates user-dbs, which has been done by tapicero
in the past. we need to remove any leftovers from tapicero.
Diffstat (limited to 'puppet/modules/tapicero/templates')
-rw-r--r-- | puppet/modules/tapicero/templates/tapicero.yaml.erb | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/puppet/modules/tapicero/templates/tapicero.yaml.erb b/puppet/modules/tapicero/templates/tapicero.yaml.erb deleted file mode 100644 index 8b08b49c..00000000 --- a/puppet/modules/tapicero/templates/tapicero.yaml.erb +++ /dev/null @@ -1,52 +0,0 @@ -<%- require 'json' -%> - -# -# Default configuration options for Tapicero -# - -# couch connection configuration -connection: - protocol: "http" - host: "localhost" - port: <%= @couchdb_port %> - username: <%= @couchdb_admin_user %> - password: <%= @couchdb_admin_password %> - prefix : "" - suffix : "" - netrc: "/etc/couchdb/couchdb.netrc" - -# file to store the last processed user record in so we can resume after -# a restart: -seq_dir: "/var/lib/leap/tapicero/" - -# Configure log_file like this if you want to log to a file instead of syslog: -#log_file: "/var/log/leap/tapicero.log" -#log_level: debug -log_level: info - -# tapicero specific options -options: - # prefix for per user databases: - db_prefix: "user-" - mode: <%= @couchdb_mode %> -<%- if @couchdb_replication %> - replication: <%= @couchdb_replication.to_json %> -<%- end -%> - - # security settings to be used for the per user databases - security: - admins: - names: - # We explicitly allow the admin user to access per user databases, even - # though admin access ignores per database security we just do this to be - # explicit about this - - <%= @couchdb_admin_user %> - roles: [] - members: - names: - - <%= @couchdb_soledad_user %> - - <%= @couchdb_leap_mx_user %> - roles: - - replication - - |