blob: 55ee2eee50d7837f9f6b54f22ac71692dd9c5933 [file] [log] [blame]
tom2d7acb72014-09-22 22:13:00 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
tom1a2908c2014-09-23 16:37:39 -07003# Pushes the local id_rsa.pub to the authorized_keys on a remote ONOS node.
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom2d7acb72014-09-22 22:13:00 -07005
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9remote=$ONOS_USER@${1:-$OCI}
10
11scp -q ~/.ssh/id_rsa.pub $remote:/tmp
tom22288032014-10-07 08:16:53 -070012ssh $remote "
Marc De Leenheer8c02cfc2014-12-02 11:40:21 -080013 mkdir -p ~/.ssh
Jonathan Hartb4317d72015-03-27 13:37:56 -070014 chmod 700 ~/.ssh
tom22288032014-10-07 08:16:53 -070015 cat /tmp/id_rsa.pub >> ~/.ssh/authorized_keys
16 sort -u ~/.ssh/authorized_keys > ~/.ssh/authorized_keys.bak
17 mv ~/.ssh/authorized_keys.bak ~/.ssh/authorized_keys
Jonathan Hartb4317d72015-03-27 13:37:56 -070018 chmod 600 ~/.ssh/authorized_keys
tom22288032014-10-07 08:16:53 -070019"
tom2d7acb72014-09-22 22:13:00 -070020ssh -n -o PasswordAuthentication=no $remote true