man: update remaining copyright notices

Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
This commit is contained in:
Josh Durgin 2013-04-29 16:01:38 -07:00
parent 4abf081495
commit 825a43176b
21 changed files with 42 additions and 83 deletions

View File

@ -1,4 +1,4 @@
.TH "CEPH-AUTHTOOL" "8" "December 29, 2012" "dev" "Ceph" .TH "CEPH-AUTHTOOL" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-authtool \- ceph keyring manipulation tool 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. superuser permissions for the given subsystem.
.sp .sp
For example: For example:
.INDENT 0.0
.INDENT 3.5
.sp .sp
.nf .nf
.ft C .ft C
@ -114,12 +112,8 @@ mds = "allow"
mon = "allow rwx" mon = "allow rwx"
.ft P .ft P
.fi .fi
.UNINDENT
.UNINDENT
.sp .sp
A librados user restricted to a single pool might look like: A librados user restricted to a single pool might look like:
.INDENT 0.0
.INDENT 3.5
.sp .sp
.nf .nf
.ft C .ft C
@ -128,12 +122,8 @@ mon = "allow r"
osd = "allow rw pool foo" osd = "allow rw pool foo"
.ft P .ft P
.fi .fi
.UNINDENT
.UNINDENT
.sp .sp
A client using rbd with read access to one pool and read/write access to another: A client using rbd with read access to one pool and read/write access to another:
.INDENT 0.0
.INDENT 3.5
.sp .sp
.nf .nf
.ft C .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" osd = "allow class\-read object_prefix rbd_children, allow pool templates r class\-read, allow pool vms rwx"
.ft P .ft P
.fi .fi
.UNINDENT
.UNINDENT
.sp .sp
A client mounting the file system with minimal permissions would need caps like: A client mounting the file system with minimal permissions would need caps like:
.INDENT 0.0
.INDENT 3.5
.sp .sp
.nf .nf
.ft C .ft C
@ -158,13 +144,9 @@ osd = "allow rw pool data"
mon = "allow r" mon = "allow r"
.ft P .ft P
.fi .fi
.UNINDENT
.UNINDENT
.SH OSD CAPABILITIES .SH OSD CAPABILITIES
.sp .sp
In general, an osd capability follows the grammar: In general, an osd capability follows the grammar:
.INDENT 0.0
.INDENT 3.5
.sp .sp
.nf .nf
.ft C .ft C
@ -174,12 +156,8 @@ match := [pool[=]<poolname> | object_prefix <prefix>]
capspec := * | [r][w][x] [class\-read] [class\-write] capspec := * | [r][w][x] [class\-read] [class\-write]
.ft P .ft P
.fi .fi
.UNINDENT
.UNINDENT
.sp .sp
The capspec determines what kind of operations the entity can perform: The capspec determines what kind of operations the entity can perform:
.INDENT 0.0
.INDENT 3.5
.sp .sp
.nf .nf
.ft C .ft C
@ -192,8 +170,6 @@ class\-write = can call class methods that are writes
i.e. ceph osd tell ... i.e. ceph osd tell ...
.ft P .ft P
.fi .fi
.UNINDENT
.UNINDENT
.sp .sp
The match criteria restrict a grant based on the pool being accessed. The match criteria restrict a grant based on the pool being accessed.
Grants are additive if the client fulfills the match condition. For Grants are additive if the client fulfills the match condition. For
@ -211,53 +187,37 @@ value is the capability string (see above).
.SH EXAMPLE .SH EXAMPLE
.sp .sp
To create a new keyring containing a key for client.foo: To create a new keyring containing a key for client.foo:
.INDENT 0.0
.INDENT 3.5
.sp .sp
.nf .nf
.ft C .ft C
ceph\-authtool \-C \-n client.foo \-\-gen\-key keyring ceph\-authtool \-C \-n client.foo \-\-gen\-key keyring
.ft P .ft P
.fi .fi
.UNINDENT
.UNINDENT
.sp .sp
To associate some capabilities with the key (namely, the ability to To associate some capabilities with the key (namely, the ability to
mount a Ceph filesystem): mount a Ceph filesystem):
.INDENT 0.0
.INDENT 3.5
.sp .sp
.nf .nf
.ft C .ft C
ceph\-authtool \-n client.foo \-\-cap mds \(aqallow\(aq \-\-cap osd \(aqallow rw pool=data\(aq \-\-cap mon \(aqallow r\(aq keyring ceph\-authtool \-n client.foo \-\-cap mds \(aqallow\(aq \-\-cap osd \(aqallow rw pool=data\(aq \-\-cap mon \(aqallow r\(aq keyring
.ft P .ft P
.fi .fi
.UNINDENT
.UNINDENT
.sp .sp
To display the contents of the keyring: To display the contents of the keyring:
.INDENT 0.0
.INDENT 3.5
.sp .sp
.nf .nf
.ft C .ft C
ceph\-authtool \-l keyring ceph\-authtool \-l keyring
.ft P .ft P
.fi .fi
.UNINDENT
.UNINDENT
.sp .sp
When mount a Ceph file system, you can grab the appropriately encoded secret key with: When mount a Ceph file system, you can grab the appropriately encoded secret key with:
.INDENT 0.0
.INDENT 3.5
.sp .sp
.nf .nf
.ft C .ft C
mount \-t ceph serverhost:/ mountpoint \-o name=foo,secret=\(gaceph\-authtool \-p \-n client.foo keyring\(ga mount \-t ceph serverhost:/ mountpoint \-o name=foo,secret=\(gaceph\-authtool \-p \-n client.foo keyring\(ga
.ft P .ft P
.fi .fi
.UNINDENT
.UNINDENT
.SH AVAILABILITY .SH AVAILABILITY
.sp .sp
\fBceph\-authtool\fP is part of the Ceph distributed file system. Please \fBceph\-authtool\fP is part of the Ceph distributed file system. Please
@ -267,6 +227,6 @@ information.
.sp .sp
\fBceph\fP(8) \fBceph\fP(8)
.SH COPYRIGHT .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. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-CLSINFO" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPH-CLSINFO" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-clsinfo \- show class object information ceph-clsinfo \- show class object information
. .
@ -64,6 +64,6 @@ information.
.sp .sp
\fBceph\fP(8) \fBceph\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-CONF" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPH-CONF" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-conf \- ceph conf file tool ceph-conf \- ceph conf file tool
. .
@ -112,6 +112,6 @@ information.
\fBceph\fP(8), \fBceph\fP(8),
\fBmkcephfs\fP(8) \fBmkcephfs\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-DEBUGPACK" "8" "October 19, 2012" "dev" "Ceph" .TH "CEPH-DEBUGPACK" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-debugpack \- ceph debug packer utility ceph-debugpack \- ceph debug packer utility
. .
@ -62,6 +62,6 @@ information.
.sp .sp
\fBceph\fP(8) \fBceph\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-DENCODER" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPH-DENCODER" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-dencoder \- ceph encoder/decoder utility ceph-dencoder \- ceph encoder/decoder utility
. .
@ -157,6 +157,6 @@ information.
.sp .sp
\fBceph\fP(8) \fBceph\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-FUSE" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPH-FUSE" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-fuse \- FUSE-based client for ceph 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), fusermount(8),
\fBceph\fP(8) \fBceph\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-MDS" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPH-MDS" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-mds \- ceph metadata server daemon ceph-mds \- ceph metadata server daemon
. .
@ -89,6 +89,6 @@ Connect to specified monitor (instead of looking through
\fBceph\-mon\fP(8), \fBceph\-mon\fP(8),
\fBceph\-osd\fP(8) \fBceph\-osd\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-MON" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPH-MON" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-mon \- ceph monitor daemon ceph-mon \- ceph monitor daemon
. .
@ -105,6 +105,6 @@ information.
\fBceph\-mds\fP(8), \fBceph\-mds\fP(8),
\fBceph\-osd\fP(8) \fBceph\-osd\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-OSD" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPH-OSD" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-osd \- ceph object storage daemon 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\-mon\fP(8),
\fBceph\-authtool\fP(8) \fBceph\-authtool\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-RBDNAMER" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPH-RBDNAMER" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-rbdnamer \- udev helper to name RBD devices ceph-rbdnamer \- udev helper to name RBD devices
. .
@ -56,6 +56,6 @@ information.
\fBrbd\fP(8), \fBrbd\fP(8),
\fBceph\fP(8) \fBceph\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-RUN" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPH-RUN" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-run \- restart daemon on core dump 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\-mds\fP(8),
\fBceph\-osd\fP(8) \fBceph\-osd\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH-SYN" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPH-SYN" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph-syn \- ceph synthetic workload generator 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\fP(8),
\fBceph\-fuse\fP(8) \fBceph\-fuse\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPH" "8" "October 19, 2012" "dev" "Ceph" .TH "CEPH" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
ceph \- ceph file system control utility ceph \- ceph file system control utility
. .
@ -119,6 +119,6 @@ online documentation, at
\fBceph\fP(8), \fBceph\fP(8),
\fBmkcephfs\fP(8) \fBmkcephfs\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "CEPHFS" "8" "September 27, 2012" "dev" "Ceph" .TH "CEPHFS" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
cephfs \- ceph file system options utility cephfs \- ceph file system options utility
. .
@ -103,7 +103,6 @@ layouts changed.
You\(aqll notice that the layout information allows you to specify a You\(aqll notice that the layout information allows you to specify a
preferred OSD for placement. This feature is unsupported and ignored preferred OSD for placement. This feature is unsupported and ignored
in modern versions of the Ceph servers; do not use it. in modern versions of the Ceph servers; do not use it.
.SH AVAILABILITY .SH AVAILABILITY
.sp .sp
\fBcephfs\fP is part of the Ceph distributed file system. Please refer \fBcephfs\fP is part of the Ceph distributed file system. Please refer
@ -113,6 +112,6 @@ information.
.sp .sp
\fBceph\fP(8) \fBceph\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "LIBRADOS-CONFIG" "8" "September 27, 2012" "dev" "Ceph" .TH "LIBRADOS-CONFIG" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
librados-config \- display information about librados librados-config \- display information about librados
. .
@ -62,6 +62,6 @@ more information.
\fBceph\fP(8), \fBceph\fP(8),
\fBrados\fP(8) \fBrados\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "MONMAPTOOL" "8" "September 27, 2012" "dev" "Ceph" .TH "MONMAPTOOL" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
monmaptool \- ceph monitor cluster map manipulation tool monmaptool \- ceph monitor cluster map manipulation tool
. .
@ -145,6 +145,6 @@ information.
\fBcrushtool\fP(8), \fBcrushtool\fP(8),
\fBmkcephfs\fP(8) \fBmkcephfs\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "MOUNT.CEPH" "8" "September 27, 2012" "dev" "Ceph" .TH "MOUNT.CEPH" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
mount.ceph \- mount a ceph file system mount.ceph \- mount a ceph file system
. .
@ -201,6 +201,6 @@ information.
\fBceph\-fuse\fP(8), \fBceph\-fuse\fP(8),
\fBceph\fP(8) \fBceph\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "OSDMAPTOOL" "8" "September 27, 2012" "dev" "Ceph" .TH "OSDMAPTOOL" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
osdmaptool \- ceph osd cluster map manipulation tool osdmaptool \- ceph osd cluster map manipulation tool
. .
@ -100,6 +100,6 @@ information.
\fBcrushtool\fP(8), \fBcrushtool\fP(8),
\fBmkcephfs\fP(8) \fBmkcephfs\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "RADOSGW-ADMIN" "8" "October 15, 2012" "dev" "Ceph" .TH "RADOSGW-ADMIN" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
radosgw-admin \- rados REST gateway user administration utility radosgw-admin \- rados REST gateway user administration utility
. .
@ -269,6 +269,6 @@ information.
.sp .sp
\fBceph\fP(8) \fBceph\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "RADOSGW" "8" "September 27, 2012" "dev" "Ceph" .TH "RADOSGW" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
radosgw \- rados REST gateway radosgw \- rados REST gateway
. .
@ -182,6 +182,6 @@ information.
\fBceph\fP(8) \fBceph\fP(8)
\fBradosgw\-admin\fP(8) \fBradosgw\-admin\fP(8)
.SH COPYRIGHT .SH COPYRIGHT
2012, Inktank Storage, Inc. 2010-2013, Inktank Storage, Inc. and contributors. Licensed under Creative Commons BY-SA
.\" Generated by docutils manpage writer. .\" Generated by docutils manpage writer.
. .

View File

@ -1,4 +1,4 @@
.TH "RBD-FUSE" "8" "January 31, 2013" "dev" "Ceph" .TH "RBD-FUSE" "8" "April 29, 2013" "dev" "Ceph"
.SH NAME .SH NAME
rbd-fuse \- expose rbd images as files 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), fusermount(8),
\fBrbd\fP(8) \fBrbd\fP(8)
.SH COPYRIGHT .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. .\" Generated by docutils manpage writer.
. .