summaryrefslogtreecommitdiff
path: root/manifests/update.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-04-04 12:36:24 -0400
committerMicah Anderson <micah@riseup.net>2013-04-04 12:36:24 -0400
commitdc367e53b45349ef849247fc93c664c548c90359 (patch)
tree14531add8c5bf7ac20f66c9dff0262319b7b0133 /manifests/update.pp
parent66d918ddb6454fd4a30baed9b49baad98e274243 (diff)
clean-up commit: lint, standardize spacing, properly enclose variables, etc
Diffstat (limited to 'manifests/update.pp')
-rw-r--r--manifests/update.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/update.pp b/manifests/update.pp
index 7e7be66..b7e6fc1 100644
--- a/manifests/update.pp
+++ b/manifests/update.pp
@@ -1,5 +1,6 @@
define couchdb::update ($db, $id, $data, $port='5984') {
- exec { "couch-doc-update --port $port --db $db --id $id --data \'$data\'":
+
+ exec { "couch-doc-update --port ${port} --db ${db} --id ${id} --data \'${data}\'":
require => Exec['wait_for_couchdb']
}
}