summaryrefslogtreecommitdiff
path: root/bigcouch.pp
diff options
context:
space:
mode:
Diffstat (limited to 'bigcouch.pp')
-rw-r--r--bigcouch.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/bigcouch.pp b/bigcouch.pp
new file mode 100644
index 0000000..ecf7c90
--- /dev/null
+++ b/bigcouch.pp
@@ -0,0 +1,12 @@
+class couchdb::bigcouch {
+ package { 'bigcouch':
+ ensure => installed,
+ }
+ file { '/opt/bigcouch/etc/vm.args':
+ source => template('couchdb/bigcouch/vm.args'),
+ mode => '0644',
+ owner => 'bigcouch',
+ group => 'bigcouch',
+ require => Package['bigcouch']
+ }
+}