diff options
author | Sage Weil <sage@inktank.com> | 2013-09-23 09:04:34 -0700 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-09-23 09:04:34 -0700 |
commit | 0a5bac7541af16b2a158d82c0087c43951a93302 (patch) | |
tree | f96564f52f5857c46225296f9f740fe631822c05 | |
parent | 4f9bf8b8209f18db83db545a395a0bd73bf13de7 (diff) | |
download | ceph-0a5bac7541af16b2a158d82c0087c43951a93302.tar.gz |
Revert "ceph: parse CEPH_ARGS environment variable"wip-ceph-cli-env
This reverts commit 67a95b9880c9bc6e858150352318d68d64ed74ad.
We now put CEPH_ARGS in the actual args we parse in python, which are passed
to rados piecemeal later. This lets you put things like --id ... in there
that need to be parsed before librados is initialized.
-rwxr-xr-x | src/ceph.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ceph.in b/src/ceph.in index 07b8dc12fd2..e4d4cf10344 100755 --- a/src/ceph.in +++ b/src/ceph.in @@ -559,7 +559,6 @@ def main(): cluster_handle = rados.Rados(name=name, clustername=clustername, conf_defaults=conf_defaults, conffile=conffile) - cluster_handle.conf_parse_env() retargs = cluster_handle.conf_parse_argv(childargs) #tmp = childargs childargs = retargs |