mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 10:21:52 +02:00
14 lines
511 B
Bash
Executable File
14 lines
511 B
Bash
Executable File
#!/bin/bash
|
|
# -----------------------------------------------------------------------------
|
|
# Adds or removes a user key for managing passwordless loging to ONOS console.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
|
|
. $ONOS_ROOT/tools/build/envDefaults
|
|
|
|
node=${1:-$OCI}
|
|
user=${2:-$(id -un)}
|
|
key=${3:-$(cut -d\ -f2 ~/.ssh/id_rsa.pub)}
|
|
|
|
ssh $ONOS_USER@$node $ONOS_INSTALL_DIR/bin/onos-user-key $user $key
|