bash completion: add calls to _lttng_complete_sessions
[lttng-tools.git] / extras / lttng-bash_completion
index cc8155734a4df0dbfae5743d8a37646ca9439f95..bff8df724276992d02d714e31ebc4b28d4380b80 100644 (file)
 #
 
 _lttng_complete_sessions() {
-       # TODO, maybe have a lttng list --simple or something like that
+       # TODO
+       # This code does nothing for now. When there is a mecanism to get the
+       # existing sessions, use it to fill the sessions variable.
+       local sessions
+       sessions=""
+       COMPREPLY=( $(compgen -W "${sessions}" -- $cur) )
        return
 }
 
@@ -181,6 +186,9 @@ _lttng_cmd_list() {
                COMPREPLY=( $(compgen -W "${list_opts}" -- $cur) )
                return
                ;;
+       *)
+               _lttng_complete_sessions
+               return
        esac
 }
 
@@ -193,6 +201,10 @@ _lttng_cmd_setsession() {
                COMPREPLY=( $(compgen -W "${set_session_opts}" -- $cur) )
                return
                ;;
+       *)
+               _lttng_complete_sessions
+               return
+               ;;
        esac
 }
 
This page took 0.022994 seconds and 4 git commands to generate.