summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/nova-manage.bash_completion36
1 files changed, 18 insertions, 18 deletions
diff --git a/tools/nova-manage.bash_completion b/tools/nova-manage.bash_completion
index 053d41950b..0088a522fe 100644
--- a/tools/nova-manage.bash_completion
+++ b/tools/nova-manage.bash_completion
@@ -13,25 +13,25 @@ _get_nova_manage_subopts () {
_nova_manage()
{
- local cur prev subopts
- COMPREPLY=()
- cur="${COMP_WORDS[COMP_CWORD]}"
- prev="${COMP_WORDS[COMP_CWORD-1]}"
+ local cur prev subopts
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
- if [ "x$_nova_manage_opts" == "x" ] ; then
- _nova_manage_opts="`nova-manage bash-completion 2>/dev/null`"
- _nova_manage_opts_exp="`echo $_nova_manage_opts | sed -e "s/\s/|/g"`"
- fi
+ if [ "x$_nova_manage_opts" == "x" ] ; then
+ _nova_manage_opts="`nova-manage bash-completion 2>/dev/null`"
+ _nova_manage_opts_exp="`echo $_nova_manage_opts | sed -e "s/\s/|/g"`"
+ fi
- if [[ " `echo $_nova_manage_opts` " =~ " $prev " ]] ; then
- if [ "x$(_get_nova_manage_subopts "$prev")" == "x" ] ; then
- subopts="`nova-manage bash-completion $prev 2>/dev/null`"
- _set_nova_manage_subopts "$prev" "$subopts"
- fi
- COMPREPLY=($(compgen -W "$(_get_nova_manage_subopts "$prev")" -- ${cur}))
- elif [[ ! " ${COMP_WORDS[@]} " =~ " "($_nova_manage_opts_exp)" " ]] ; then
- COMPREPLY=($(compgen -W "${_nova_manage_opts}" -- ${cur}))
- fi
- return 0
+ if [[ " `echo $_nova_manage_opts` " =~ " $prev " ]] ; then
+ if [ "x$(_get_nova_manage_subopts "$prev")" == "x" ] ; then
+ subopts="`nova-manage bash-completion $prev 2>/dev/null`"
+ _set_nova_manage_subopts "$prev" "$subopts"
+ fi
+ COMPREPLY=($(compgen -W "$(_get_nova_manage_subopts "$prev")" -- ${cur}))
+ elif [[ ! " ${COMP_WORDS[@]} " =~ " "($_nova_manage_opts_exp)" " ]] ; then
+ COMPREPLY=($(compgen -W "${_nova_manage_opts}" -- ${cur}))
+ fi
+ return 0
}
complete -F _nova_manage nova-manage