diff mbox

[2/3] rgw: list all available options during help()

Message ID 1406214043-23730-3-git-send-email-abhishek.lekshmanan@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Abhishek Lekshmanan July 24, 2014, 3 p.m. UTC
Adding the available help arguments from the man page

Fixes: #8112
Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>
---
 src/rgw/rgw_main.cc | 6 ++++++
 1 file changed, 6 insertions(+)
diff mbox

Patch

diff --git a/src/rgw/rgw_main.cc b/src/rgw/rgw_main.cc
index 51cfebe..29d6577 100644
--- a/src/rgw/rgw_main.cc
+++ b/src/rgw/rgw_main.cc
@@ -726,7 +726,13 @@  int usage()
   cerr << "options:\n";
   cerr << "  --rgw-region=<region>     region in which radosgw runs\n";
   cerr << "  --rgw-zone=<zone>         zone in which radosgw runs\n";
+  cerr << "  --rgw-socket-path=<path>  specify a unix domain socket path\n";
   generic_server_usage();
+  cerr << "  -m monaddress[:port]      connect to specified monitor\n";
+  cerr << "  --keyring=<path>          path to radosgw keyring\n";
+  cerr << "  --logfile=<logfile>       file to log debug output\n";
+  cerr << "  --debug-rgw=<log-level>/<memory-level>  Set radosgw debug level\n";
+
   return 0;
 }