(subparsers)
| 347 | |
| 348 | |
| 349 | def initialize_localconfvalue_subcommand(subparsers): |
| 350 | command_help = '''Prints out the value for conf-name in the local Storm configs. |
| 351 | The local Storm configs are the ones in ~/.storm/storm.yaml merged |
| 352 | in with the configs in defaults.yaml.''' |
| 353 | |
| 354 | sub_parser = subparsers.add_parser("localconfvalue", help=command_help, formatter_class=SortingHelpFormatter) |
| 355 | sub_parser.add_argument("conf_name") |
| 356 | sub_parser.set_defaults(func=print_localconfvalue) |
| 357 | add_common_options(sub_parser) |
| 358 | |
| 359 | |
| 360 | def initialize_remoteconfvalue_subcommand(subparsers): |
no test coverage detected