From 36e247e1f739870fdb3de5a401ac437e686a09a6 Mon Sep 17 00:00:00 2001 From: Guido Trotter <ultrotter@google.com> Date: Tue, 7 Sep 2010 17:16:17 +0100 Subject: [PATCH] Add nodegroup bash autocomplation We autocomplete both by nodegroup name and uuid. Signed-off-by: Guido Trotter <ultrotter@google.com> Reviewed-by: Michael Hanselmann <hansmi@google.com> --- autotools/build-bash-completion | 11 +++++++++++ lib/cli.py | 5 ++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/autotools/build-bash-completion b/autotools/build-bash-completion index efb381f7a..b0465439e 100755 --- a/autotools/build-bash-completion +++ b/autotools/build-bash-completion @@ -117,6 +117,15 @@ def WritePreamble(sw): sw.DecIndent() sw.Write("}") + sw.Write("_ganeti_nodegroup() {") + sw.IncIndent() + try: + nodegroups_path = os.path.join(constants.DATA_DIR, "ssconf_nodegroups") + sw.Write("cat %s 2>/dev/null || :", utils.ShellQuote(nodegroups_path)) + finally: + sw.DecIndent() + sw.Write("}") + # Params: <offset> <options with values> <options without values> # Result variable: $first_arg_idx sw.Write("_ganeti_find_first_arg() {") @@ -324,6 +333,8 @@ class CompletionWriter: WriteCompReply(sw, "-W \"$(_ganeti_os)\"", cur=cur) elif suggest == cli.OPT_COMPL_ONE_IALLOCATOR: WriteCompReply(sw, "-W \"$(_ganeti_iallocator)\"", cur=cur) + elif suggest == cli.OPT_COMPL_ONE_NODEGROUP: + WriteCompReply(sw, "-W \"$(_ganeti_nodegroup)\"", cur=cur) elif suggest == cli.OPT_COMPL_INST_ADD_NODES: sw.Write("local tmp= node1= pfx= curvalue=\"${optcur#*:}\"") diff --git a/lib/cli.py b/lib/cli.py index ad8e9a7fc..14c6c9289 100644 --- a/lib/cli.py +++ b/lib/cli.py @@ -194,6 +194,7 @@ __all__ = [ "OPT_COMPL_ONE_IALLOCATOR", "OPT_COMPL_ONE_INSTANCE", "OPT_COMPL_ONE_NODE", + "OPT_COMPL_ONE_NODEGROUP", "OPT_COMPL_ONE_OS", "cli_option", "SplitNodeOption", @@ -515,7 +516,8 @@ def check_bool(option, opt, value): # pylint: disable-msg=W0613 OPT_COMPL_ONE_INSTANCE, OPT_COMPL_ONE_OS, OPT_COMPL_ONE_IALLOCATOR, - OPT_COMPL_INST_ADD_NODES) = range(100, 106) + OPT_COMPL_INST_ADD_NODES, + OPT_COMPL_ONE_NODEGROUP) = range(100, 107) OPT_COMPL_ALL = frozenset([ OPT_COMPL_MANY_NODES, @@ -524,6 +526,7 @@ OPT_COMPL_ALL = frozenset([ OPT_COMPL_ONE_OS, OPT_COMPL_ONE_IALLOCATOR, OPT_COMPL_INST_ADD_NODES, + OPT_COMPL_ONE_NODEGROUP, ]) -- GitLab