Skip to content

Commit

Permalink
Import xfs version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimberman committed Nov 5, 2010
1 parent 6b5b4b5 commit 45677d4
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 0 deletions.
24 changes: 24 additions & 0 deletions cookbooks/xfs/README.rdoc
@@ -0,0 +1,24 @@
= DESCRIPTION:

Installs packages for working with XFS filesystems.

= REQUIREMENTS:

Ubuntu or Debian package names are assumed.

= LICENSE and AUTHOR:

Author:: Joshua Timberman (<joshua@opscode.com>)
Copyright:: 2009, Opscode, Inc.

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.
35 changes: 35 additions & 0 deletions cookbooks/xfs/metadata.json
@@ -0,0 +1,35 @@
{
"recommendations": {
},
"attributes": {
},
"platforms": {
"ubuntu": [

],
"debian": [

]
},
"maintainer": "Opscode, Inc.",
"long_description": "= DESCRIPTION:\n\nInstalls packages for working with XFS filesystems.\n\n= REQUIREMENTS:\n\nUbuntu or Debian package names are assumed.\n\n= LICENSE and AUTHOR:\n\nAuthor:: Joshua Timberman (<joshua@opscode.com>)\nCopyright:: 2009, Opscode, Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n",
"suggestions": {
},
"dependencies": {
},
"recipes": {
},
"maintainer_email": "cookbooks@opscode.com",
"version": "0.1.0",
"conflicting": {
},
"name": "xfs",
"providing": {
},
"license": "Apache 2.0",
"replacing": {
},
"groupings": {
},
"description": "Installs packages for working with XFS"
}
10 changes: 10 additions & 0 deletions cookbooks/xfs/metadata.rb
@@ -0,0 +1,10 @@
maintainer "Opscode, Inc."
maintainer_email "cookbooks@opscode.com"
license "Apache 2.0"
description "Installs packages for working with XFS"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
version "0.1"

%w{ debian ubuntu }.each do |os|
supports os
end
22 changes: 22 additions & 0 deletions cookbooks/xfs/recipes/default.rb
@@ -0,0 +1,22 @@
#
# Cookbook Name:: xfs
# Recipe:: default
#
# Copyright 2009, Opscode, Inc.
#
# 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.
#

%w{ xfsprogs xfsdump xfslibs-dev }.each do |pkg|
package pkg
end

0 comments on commit 45677d4

Please sign in to comment.