blob: 13f4ac179d6659df9c9af94472dc9a460058ded5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
define couchdb::bigcouch::document (
$db,
$id,
$host = '127.0.0.1:5986',
$data ='{}',
$ensure ='content') {
couchdb::document { $name:
ensure => $ensure,
host => $host,
db => $db,
id => $id,
data => $data
}
}
|