From 746ea1da268b7890345c0ddc324f6f3d8d2860ed Mon Sep 17 00:00:00 2001 From: Guido Trotter <ultrotter@google.com> Date: Thu, 11 Sep 2008 17:45:39 +0000 Subject: [PATCH] gnt-instance: fix tags commands online help It used to refer to "nodes", which was confusing. Reviewed-by: iustinp --- scripts/gnt-instance | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/gnt-instance b/scripts/gnt-instance index f2c015b29..7b8ce9db3 100755 --- a/scripts/gnt-instance +++ b/scripts/gnt-instance @@ -1135,11 +1135,11 @@ commands = { 'grow-disk': (GrowDisk, ARGS_FIXED(3), [DEBUG_OPT, SUBMIT_OPT], "<instance> <disk> <size>", "Grow an instance's disk"), 'list-tags': (ListTags, ARGS_ONE, [DEBUG_OPT], - "<node_name>", "List the tags of the given instance"), + "<instance_name>", "List the tags of the given instance"), 'add-tags': (AddTags, ARGS_ATLEAST(1), [DEBUG_OPT, TAG_SRC_OPT], - "<node_name> tag...", "Add tags to the given instance"), + "<instance_name> tag...", "Add tags to the given instance"), 'remove-tags': (RemoveTags, ARGS_ATLEAST(1), [DEBUG_OPT, TAG_SRC_OPT], - "<node_name> tag...", "Remove tags from given instance"), + "<instance_name> tag...", "Remove tags from given instance"), } aliases = { -- GitLab