Skip to content

Commit

Permalink
diaspora cookbook added
Browse files Browse the repository at this point in the history
  • Loading branch information
mdxp committed Sep 16, 2010
1 parent f758bb0 commit adefa9f
Show file tree
Hide file tree
Showing 5 changed files with 133 additions and 0 deletions.
8 changes: 8 additions & 0 deletions diaspora/README.rdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
= DESCRIPTION:

= REQUIREMENTS:

= ATTRIBUTES:

= USAGE:

21 changes: 21 additions & 0 deletions diaspora/attributes/default.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#
# Author:: Marius Ducea ([email protected])
# Cookbook Name:: diaspora
# Attributes:: diaspora
#
# Copyright 2010, Promet Solutions
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

default.diaspora[:dir] = "/usr/local"
50 changes: 50 additions & 0 deletions diaspora/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"recipes": {
},
"replacing": {
},
"attributes": {
},
"maintainer_email": "[email protected]",
"groupings": {
},
"dependencies": {
"mongodb": [

],
"xml": [

],
"git": [

],
"imagemagick": [

],
"build-essential": [

]
},
"recommendations": {
},
"long_description": "= DESCRIPTION:\n\n= REQUIREMENTS:\n\n= ATTRIBUTES: \n\n= USAGE:\n\n",
"suggestions": {
},
"platforms": {
"debian": [

],
"ubuntu": [

]
},
"license": "Apache 2.0",
"version": "0.1.0",
"conflicting": {
},
"name": "diaspora",
"providing": {
},
"description": "Installs/Configures diaspora",
"maintainer": "Promet Solutions"
}
13 changes: 13 additions & 0 deletions diaspora/metadata.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
maintainer "Promet Solutions"
maintainer_email "[email protected]"
license "Apache 2.0"
description "Installs/Configures diaspora"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
version "0.1"

%w{ xml imagemagick git build-essential mongodb }.each do |cb|
depends cb
end
%w{ ubuntu debian }.each do |os|
supports os
end
41 changes: 41 additions & 0 deletions diaspora/recipes/default.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#
# Author:: Marius Ducea ([email protected])
# Cookbook Name:: diaspora
# Recipe:: default
#
# Copyright 2010, Promet Solutions
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

include_recipe "build-essential"
include_recipe "xml"
include_recipe "imagemagick"
include_recipe "git"
include_recipe "mongodb"

gem_package "bundler"
package "libxslt1-dev"

diaspora_dir = "#{node[:diaspora][:dir]}/diaspora"
execute "clone diaspora repository" do
command "git clone http://github.com/diaspora/diaspora.git"
cwd "#{node[:diaspora][:dir]}"
not_if "test -d #{diaspora_dir}"
end

execute "bundle install" do
command "bundle install"
cwd "#{diaspora_dir}"
not_if "cd #{diaspora_dir}; bundle check |grep 'dependencies are satisfied'"
end

0 comments on commit adefa9f

Please sign in to comment.