summaryrefslogtreecommitdiff
path: root/manifests/base.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/base.pp')
-rw-r--r--manifests/base.pp14
1 files changed, 14 insertions, 0 deletions
diff --git a/manifests/base.pp b/manifests/base.pp
new file mode 100644
index 0000000..0671d07
--- /dev/null
+++ b/manifests/base.pp
@@ -0,0 +1,14 @@
+class couchdb::base {
+
+ package {"couchdb":
+ ensure => present,
+ }
+
+ service {"couchdb":
+ ensure => running,
+ hasstatus => true,
+ enable => true,
+ require => Package["couchdb"],
+ }
+
+}