diff options
author | John Estabrook <jestabro@sentrium.io> | 2019-10-01 11:31:42 -0500 |
---|---|---|
committer | John Estabrook <jestabro@sentrium.io> | 2019-10-01 11:31:42 -0500 |
commit | 9e74ad7ef0c043bc7bd1fa14b6708cc11ab3bc5c (patch) | |
tree | 7fd9e531184d29615876a69726d6a3f6dc924de2 /etc | |
parent | 710728ee8eb6def82f9a142468960f6985dcf4e8 (diff) | |
download | vyatta-cfg-9e74ad7ef0c043bc7bd1fa14b6708cc11ab3bc5c.tar.gz vyatta-cfg-9e74ad7ef0c043bc7bd1fa14b6708cc11ab3bc5c.zip |
T1424: Rewrite the config load script
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/bash_completion.d/vyatta-cfg | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/etc/bash_completion.d/vyatta-cfg b/etc/bash_completion.d/vyatta-cfg index cf72330..a2c3332 100755 --- a/etc/bash_completion.d/vyatta-cfg +++ b/etc/bash_completion.d/vyatta-cfg @@ -192,14 +192,14 @@ vyatta_loadsave_complete() echo echo "Possible completions:" if [ "$command" = "load" ]; then - echo -e " <Enter>\t\t\t\tLoad from system config file" - echo -e " <file>\t\t\t\tLoad from file on local machine" - echo -e " scp://<user>:<passwd>@<host>/<file>\tLoad from file on remote machine" - echo -e " sftp://<user>:<passwd>@<host>/<file>\tLoad from file on remote machine" - echo -e " ftp://<user>:<passwd>@<host>/<file>\tLoad from file on remote machine" - echo -e " http://<host>/<file>\t\t\tLoad from file on remote machine" - echo -e " https://<host>/<file>\t\t\tLoad from file on remote machine" - echo -e " tftp://<host>/<file>\t\t\tLoad from file on remote machine" + echo -e " <Enter>\t\t\t\t\tLoad from system config file" + echo -e " <file>\t\t\t\t\tLoad from file on local machine" + echo -e " scp://<user>[:<passwd>]@<host>/<file>\t\tLoad from file on remote machine" + echo -e " sftp://<user>[:<passwd>]@<host>/<file>\tLoad from file on remote machine" + echo -e " http://<host>/<file>\t\t\t\tLoad from file on remote machine" + echo -e " https://<host>/<file>\t\t\t\tLoad from file on remote machine" + echo -e " ftp://<user>[:<passwd>]@<host>/<file>\t\tLoad from file on remote machine" + echo -e " tftp://<host>/<file>\t\t\t\tLoad from file on remote machine" elif [ "$command" = "merge" ]; then echo -e " <file>\t\t\t\t\tMerge from file on local machine" echo -e " scp://<user>[:<passwd>]@<host>/<file>\t\tMerge from file on remote machine" |