blob: 348cb83974be909657b2f792da9c68219cfd144e [file] [log] [blame]
tom5ca34372014-09-19 17:43:41 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
tom5ca34372014-09-19 17:43:41 -07003# Remotely configures & starts ONOS for the first time.
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom5ca34372014-09-19 17:43:41 -07005
Ayaka Koshibef17f34a2015-09-24 19:31:48 -07006function _usage () {
7cat << _EOF_
8usage:
9 $(basename $0) [node]
10
11options:
12- [node] : The node to configure
13
14summary:
15 Remotely configures and starts ONOS for the first time.
16
17 The procedure for configruing a node include determining base features,
18 applications to load at startup, and clustering and logical network view
19 configurations, among others.
20
21 If [node] isn't specified, the defualt target becomes \$OCI.
22
23_EOF_
24}
25
26[ "$1" = "-h" ] && _usage && exit 0
27
tom5ca34372014-09-19 17:43:41 -070028[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
29. $ONOS_ROOT/tools/build/envDefaults
30
Thomas Vachuska12bf4452015-06-26 09:15:38 -070031node=${1:-$OCI}
32remote=$ONOS_USER@$node
tom5ca34372014-09-19 17:43:41 -070033
Thomas Vachuska785f5812015-03-19 01:11:00 -070034# ONOS boot features
Thomas Vachuskaf7adc6e2015-05-20 18:49:57 -070035export ONOS_BOOT_FEATURES="${ONOS_BOOT_FEATURES:-webconsole,onos-api,onos-core,onos-incubator,onos-cli,onos-rest,onos-gui}"
Thomas Vachuska734b7492015-03-11 20:42:07 -070036
Thomas Vachuska785f5812015-03-19 01:11:00 -070037# ONOS builtin apps and providers ignited by default
Thomas Vachuskadb7467a2015-04-17 11:06:53 -070038export ONOS_APPS="${ONOS_APPS:-drivers,openflow}"
Thomas Vachuska734b7492015-03-11 20:42:07 -070039
tomdefed6f2014-09-29 11:37:02 -070040# Generate a cluster.json from the ON* environment variables
Yuta HIGUCHIe4920dc2014-11-24 16:26:17 -080041CDEF_FILE=/tmp/${remote}.cluster.json
Madan Jampania14047d2015-02-25 12:23:02 -080042echo "{ \"ipPrefix\": \"$ONOS_NIC\"," > $CDEF_FILE
43echo " \"nodes\":[" >> $CDEF_FILE
tomdefed6f2014-09-29 11:37:02 -070044for node in $(env | sort | egrep "OC[2-9]+" | cut -d= -f2); do
45 echo " { \"id\": \"$node\", \"ip\": \"$node\", \"tcpPort\": 9876 }," >> $CDEF_FILE
46done
47echo " { \"id\": \"$OC1\", \"ip\": \"$OC1\", \"tcpPort\": 9876 }" >> $CDEF_FILE
48echo "]}" >> $CDEF_FILE
Yuta HIGUCHIe4920dc2014-11-24 16:26:17 -080049scp -q $CDEF_FILE $remote:$ONOS_INSTALL_DIR/config/cluster.json
tomdefed6f2014-09-29 11:37:02 -070050
Pavlin Radoslavov20bc6ae2014-12-03 05:35:04 +000051ssh $remote "
Jonathan Hart54b4a372015-03-27 15:34:32 -070052 echo \"onos.ip = \$(sudo ifconfig | grep $ONOS_NIC | cut -d: -f2 | cut -d\\ -f1)\" \
tomdefed6f2014-09-29 11:37:02 -070053 >> $ONOS_INSTALL_DIR/$KARAF_DIST/etc/system.properties
Yuta HIGUCHI18fdb252014-11-28 23:48:30 -080054
55 # Drop copycat related log level for the console
56 echo "log4j.logger.net.kuujo.copycat= INFO" \
57 >> $ONOS_INSTALL_DIR/$KARAF_DIST/etc/org.ops4j.pax.logging.cfg
58
Thomas Vachuska785f5812015-03-19 01:11:00 -070059 # Patch the Apache Karaf distribution file to load ONOS boot features
60 perl -pi.old -e \"s|^(featuresBoot=.*,management)(,webconsole,.*)|\1,$ONOS_BOOT_FEATURES|\" \
Thomas Vachuska734b7492015-03-11 20:42:07 -070061 $ONOS_INSTALL_DIR/$KARAF_DIST/etc/org.apache.karaf.features.cfg
Thomas Vachuska785f5812015-03-19 01:11:00 -070062
63 # Customize which builtin apps should be ignited
64 for app in $(echo $ONOS_APPS | tr ',' ' '); do
65 touch $ONOS_INSTALL_DIR/apps/org.onosproject.\$app/active
66 done
tomdefed6f2014-09-29 11:37:02 -070067"
Yuta HIGUCHI60731cb2014-11-11 01:34:46 -080068
69# Generate a default tablets.json from the ON* environment variables
Yuta HIGUCHIe4920dc2014-11-24 16:26:17 -080070TDEF_FILE=/tmp/${remote}.tablets.json
Madan Jampani0cb00672015-02-27 00:27:22 -080071onos-gen-partitions $TDEF_FILE
Yuta HIGUCHIe4920dc2014-11-24 16:26:17 -080072scp -q $TDEF_FILE $remote:$ONOS_INSTALL_DIR/config/tablets.json
Yuta HIGUCHI60731cb2014-11-11 01:34:46 -080073
Thomas Vachuskae6360222015-07-21 10:10:36 -070074# Copy tools/package/config/ to remote
Yuta HIGUCHI60731cb2014-11-11 01:34:46 -080075scp -qr ${ONOS_ROOT}/tools/package/config/ $remote:$ONOS_INSTALL_DIR/
Thomas Vachuskae6360222015-07-21 10:10:36 -070076
77# Copy the desired initial network configuration to remote if needed
Thomas Vachuska8d033672015-07-21 16:15:04 -070078[ -n "$ONOS_CFG" -a -f "$ONOS_CFG" -a "${1:-$OCI}" = "$OC1" ] && \
Thomas Vachuskae6360222015-07-21 10:10:36 -070079 scp $ONOS_CFG $remote:$ONOS_INSTALL_DIR/config/network-cfg.json