Skip to content

Commit cb5bd4c

Browse files
author
jtimberman
committed
xfs v1.0, supports redhat family distros
1 parent b0ba3a7 commit cb5bd4c

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

xfs/README.rdoc xfs/README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
1-
= DESCRIPTION:
1+
Description
2+
====
23

34
Installs packages for working with XFS filesystems.
45

5-
= REQUIREMENTS:
6+
Requirements
7+
====
68

7-
Ubuntu or Debian package names are assumed.
9+
Tested on Ubuntu 10.04, CentOS 5.5 and Scientific Linux 6.0.
810

9-
= LICENSE and AUTHOR:
11+
Should work on any Debian or Red Hat family Linux distributions that
12+
have the xfs packages in a default repository.
13+
14+
License and Author
15+
====
1016

1117
Author:: Joshua Timberman (<[email protected]>)
12-
Copyright:: 2009, Opscode, Inc.
18+
Copyright:: 2009-2011, Opscode, Inc.
1319

1420
Licensed under the Apache License, Version 2.0 (the "License");
1521
you may not use this file except in compliance with the License.

xfs/metadata.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
maintainer_email "[email protected]"
33
license "Apache 2.0"
44
description "Installs packages for working with XFS"
5-
long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
6-
version "0.1.1"
5+
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
6+
version "1.0.0"
77

88
recipe "xfs", "Installs packages for working with XFS"
99

xfs/recipes/default.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
# limitations under the License.
1818
#
1919

20-
%w{ xfsprogs xfsdump xfslibs-dev }.each do |pkg|
20+
%w{ xfsprogs xfsdump }.each do |pkg|
2121
package pkg
2222
end
23+
24+
package "xfslibs-dev" do
25+
package_name "xfsprogs-devel" if platform?("redhat","centos","scientific","fedora")
26+
end

0 commit comments

Comments
 (0)