diff options
author | Cédric Jeanneret <cjeanneret@internux.ch> | 2020-10-26 19:28:17 +0100 |
---|---|---|
committer | Cédric Jeanneret <cjeanneret@internux.ch> | 2020-10-26 19:28:17 +0100 |
commit | 5f0d33af1a5f709314c046b6dee40a63353f4363 (patch) | |
tree | a4232ebdc75ce517332f2753c7d071303b2523ba /docs/system | |
parent | 6a3e2b82044192c8685bdc275f3fc90b4e05a368 (diff) | |
download | vyos-documentation-5f0d33af1a5f709314c046b6dee40a63353f4363.tar.gz vyos-documentation-5f0d33af1a5f709314c046b6dee40a63353f4363.zip |
Correct the scp URI
A standard `scp` call implies a ":" between the remote host
and the remote path. Let's reflect it in the doc to avoid
any confusion.
Diffstat (limited to 'docs/system')
-rw-r--r-- | docs/system/user-management.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/system/user-management.rst b/docs/system/user-management.rst index d3dcc378..6d89735f 100644 --- a/docs/system/user-management.rst +++ b/docs/system/user-management.rst @@ -78,7 +78,7 @@ The third part is simply an identifier, and is for your own reference. using one of the following :abbr:`URIs (Uniform Resource Identifier)`: * ``<file>`` - Load from file on local filesystem path - * ``scp://<user>@<host>/<file>`` - Load via SCP from remote machine + * ``scp://<user>@<host>:/<file>`` - Load via SCP from remote machine * ``sftp://<user>@<host>/<file>`` - Load via SFTP from remote machine * ``ftp://<user>@<host>/<file>`` - Load via FTP from remote machine * ``http://<host>/<file>`` - Load via HTTP from remote machine |