diff options
author | Sage Weil <sage@newdream.net> | 2011-09-23 00:16:56 +0200 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2011-09-23 01:18:37 +0200 |
commit | 3e9a9360625dff3b9bc87f94c0b5109535b58b5e (patch) | |
tree | e05cd1844581b0858a95bf7e32bd3974010c074c /doc/man/8/ceph-rbdnamer.rst | |
parent | libceph -> libcephfs (diff) | |
download | ceph-3e9a9360625dff3b9bc87f94c0b5109535b58b5e.tar.xz ceph-3e9a9360625dff3b9bc87f94c0b5109535b58b5e.zip |
doc: more c* -> ceph-* renames
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'doc/man/8/ceph-rbdnamer.rst')
-rw-r--r-- | doc/man/8/ceph-rbdnamer.rst | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/doc/man/8/ceph-rbdnamer.rst b/doc/man/8/ceph-rbdnamer.rst new file mode 100644 index 00000000000..f325e8ebfcf --- /dev/null +++ b/doc/man/8/ceph-rbdnamer.rst @@ -0,0 +1,39 @@ +============================================== + ceph-rbdnamer -- udev helper to name RBD devices +============================================== + +.. program:: ceph-rbdnamer + + +Synopsis +======== + +| **ceph-rbdnamer** *num* + + +Description +=========== + +**ceph-rbdnamer** prints the pool and image name for the given RBD devices +to stdout. It is used by `udev` (using a rule like the one below) to +set up a device symlink. + + +:: + + KERNEL=="rbd[0-9]*", PROGRAM="/usr/bin/ceph-rbdnamer %n", SYMLINK+="rbd/%c{1}/%c{2}:%n" + + +Availability +============ + +**ceph-rbdnamer** is part of the Ceph distributed file system. Please +refer to the Ceph wiki at http://ceph.newdream.net/wiki for more +information. + + +See also +======== + +:doc:`rbd <rbd>`\(8), +:doc:`ceph <ceph>`\(8) |