From: Abhishek Lekshmanan Date: Thu, 24 Jul 2014 15:00:42 +0000 (+0530) Subject: rgw: list all available options during help() X-Git-Tag: v0.84~68 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e259aca55a9c7ef24db625f7c03dc0e86495fa07;p=ceph.git rgw: list all available options during help() Adding the available help arguments from the man page Fixes: #8112 Reviewed-by: Yehuda Sadeh Signed-off-by: Abhishek Lekshmanan --- diff --git a/src/rgw/rgw_main.cc b/src/rgw/rgw_main.cc index 51cfebe86583..c3de2ae9368a 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 in which radosgw runs\n"; cerr << " --rgw-zone= zone in which radosgw runs\n"; + cerr << " --rgw-socket-path= specify a unix domain socket path\n"; generic_server_usage(); + cerr << " -m monaddress[:port] connect to specified monitor\n"; + cerr << " --keyring= path to radosgw keyring\n"; + cerr << " --logfile= file to log debug output\n"; + cerr << " --debug-rgw=/ set radosgw debug level\n"; + return 0; }