From 108bdeb269c8b893ee1a3ee1b339e1015dbe9ba1 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Thu, 6 Oct 2016 07:38:45 +0900 Subject: [PATCH] Add 'cluster crosscheck' to help output detail Per GitHub #243. --- repmgr.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/repmgr.c b/repmgr.c index 85a83861..e3dd9707 100644 --- a/repmgr.c +++ b/repmgr.c @@ -6254,7 +6254,10 @@ do_help(void) printf(_(" witness register - registers a witness server\n")); printf(_(" witness unregister - unregisters a witness server\n")); printf(_(" cluster show - displays information about cluster nodes\n")); - printf(_(" cluster matrix - displays the cluster's connection matrix\n")); + printf(_(" cluster matrix - displays the cluster's connection matrix\n" \ + " as seen from the current node\n")); + printf(_(" cluster crosscheck - displays the cluster's connection matrix\n" \ + " as seen from all nodes\n")); printf(_(" cluster cleanup - prunes or truncates monitoring history\n" \ " (monitoring history creation requires repmgrd\n" \ " with --monitoring-history option)\n"));