mirror of
https://github.com/ceph/ceph
synced 2025-02-24 19:47:44 +00:00
Add header comments and Inktank copyrights to ceph.in/ceph_argparse.py
Signed-off-by: Dan Mick <dan.mick@inktank.com>
This commit is contained in:
parent
67a3c1e48d
commit
94eada4046
11
src/ceph.in
11
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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user