From 6937d279dcdeadb21252c02d42f4f540c8af2e81 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Mon, 27 May 2024 14:47:03 +0100 Subject: cli: T6383: improve completion help for rollback commands (cherry picked from commit 694e122775613d13b42db9d02ae7bb1a1853c3f5) --- etc/bash_completion.d/vyatta-cfg | 35 ++++++++++++++++++++++++++++++++++- functions/interpreter/vyatta-cfg-run | 2 +- 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/etc/bash_completion.d/vyatta-cfg b/etc/bash_completion.d/vyatta-cfg index c2d3a42..6274e1c 100644 --- a/etc/bash_completion.d/vyatta-cfg +++ b/etc/bash_completion.d/vyatta-cfg @@ -253,7 +253,40 @@ vyatta_rollback_complete () if [ $COMP_CWORD -eq 1 -a -z "${COMP_WORDS[1]}" ]; then echo echo "Possible completions:" - echo -e " \tRollback to revision N (currently requires reboot)" + echo -e " \tRollback to revision N (requires reboot)" + echo -e " \t(use rollback-soft for a non-disruptive rollback) + echo -e "\n Revisions:" + print_commit_log + COMPREPLY=( "" " " ) + else + echo -en "\nPossible completions:\n" + echo -en " \tExecute the current command" + COMPREPLY=( "" " " ) + fi + + eval $restore_shopts +} + +vyatta_rollback-soft_complete () +{ + # Generate completion help for the "rollback-soft" command + + local restore_shopts=$( shopt -p extglob nullglob | tr \\n \; ) + shopt -s extglob nullglob + + if [[ $COMP_CWORD -eq 0 ]];then + vyatta_config_complete "$@" + eval $restore_shopts + return + fi + + # Only provide completions after command name has been typed, but + # before any characters of the command argument have been entered. + if [ $COMP_CWORD -eq 1 -a -z "${COMP_WORDS[1]}" ]; then + echo + echo "Possible completions:" + echo -e " \tRollback to revision N" + echo -e " \t(applies a diff that you can compare and commit)" echo -e "\n Revisions:" print_commit_log COMPREPLY=( "" " " ) diff --git a/functions/interpreter/vyatta-cfg-run b/functions/interpreter/vyatta-cfg-run index a13c62d..d1dbd51 100644 --- a/functions/interpreter/vyatta-cfg-run +++ b/functions/interpreter/vyatta-cfg-run @@ -627,7 +627,7 @@ _vyatta_cfg_init () rollback) complete -F vyatta_rollback_complete ${cmd:0:$pos} ;; rollback-soft) - complete -F vyatta_rollback_complete ${cmd:0:$pos} ;; + complete -F vyatta_rollback-soft_complete ${cmd:0:$pos} ;; commit|commit-confirm) complete -F vyatta_commit_complete ${cmd:0:$pos} ;; *) -- cgit v1.2.3