Remove the btrfs and parted cookbooks.

Simplifies installs, and they are not used currently anyway.
They may make a return later, in simpler form.
This commit is contained in:
Tommi Virtanen
2012-06-03 19:38:36 -07:00
parent ab51f4dcd6
commit a77b418b95
7 changed files with 0 additions and 68 deletions

View File

@@ -1,5 +0,0 @@
maintainer "Kyle Bader"
maintainer_email "kyle.bader@dreamhost.com"
license "Apache 2.0"
description "Installs tools for BTRFS filesystems"
version "0.0.1"

View File

@@ -1,29 +0,0 @@
#
# Author:: Kyle Bader <kyle.bader@dreamhost.com>
# Cookbook Name:: btrfs
# Recipe:: default
#
# Copyright 2011, DreamHost Web Hosting
#
# 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.
packages = %w{
btrfs-tools
btrfs-tools-dbg
}
packages.each do |pkg|
package pkg do
action :upgrade
end
end

View File

@@ -26,9 +26,6 @@ Also required are the following cookbooks New Dream Network (DreamHost.com):
https://github.com/NewDreamNetwork/ceph-cookbooks
* btrfs
* parted
ATTRIBUTES
==========

View File

@@ -5,5 +5,3 @@ description "Installs/Configures the Ceph distributed filesystem"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.0.10"
depends "apache2"
depends "btrfs"
depends "parted"

View File

@@ -17,6 +17,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
include_recipe "btrfs"
include_recipe "parted"
include_recipe "ceph::default"

View File

@@ -1,5 +0,0 @@
maintainer "Kyle Bader"
maintainer_email "kyle.bader@dreamhost.com"
license "Apache 2.0"
description "Installs the parted disk utility"
version "0.0.1"

View File

@@ -1,22 +0,0 @@
#
# Author:: Kyle Bader <kyle.bader@dreamhost.com>
# Cookbook Name:: parted
# Recipe:: default
#
# Copyright 2011, DreamHost Web Hosting
#
# 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.
package "parted" do
action :upgrade
end