From 677487d893656e66b6869b552ff39179e8d80408 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Tue, 8 Jan 2019 10:10:43 +0900 Subject: [PATCH] Fix "repmgr --help" output Add missing references to "witness" and "daemon" actions. --- repmgr-client.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/repmgr-client.c b/repmgr-client.c index a6506ed4..b1766cad 100644 --- a/repmgr-client.c +++ b/repmgr-client.c @@ -2005,7 +2005,7 @@ do_help(void) puts(""); - printf(_(" Execute \"%s {primary|standby|bdr|node|cluster} --help\" to see command-specific options\n"), progname()); + printf(_(" Execute \"%s {primary|standby|bdr|node|cluster|witness|daemon} --help\" to see command-specific options\n"), progname()); puts(""); @@ -2053,8 +2053,6 @@ do_help(void) printf(_(" -t, --terse don't display detail, hints and other non-critical output\n")); printf(_(" -v, --verbose display additional log output (useful for debugging)\n")); - - puts(""); }