blob: 60252c0aeb5aff912722fc8f41a541738fb97c1b [file] [log] [blame]
tom2d7acb72014-09-22 22:13:00 -07001#!/bin/bash
2#-------------------------------------------------------------------------------
3# Remotely patches the ONOS VM to tailor its hostname.
4#-------------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9address=${1:-$OCI}
10remote=$ONOS_USER@$address
11name=${2:-onos-1}
12
13[ -z "$address" ] && echo "Null address not allowed" >&2 && exit 1
14[ -z "$name" ] && echo "Null name not allowed" >&2 && exit 1
15
16ssh $remote "
17 sudo perl -pi.bak -e \"s/127.0.1.1.*/127.0.1.1 $name/g\" /etc/hosts
18 sudo echo $name /etc/hostname
19 sudo hostname $name
20"