summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorJosh Durgin <josh.durgin@inktank.com>2013-04-29 16:01:38 -0700
committerJosh Durgin <josh.durgin@inktank.com>2013-04-29 16:01:38 -0700
commit825a43176b4e017cd19243aedfa63ff7352e34f5 (patch)
tree7459f1e62b0469fd1baf22e96c50db85dd7a7011 /man
parent4abf081495ac5a1166fa835e71d740189c378b9d (diff)
downloadceph-825a43176b4e017cd19243aedfa63ff7352e34f5.tar.gz
man: update remaining copyright notices
Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
Diffstat (limited to 'man')
-rw-r--r--man/ceph-authtool.844
-rw-r--r--man/ceph-clsinfo.84
-rw-r--r--man/ceph-conf.84
-rw-r--r--man/ceph-debugpack.84
-rw-r--r--man/ceph-dencoder.84
-rw-r--r--man/ceph-fuse.84
-rw-r--r--man/ceph-mds.84
-rw-r--r--man/ceph-mon.84
-rw-r--r--man/ceph-osd.84
-rw-r--r--man/ceph-rbdnamer.84
-rw-r--r--man/ceph-run.84
-rw-r--r--man/ceph-syn.84
-rw-r--r--man/ceph.84
-rw-r--r--man/cephfs.85
-rw-r--r--man/librados-config.84
-rw-r--r--man/monmaptool.84
-rw-r--r--man/mount.ceph.84
-rw-r--r--man/osdmaptool.84
-rw-r--r--man/radosgw-admin.84
-rw-r--r--man/radosgw.84
-rw-r--r--man/rbd-fuse.84
21 files changed, 42 insertions, 83 deletions
diff --git a/man/ceph-authtool.8 b/man/ceph-authtool.8
index 67ac5068be3..47888af1f22 100644
--- a/man/ceph-authtool.8
+++ b/man/ceph-authtool.8
@@ -1,4 +1,4 @@
-.TH "CEPH-AUTHTOOL" "8" "December 29, 2012" "dev" "Ceph"
+.TH "CEPH-AUTHTOOL" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-authtool \- ceph keyring manipulation tool
.
@@ -99,8 +99,6 @@ read, write, and execute permission. The \fBallow *\fP grants full
superuser permissions for the given subsystem.
.sp
For example:
-.INDENT 0.0
-.INDENT 3.5
.sp
.nf
.ft C
@@ -114,12 +112,8 @@ mds = "allow"
mon = "allow rwx"
.ft P
.fi
-.UNINDENT
-.UNINDENT
.sp
A librados user restricted to a single pool might look like:
-.INDENT 0.0
-.INDENT 3.5
.sp
.nf
.ft C
@@ -128,12 +122,8 @@ mon = "allow r"
osd = "allow rw pool foo"
.ft P
.fi
-.UNINDENT
-.UNINDENT
.sp
A client using rbd with read access to one pool and read/write access to another:
-.INDENT 0.0
-.INDENT 3.5
.sp
.nf
.ft C
@@ -142,12 +132,8 @@ mon = "allow r"
osd = "allow class\-read object_prefix rbd_children, allow pool templates r class\-read, allow pool vms rwx"
.ft P
.fi
-.UNINDENT
-.UNINDENT
.sp
A client mounting the file system with minimal permissions would need caps like:
-.INDENT 0.0
-.INDENT 3.5
.sp
.nf
.ft C
@@ -158,13 +144,9 @@ osd = "allow rw pool data"
mon = "allow r"
.ft P
.fi
-.UNINDENT
-.UNINDENT
.SH OSD CAPABILITIES
.sp
In general, an osd capability follows the grammar:
-.INDENT 0.0
-.INDENT 3.5
.sp
.nf
.ft C
@@ -174,12 +156,8 @@ match := [pool[=]<poolname> | object_prefix <prefix>]
capspec := * | [r][w][x] [class\-read] [class\-write]
.ft P
.fi
-.UNINDENT
-.UNINDENT
.sp
The capspec determines what kind of operations the entity can perform:
-.INDENT 0.0
-.INDENT 3.5
.sp
.nf
.ft C
@@ -192,8 +170,6 @@ class\-write = can call class methods that are writes
i.e. ceph osd tell ...
.ft P
.fi
-.UNINDENT
-.UNINDENT
.sp
The match criteria restrict a grant based on the pool being accessed.
Grants are additive if the client fulfills the match condition. For
@@ -211,53 +187,37 @@ value is the capability string (see above).
.SH EXAMPLE
.sp
To create a new keyring containing a key for client.foo:
-.INDENT 0.0
-.INDENT 3.5
.sp
.nf
.ft C
ceph\-authtool \-C \-n client.foo \-\-gen\-key keyring
.ft P
.fi
-.UNINDENT
-.UNINDENT
.sp
To associate some capabilities with the key (namely, the ability to
mount a Ceph filesystem):
-.INDENT 0.0
-.INDENT 3.5
.sp
.nf
.ft C
ceph\-authtool \-n client.foo \-\-cap mds \(aqallow\(aq \-\-cap osd \(aqallow rw pool=data\(aq \-\-cap mon \(aqallow r\(aq keyring
.ft P
.fi
-.UNINDENT
-.UNINDENT
.sp
To display the contents of the keyring:
-.INDENT 0.0
-.INDENT 3.5
.sp
.nf
.ft C
ceph\-authtool \-l keyring
.ft P
.fi
-.UNINDENT
-.UNINDENT
.sp
When mount a Ceph file system, you can grab the appropriately encoded secret key with:
-.INDENT 0.0
-.INDENT 3.5
.sp
.nf
.ft C
mount \-t ceph serverhost:/ mountpoint \-o name=foo,secret=\(gaceph\-authtool \-p \-n client.foo keyring\(ga
.ft P
.fi
-.UNINDENT
-.UNINDENT
.SH AVAILABILITY
.sp
\fBceph\-authtool\fP is part of the Ceph distributed file system. Please
@@ -267,6 +227,6 @@ information.
.sp
\fBceph\fP(8)
.SH COPYRIGHT
-2010-2012, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-clsinfo.8 b/man/ceph-clsinfo.8
index 8ef7ade7b2a..08ba0cb8ebd 100644
--- a/man/ceph-clsinfo.8
+++ b/man/ceph-clsinfo.8
@@ -1,4 +1,4 @@
-.TH "CEPH-CLSINFO" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPH-CLSINFO" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-clsinfo \- show class object information
.
@@ -64,6 +64,6 @@ information.
.sp
\fBceph\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-conf.8 b/man/ceph-conf.8
index 80de2cfc7c6..bfec81535da 100644
--- a/man/ceph-conf.8
+++ b/man/ceph-conf.8
@@ -1,4 +1,4 @@
-.TH "CEPH-CONF" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPH-CONF" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-conf \- ceph conf file tool
.
@@ -112,6 +112,6 @@ information.
\fBceph\fP(8),
\fBmkcephfs\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-debugpack.8 b/man/ceph-debugpack.8
index 46cf69554e6..69db7c3682e 100644
--- a/man/ceph-debugpack.8
+++ b/man/ceph-debugpack.8
@@ -1,4 +1,4 @@
-.TH "CEPH-DEBUGPACK" "8" "October 19, 2012" "dev" "Ceph"
+.TH "CEPH-DEBUGPACK" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-debugpack \- ceph debug packer utility
.
@@ -62,6 +62,6 @@ information.
.sp
\fBceph\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-dencoder.8 b/man/ceph-dencoder.8
index 6b6972a7b28..3f6ec894209 100644
--- a/man/ceph-dencoder.8
+++ b/man/ceph-dencoder.8
@@ -1,4 +1,4 @@
-.TH "CEPH-DENCODER" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPH-DENCODER" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-dencoder \- ceph encoder/decoder utility
.
@@ -157,6 +157,6 @@ information.
.sp
\fBceph\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-fuse.8 b/man/ceph-fuse.8
index 93d4c3f8939..e463214884b 100644
--- a/man/ceph-fuse.8
+++ b/man/ceph-fuse.8
@@ -1,4 +1,4 @@
-.TH "CEPH-FUSE" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPH-FUSE" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-fuse \- FUSE-based client for ceph
.
@@ -84,6 +84,6 @@ the Ceph documentation at \fI\%http://ceph.com/docs\fP for more information.
fusermount(8),
\fBceph\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-mds.8 b/man/ceph-mds.8
index 170c38bfa82..0d34f754770 100644
--- a/man/ceph-mds.8
+++ b/man/ceph-mds.8
@@ -1,4 +1,4 @@
-.TH "CEPH-MDS" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPH-MDS" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-mds \- ceph metadata server daemon
.
@@ -89,6 +89,6 @@ Connect to specified monitor (instead of looking through
\fBceph\-mon\fP(8),
\fBceph\-osd\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-mon.8 b/man/ceph-mon.8
index 86596ed0f48..9dc494f8c49 100644
--- a/man/ceph-mon.8
+++ b/man/ceph-mon.8
@@ -1,4 +1,4 @@
-.TH "CEPH-MON" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPH-MON" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-mon \- ceph monitor daemon
.
@@ -105,6 +105,6 @@ information.
\fBceph\-mds\fP(8),
\fBceph\-osd\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-osd.8 b/man/ceph-osd.8
index d26c8126c7f..f60ce183d8f 100644
--- a/man/ceph-osd.8
+++ b/man/ceph-osd.8
@@ -1,4 +1,4 @@
-.TH "CEPH-OSD" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPH-OSD" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-osd \- ceph object storage daemon
.
@@ -138,6 +138,6 @@ the Ceph documentation at \fI\%http://ceph.com/docs\fP for more information.
\fBceph\-mon\fP(8),
\fBceph\-authtool\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-rbdnamer.8 b/man/ceph-rbdnamer.8
index 5e364936d9d..6aa2cfa70ed 100644
--- a/man/ceph-rbdnamer.8
+++ b/man/ceph-rbdnamer.8
@@ -1,4 +1,4 @@
-.TH "CEPH-RBDNAMER" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPH-RBDNAMER" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-rbdnamer \- udev helper to name RBD devices
.
@@ -56,6 +56,6 @@ information.
\fBrbd\fP(8),
\fBceph\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-run.8 b/man/ceph-run.8
index 6d408b08613..77e8f32472a 100644
--- a/man/ceph-run.8
+++ b/man/ceph-run.8
@@ -1,4 +1,4 @@
-.TH "CEPH-RUN" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPH-RUN" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-run \- restart daemon on core dump
.
@@ -57,6 +57,6 @@ the Ceph documentation at \fI\%http://ceph.com/docs\fP for more information.
\fBceph\-mds\fP(8),
\fBceph\-osd\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph-syn.8 b/man/ceph-syn.8
index fa9933a042c..03a068a9455 100644
--- a/man/ceph-syn.8
+++ b/man/ceph-syn.8
@@ -1,4 +1,4 @@
-.TH "CEPH-SYN" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPH-SYN" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph-syn \- ceph synthetic workload generator
.
@@ -116,6 +116,6 @@ the Ceph documentation at \fI\%http://ceph.com/docs\fP for more information.
\fBceph\fP(8),
\fBceph\-fuse\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/ceph.8 b/man/ceph.8
index b08395423ae..4f2caf3e8ca 100644
--- a/man/ceph.8
+++ b/man/ceph.8
@@ -1,4 +1,4 @@
-.TH "CEPH" "8" "October 19, 2012" "dev" "Ceph"
+.TH "CEPH" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
ceph \- ceph file system control utility
.
@@ -119,6 +119,6 @@ online documentation, at
\fBceph\fP(8),
\fBmkcephfs\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/cephfs.8 b/man/cephfs.8
index c957830df34..f53b208b35c 100644
--- a/man/cephfs.8
+++ b/man/cephfs.8
@@ -1,4 +1,4 @@
-.TH "CEPHFS" "8" "September 27, 2012" "dev" "Ceph"
+.TH "CEPHFS" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
cephfs \- ceph file system options utility
.
@@ -103,7 +103,6 @@ layouts changed.
You\(aqll notice that the layout information allows you to specify a
preferred OSD for placement. This feature is unsupported and ignored
in modern versions of the Ceph servers; do not use it.
-
.SH AVAILABILITY
.sp
\fBcephfs\fP is part of the Ceph distributed file system. Please refer
@@ -113,6 +112,6 @@ information.
.sp
\fBceph\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/librados-config.8 b/man/librados-config.8
index 63d036b601b..fc5dbd1ec38 100644
--- a/man/librados-config.8
+++ b/man/librados-config.8
@@ -1,4 +1,4 @@
-.TH "LIBRADOS-CONFIG" "8" "September 27, 2012" "dev" "Ceph"
+.TH "LIBRADOS-CONFIG" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
librados-config \- display information about librados
.
@@ -62,6 +62,6 @@ more information.
\fBceph\fP(8),
\fBrados\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/monmaptool.8 b/man/monmaptool.8
index cada2c5ac3f..76308545d5b 100644
--- a/man/monmaptool.8
+++ b/man/monmaptool.8
@@ -1,4 +1,4 @@
-.TH "MONMAPTOOL" "8" "September 27, 2012" "dev" "Ceph"
+.TH "MONMAPTOOL" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
monmaptool \- ceph monitor cluster map manipulation tool
.
@@ -145,6 +145,6 @@ information.
\fBcrushtool\fP(8),
\fBmkcephfs\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/mount.ceph.8 b/man/mount.ceph.8
index fb28e0390c6..e11b671f2a1 100644
--- a/man/mount.ceph.8
+++ b/man/mount.ceph.8
@@ -1,4 +1,4 @@
-.TH "MOUNT.CEPH" "8" "September 27, 2012" "dev" "Ceph"
+.TH "MOUNT.CEPH" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
mount.ceph \- mount a ceph file system
.
@@ -201,6 +201,6 @@ information.
\fBceph\-fuse\fP(8),
\fBceph\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/osdmaptool.8 b/man/osdmaptool.8
index d94478dfd1d..edc6dc2042f 100644
--- a/man/osdmaptool.8
+++ b/man/osdmaptool.8
@@ -1,4 +1,4 @@
-.TH "OSDMAPTOOL" "8" "September 27, 2012" "dev" "Ceph"
+.TH "OSDMAPTOOL" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
osdmaptool \- ceph osd cluster map manipulation tool
.
@@ -100,6 +100,6 @@ information.
\fBcrushtool\fP(8),
\fBmkcephfs\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/radosgw-admin.8 b/man/radosgw-admin.8
index d0657ee9074..2091df5e63f 100644
--- a/man/radosgw-admin.8
+++ b/man/radosgw-admin.8
@@ -1,4 +1,4 @@
-.TH "RADOSGW-ADMIN" "8" "October 15, 2012" "dev" "Ceph"
+.TH "RADOSGW-ADMIN" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
radosgw-admin \- rados REST gateway user administration utility
.
@@ -269,6 +269,6 @@ information.
.sp
\fBceph\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/radosgw.8 b/man/radosgw.8
index 6156f972904..44f86078a48 100644
--- a/man/radosgw.8
+++ b/man/radosgw.8
@@ -1,4 +1,4 @@
-.TH "RADOSGW" "8" "September 27, 2012" "dev" "Ceph"
+.TH "RADOSGW" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
radosgw \- rados REST gateway
.
@@ -182,6 +182,6 @@ information.
\fBceph\fP(8)
\fBradosgw\-admin\fP(8)
.SH COPYRIGHT
-2012, Inktank Storage, Inc.
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.
diff --git a/man/rbd-fuse.8 b/man/rbd-fuse.8
index 335e06fac7b..a2989e6b436 100644
--- a/man/rbd-fuse.8
+++ b/man/rbd-fuse.8
@@ -1,4 +1,4 @@
-.TH "RBD-FUSE" "8" "January 31, 2013" "dev" "Ceph"
+.TH "RBD-FUSE" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME
rbd-fuse \- expose rbd images as files
.
@@ -74,6 +74,6 @@ the Ceph documentation at \fI\%http://ceph.com/docs\fP for more information.
fusermount(8),
\fBrbd\fP(8)
.SH COPYRIGHT
-2010-2012, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
+2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer.
.