tom | 2d7acb7 | 2014-09-22 22:13:00 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | #------------------------------------------------------------------------------- |
tom | 1a2908c | 2014-09-23 16:37:39 -0700 | [diff] [blame] | 3 | # Pushes the local id_rsa.pub to the authorized_keys on a remote ONOS node. |
tom | 2d7acb7 | 2014-09-22 22:13:00 -0700 | [diff] [blame] | 4 | #------------------------------------------------------------------------------- |
| 5 | |
| 6 | [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 |
| 7 | . $ONOS_ROOT/tools/build/envDefaults |
| 8 | |
| 9 | remote=$ONOS_USER@${1:-$OCI} |
| 10 | |
| 11 | scp -q ~/.ssh/id_rsa.pub $remote:/tmp |
tom | 2228803 | 2014-10-07 08:16:53 -0700 | [diff] [blame] | 12 | ssh $remote " |
| 13 | cat /tmp/id_rsa.pub >> ~/.ssh/authorized_keys |
| 14 | sort -u ~/.ssh/authorized_keys > ~/.ssh/authorized_keys.bak |
| 15 | mv ~/.ssh/authorized_keys.bak ~/.ssh/authorized_keys |
| 16 | " |
tom | 2d7acb7 | 2014-09-22 22:13:00 -0700 | [diff] [blame] | 17 | ssh -n -o PasswordAuthentication=no $remote true |