diff options
author | Christophe Courtaut <christophe.courtaut@gmail.com> | 2013-07-19 10:13:51 +0200 |
---|---|---|
committer | Christophe Courtaut <christophe.courtaut@gmail.com> | 2013-07-19 10:13:51 +0200 |
commit | 76040d90f7eb9f9921a3b8dcd0f821ac2cd9c492 (patch) | |
tree | 3a4dca6536098371c326ec41f19be0550d96544e | |
parent | c9ba933b0b2fdb012ccf8a8535d09381c943144d (diff) | |
download | ceph-76040d90f7eb9f9921a3b8dcd0f821ac2cd9c492.tar.gz |
rgw: Adds --rgw-zone --rgw-region help text.
Signed-off-by: Christophe Courtaut <christophe.courtaut@gmail.com>
-rw-r--r-- | src/rgw/rgw_admin.cc | 2 | ||||
-rw-r--r-- | src/rgw/rgw_main.cc | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/rgw/rgw_admin.cc b/src/rgw/rgw_admin.cc index 0b7cb143400..abf9e26c8e3 100644 --- a/src/rgw/rgw_admin.cc +++ b/src/rgw/rgw_admin.cc @@ -126,6 +126,8 @@ void _usage() cerr << " mdlog trim\n"; cerr << " replica mdlog get/delete\n"; cerr << " replica datalog get/delete\n"; + cerr << " --rgw-region=<region> region in which radosgw is running\n"; + cerr << " --rgw-zone=<zone> zone in which radosgw is running\n"; cerr << " --fix besides checking bucket index, will also fix it\n"; cerr << " --check-objects bucket check: rebuilds bucket index according to\n"; cerr << " actual objects state\n"; diff --git a/src/rgw/rgw_main.cc b/src/rgw/rgw_main.cc index e3c853c19d7..514e9e47171 100644 --- a/src/rgw/rgw_main.cc +++ b/src/rgw/rgw_main.cc @@ -417,6 +417,8 @@ int usage() { cerr << "usage: radosgw [options...]" << std::endl; cerr << "options:\n"; + cerr << " --rgw-region=<region> region in which radosgw runs\n"; + cerr << " --rgw-zone=<zone> zone in which radosgw runs\n"; generic_server_usage(); return 0; } |