Skip to content
Snippets Groups Projects
Commit 51548d1a authored by Martyn Welch's avatar Martyn Welch
Browse files

Correct ssh-copy-id command syntax


The ssh-copy-id command syntax in sdk-ade-remote-debugging.yaml is
incorrect in two ways:

- The user is in capitals, whilst the actual username used should be in
  lower case
- The test case uses `$HOST` as a convention for the hostname/IP to be used
  for the target device, this command is missing the dollar sign.

Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.com>
parent 69ebacc7
Branches apertis/v2021dev2
No related tags found
1 merge request!172Correct ssh-copy-id command syntax
Pipeline #136268 passed
......@@ -41,7 +41,7 @@ run:
- $ ade sysroot install
- "Enable key-based SSH login on the target device"
- $ ssh-keygen -t rsa -m PEM
- $ ssh-copy-id USER@HOST
- $ ssh-copy-id user@$HOST
- "Clone the source code for the HelloWorld sample agent on the SDK host"
- $ git clone https://gitlab.apertis.org/sample-applications/helloworld-simple-agent
- $ cd helloworld-simple-agent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment