Users may be confused by 'ceph-deploy --help' not having the info they
need, add an epilog help text section that informs users of command
specific help texts
Signed-off-by: Caleb Boylan <caleb.boylan@ormuco.com>
def get_parser():
+ epilog_text = "See 'ceph-deploy <command> --help' for help on a specific command"
parser = argparse.ArgumentParser(
prog='ceph-deploy',
formatter_class=argparse.RawDescriptionHelpFormatter,
description='Easy Ceph deployment\n\n%s' % __header__,
+ epilog=epilog_text
)
verbosity = parser.add_mutually_exclusive_group(required=False)
verbosity.add_argument(