diff options
author | John Estabrook <jestabro@vyos.io> | 2024-10-08 16:57:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-08 16:57:35 -0500 |
commit | 2f5045e3678c4a00463df0347eeaf38cf70e6b82 (patch) | |
tree | 07136df2fe4dca954ed19d27dabcadea916f162f | |
parent | 7f0896ed6e58c7796bb175f46a9c97f2319c9648 (diff) | |
parent | 4cd430f5f80fbbb44298ee1c2898230fbb42a7e5 (diff) | |
download | vyatta-cfg-2f5045e3678c4a00463df0347eeaf38cf70e6b82.tar.gz vyatta-cfg-2f5045e3678c4a00463df0347eeaf38cf70e6b82.zip |
config-mgmt: T5976: commit-confirm completion to include soft revert
-rw-r--r-- | etc/bash_completion.d/vyatta-cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/bash_completion.d/vyatta-cfg b/etc/bash_completion.d/vyatta-cfg index 2b208ce..da1e71f 100644 --- a/etc/bash_completion.d/vyatta-cfg +++ b/etc/bash_completion.d/vyatta-cfg @@ -409,8 +409,8 @@ vyatta_commit_complete () if [ "${COMP_WORDS[0]}" = "commit" ]; then echo -e " <Enter>\tCommit working configuration" elif [ "${COMP_WORDS[0]}" = "commit-confirm" ]; then - echo -e " <Enter>\tCommit, rollback/reboot in 10 minutes if no confirm" - echo -e " <N>\t\tCommit, rollback/reboot in N minutes if no confirm" + echo -e " <Enter>\tCommit, revert commit in 10 minutes if no confirm" + echo -e " <N>\t\tCommit, revert commit in N minutes if no confirm" fi echo -e " comment\tComment for commit log" COMPREPLY=( "" " " ) |