-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
344 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ AC_PREREQ(2.59) | |
# VERSION define is not used by the code. It gets a version string | ||
# from 'git describe'; see src/ceph_ver.[ch] | ||
|
||
AC_INIT([ceph], [0.55], [[email protected]]) | ||
AC_INIT([ceph], [0.55.1], [[email protected]]) | ||
|
||
# Create release string. Used with VERSION for RPMs. | ||
AC_SUBST(RPM_RELEASE) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
ceph (0.55.1-1) precise; urgency=low | ||
|
||
* New upstream release | ||
|
||
-- Gary Lowell <[email protected]> Wed, 12 Dec 2012 16:24:13 -0800 | ||
|
||
ceph (0.55-1) precise; urgency=low | ||
|
||
* New upstream release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ Vcs-Git: git://github.com/ceph/ceph.git | |
Vcs-Browser: https://github.com/ceph/ceph | ||
Maintainer: Laszlo Boszormenyi (GCS) <[email protected]> | ||
Uploaders: Sage Weil <[email protected]> | ||
Build-Depends: debhelper (>= 6.0.7~), autotools-dev, autoconf, automake, libfuse-dev, libboost-dev (>= 1.34), libboost-thread-dev, libedit-dev, libnss3-dev, libtool, libexpat1-dev, libfcgi-dev, libatomic-ops-dev, libgoogle-perftools-dev [i386 amd64], pkg-config, libcurl4-gnutls-dev, libkeyutils-dev, uuid-dev, libaio-dev, python (>= 2.6.6-3~), libxml2-dev, javahelper, default-jdk | ||
Build-Depends: debhelper (>= 6.0.7~), autotools-dev, autoconf, automake, libfuse-dev, libboost-dev (>= 1.34), libboost-thread-dev, libedit-dev, libnss3-dev, libtool, libexpat1-dev, libfcgi-dev, libatomic-ops-dev, libgoogle-perftools-dev [i386 amd64], pkg-config, libcurl4-gnutls-dev, libkeyutils-dev, uuid-dev, libaio-dev, python (>= 2.6.6-3~), libxml2-dev, javahelper, default-jdk, junit4, libboost-program-options-dev | ||
Standards-Version: 3.9.3 | ||
|
||
Package: ceph | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/sh -x | ||
|
||
set -e | ||
|
||
ceph status | ||
ceph -s | ||
ceph quorum_status | ||
|
||
ceph osd dump | ||
ceph osd tree | ||
ceph pg dump | ||
ceph mon dump | ||
ceph mds dump | ||
|
||
ceph tell osd.0 version | ||
ceph tell osd.9999 version && exit 1 | ||
ceph tell osd.foo version && exit 1 | ||
|
||
for id in `ceph osd ls` ; do | ||
ceph tell osd.$id version | ||
done | ||
|
||
echo OK | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.