summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Mick <dan.mick@inktank.com>2013-06-21 18:39:59 -0700
committerDan Mick <dan.mick@inktank.com>2013-06-21 18:39:59 -0700
commit94eada40460cc6010be23110ef8ce0e3d92691af (patch)
tree6efc53b4a1aeec022fac32cbe363fdde3e954eba
parent67a3c1e48dbc84d31da2d6f8caab6115a2587614 (diff)
downloadceph-94eada40460cc6010be23110ef8ce0e3d92691af.tar.gz
Add header comments and Inktank copyrights to ceph.in/ceph_argparse.py
Signed-off-by: Dan Mick <dan.mick@inktank.com>
-rwxr-xr-xsrc/ceph.in11
-rw-r--r--src/pybind/ceph_argparse.py14
2 files changed, 25 insertions, 0 deletions
diff --git a/src/ceph.in b/src/ceph.in
index 652abf0736d..47ae6fe2bbf 100755
--- a/src/ceph.in
+++ b/src/ceph.in
@@ -4,6 +4,17 @@
#
# vim: ts=4 sw=4 smarttab expandtab
+"""
+ceph.in becomes ceph, the command-line management tool for Ceph clusters.
+This is a replacement for tools/ceph.cc and tools/common.cc.
+
+Copyright (C) 2013 Inktank Storage, Inc.
+
+This is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public
+License version 2, as published by the Free Software
+Foundation. See file COPYING.
+"""
import os
import sys
diff --git a/src/pybind/ceph_argparse.py b/src/pybind/ceph_argparse.py
index 020ad5b3a80..c6a5711057f 100644
--- a/src/pybind/ceph_argparse.py
+++ b/src/pybind/ceph_argparse.py
@@ -1,3 +1,17 @@
+"""
+Types and routines used by the ceph CLI as well as the RESTful
+interface. These have to do with querying the daemons for
+command-description information, validating user command input against
+those descriptions, and submitting the command to the appropriate
+daemon.
+
+Copyright (C) 2013 Inktank Storage, Inc.
+
+This is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public
+License version 2, as published by the Free Software
+Foundation. See file COPYING.
+"""
import copy
import json
import os