mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-29 07:11:49 +01:00
No functional changes. * Description header formatting * Added missing new line at the end of a file * Removed extra new lines at the end of a file
18 lines
662 B
Bash
Executable File
18 lines
662 B
Bash
Executable File
#!/bin/bash
|
|
# -----------------------------------------------------------------------------
|
|
# Pushes the local id_rsa.pub to the authorized_keys on a remote ONOS node.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
|
|
. $ONOS_ROOT/tools/build/envDefaults
|
|
|
|
remote=$ONOS_USER@${1:-$OCI}
|
|
|
|
scp -q ~/.ssh/id_rsa.pub $remote:/tmp
|
|
ssh $remote "
|
|
cat /tmp/id_rsa.pub >> ~/.ssh/authorized_keys
|
|
sort -u ~/.ssh/authorized_keys > ~/.ssh/authorized_keys.bak
|
|
mv ~/.ssh/authorized_keys.bak ~/.ssh/authorized_keys
|
|
"
|
|
ssh -n -o PasswordAuthentication=no $remote true
|