blob: df4379f9411c4d76f6d2f57cf5fe96d53a0eaf36 [file] [log] [blame]
Thomas Vachuska12bf4452015-06-26 09:15:38 -07001#!/bin/bash
2# -----------------------------------------------------------------------------
Thomas Vachuska5af2e4f2016-12-16 12:07:33 -08003# Adds or removes a user key for managing passwordless login to ONOS console.
Thomas Vachuska12bf4452015-06-26 09:15:38 -07004# -----------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9node=${1:-$OCI}
10user=${2:-$(id -un)}
11key=${3:-$(cut -d\ -f2 ~/.ssh/id_rsa.pub)}
12
13ssh $ONOS_USER@$node $ONOS_INSTALL_DIR/bin/onos-user-key $user $key