summaryrefslogtreecommitdiff
path: root/manifests/params.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/params.pp')
-rw-r--r--manifests/params.pp18
1 files changed, 9 insertions, 9 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index 8993282..02d5f02 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -1,23 +1,23 @@
class couchdb::params {
- $bind_address = $couchdb_bind_address ? {
+ $bind_address = $::couchdb_bind_address ? {
'' => '127.0.0.1',
- default => $couchdb_bind_address,
+ default => $::couchdb_bind_address,
}
- $port = $couchdb_port ? {
+ $port = $::couchdb_port ? {
'' => '5984',
- default => $couchdb_port,
+ default => $::couchdb_port,
}
- $backupdir = $couchdb_backupdir ? {
+ $backupdir = $::couchdb_backupdir ? {
'' => '/var/backups/couchdb',
- default => $couchdb_backupdir,
+ default => $::couchdb_backupdir,
}
- $cert_path = $couchdb_cert_path ? {
- "" => "/etc/couchdb",
- default => $couchdb_cert_path,
+ $cert_path = $::couchdb_cert_path ? {
+ "" => '/etc/couchdb',
+ default => $::couchdb_cert_path,
}
}