From 74cff4b198fab7f7a22eb157510a9168b5763e66 Mon Sep 17 00:00:00 2001 From: jtimberman Date: Thu, 19 Aug 2010 09:27:32 -0600 Subject: [PATCH] COOK-325, add system true to users --- metadata.json | 28 ++++++++++++++-------------- metadata.rb | 2 +- recipes/source.rb | 1 + 3 files changed, 16 insertions(+), 15 deletions(-) diff --git a/metadata.json b/metadata.json index b6d3adf..577bcfc 100644 --- a/metadata.json +++ b/metadata.json @@ -1,18 +1,24 @@ { - "recommendations": { + "providing": { }, "attributes": { }, "maintainer": "Opscode, Inc.", - "suggestions": { + "replacing": { }, "dependencies": { "erlang": [ ] }, + "recipes": { + "couchdb": "Installs and configures CouchDB package", + "couchdb::source": "Installs and configures CouchDB from source" + }, "maintainer_email": "cookbooks@opscode.com", - "conflicting": { + "groupings": { + }, + "recommendations": { }, "platforms": { "rhel": [ @@ -38,18 +44,12 @@ ] }, "license": "Apache 2.0", - "version": "0.13.2", - "providing": { - }, - "recipes": { - "couchdb": "Installs and configures CouchDB package", - "couchdb::source": "Installs and configures CouchDB from source" - }, - "replacing": { + "version": "0.13.3", + "suggestions": { }, "name": "couchdb", - "description": "Installs CouchDB package and starts service", - "groupings": { + "conflicting": { }, - "long_description": "Installs the CouchDB package if it is available from an package repository on\nthe node. If the package repository is not available, CouchDB needs to be \ninstalled via some other method, either a backported package, or compiled \ndirectly from source. CouchDB is available on Red Hat-based systems through\nthe EPEL Yum Repository.\n" + "long_description": "Installs the CouchDB package if it is available from an package repository on\nthe node. If the package repository is not available, CouchDB needs to be \ninstalled via some other method, either a backported package, or compiled \ndirectly from source. CouchDB is available on Red Hat-based systems through\nthe EPEL Yum Repository.\n", + "description": "Installs CouchDB package and starts service" } \ No newline at end of file diff --git a/metadata.rb b/metadata.rb index 36cce92..837608b 100644 --- a/metadata.rb +++ b/metadata.rb @@ -9,7 +9,7 @@ directly from source. CouchDB is available on Red Hat-based systems through the EPEL Yum Repository. EOH -version "0.13.2" +version "0.13.3" depends "erlang" recipe "couchdb", "Installs and configures CouchDB package" recipe "couchdb::source", "Installs and configures CouchDB from source" diff --git a/recipes/source.rb b/recipes/source.rb index c70770c..4222876 100644 --- a/recipes/source.rb +++ b/recipes/source.rb @@ -46,6 +46,7 @@ home "/usr/local/var/lib/couchdb" comment "CouchDB Administrator" supports :manage_home => false + system true end %w{ var/lib/couchdb var/log/couchdb var/run etc/couchdb }.each do |dir|