summaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2023-04-17 23:52:58 +0100
committerGitHub <noreply@github.com>2023-04-17 23:52:58 +0100
commit81048da3bc1438b89e2b9bdb3006cf886d1f548f (patch)
treed6b9eeaf8845cb37ec97395f04a92781224a31b8 /functions
parent754d45c69f1f34a7aa90377b469661f4fa1f0695 (diff)
parent3d57999aae0117055921f085ad07d79ba10c4e10 (diff)
downloadvyatta-cfg-81048da3bc1438b89e2b9bdb3006cf886d1f548f.tar.gz
vyatta-cfg-81048da3bc1438b89e2b9bdb3006cf886d1f548f.zip
Merge pull request #56 from erkin/current
loadkey: T3506: Remove (what remains of) loadkey
Diffstat (limited to 'functions')
-rw-r--r--functions/interpreter/vyatta-cfg-run5
1 files changed, 0 insertions, 5 deletions
diff --git a/functions/interpreter/vyatta-cfg-run b/functions/interpreter/vyatta-cfg-run
index 4280159..2f8f50d 100644
--- a/functions/interpreter/vyatta-cfg-run
+++ b/functions/interpreter/vyatta-cfg-run
@@ -34,7 +34,6 @@ _vyatta_cfg_cmds=( "confirm" \
"edit" \
"exit" \
"load" \
- "loadkey" \
"merge" \
"rename" \
"rollback" \
@@ -54,7 +53,6 @@ _vyatta_cfg_helps=( \
"Edit a sub-element" \
"Exit from this configuration level" \
"Load configuration from a file and replace running configuration" \
- "Load user SSH key from a file" \
"Load configuration from a file and merge running configuration" \
"Rename a configuration element" \
"Rollback to a prior config revision (requires reboot)" \
@@ -571,7 +569,6 @@ vyatta_cfg_run ()
compare) vyatta_config_compare "${@:2}";;
save) vyatta_config_save "${@:2}" ;;
merge) vyatta_config_merge "${@:2}" ;;
- loadkey) vyatta_config_loadkey "${@:2}";;
*) vyatta_cfg_cmd $fcmd "${@:2}" ;; # commands requiring path expansion must go through here
esac
}
@@ -613,8 +610,6 @@ _vyatta_cfg_init ()
complete -F vyatta_single_word_complete ${cmd:0:$pos} ;;
run)
complete -F vyatta_run_complete ${cmd:0:$pos} ;;
- loadkey)
- complete -F vyatta_loadkey_complete ${cmd:0:$pos} ;;
compare)
complete -F vyatta_compare_complete ${cmd:0:$pos} ;;
rollback)