blob: 84b9764cd75ef5cce499ee84d11925f5f82186e0 [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
Marc De Leenheerf8e02832017-01-17 15:33:11 -080017 The procedure for configuring a node includes determining base features,
Ayaka Koshibef17f34a2015-09-24 19:31:48 -070018 applications to load at startup, and clustering and logical network view
19 configurations, among others.
20
Marc De Leenheerf8e02832017-01-17 15:33:11 -080021 If [node] isn't specified, the default target becomes \$OCI.
Ayaka Koshibef17f34a2015-09-24 19:31:48 -070022
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
Bob Lantz7c751b52016-04-15 15:42:28 -070040ssh -tt $remote "
Jonathan Hart54b4a372015-03-27 15:34:32 -070041 echo \"onos.ip = \$(sudo ifconfig | grep $ONOS_NIC | cut -d: -f2 | cut -d\\ -f1)\" \
tomdefed6f2014-09-29 11:37:02 -070042 >> $ONOS_INSTALL_DIR/$KARAF_DIST/etc/system.properties
Yuta HIGUCHI18fdb252014-11-28 23:48:30 -080043
44 # Drop copycat related log level for the console
45 echo "log4j.logger.net.kuujo.copycat= INFO" \
46 >> $ONOS_INSTALL_DIR/$KARAF_DIST/etc/org.ops4j.pax.logging.cfg
47
Thomas Vachuska785f5812015-03-19 01:11:00 -070048 # Patch the Apache Karaf distribution file to load ONOS boot features
49 perl -pi.old -e \"s|^(featuresBoot=.*,management)(,webconsole,.*)|\1,$ONOS_BOOT_FEATURES|\" \
Thomas Vachuska734b7492015-03-11 20:42:07 -070050 $ONOS_INSTALL_DIR/$KARAF_DIST/etc/org.apache.karaf.features.cfg
Thomas Vachuska785f5812015-03-19 01:11:00 -070051
52 # Customize which builtin apps should be ignited
53 for app in $(echo $ONOS_APPS | tr ',' ' '); do
Marc De Leenheerf8e02832017-01-17 15:33:11 -080054 if [ -d \"$ONOS_INSTALL_DIR/apps/org.onosproject.\$app/\" ]; then
55 touch $ONOS_INSTALL_DIR/apps/org.onosproject.\$app/active
56 elif [ -d \"$ONOS_INSTALL_DIR/apps/\$app\" ]; then
57 touch $ONOS_INSTALL_DIR/apps/\$app/active
58 else
59 echo \"[WARN] Don\'t know how to activate \$app\"
60 fi
Thomas Vachuska785f5812015-03-19 01:11:00 -070061 done
tomdefed6f2014-09-29 11:37:02 -070062"
Yuta HIGUCHI60731cb2014-11-11 01:34:46 -080063
Madan Jampaniec1df022015-10-13 21:23:03 -070064# Generate a default cluster.json from the ON* environment variables
65CDEF_FILE=/tmp/${remote}.cluster.json
66onos-gen-partitions $CDEF_FILE
67scp -q $CDEF_FILE $remote:$ONOS_INSTALL_DIR/config/cluster.json
Yuta HIGUCHI60731cb2014-11-11 01:34:46 -080068
Thomas Vachuskae6360222015-07-21 10:10:36 -070069# Copy tools/package/config/ to remote
Yuta HIGUCHI60731cb2014-11-11 01:34:46 -080070scp -qr ${ONOS_ROOT}/tools/package/config/ $remote:$ONOS_INSTALL_DIR/
Thomas Vachuskae6360222015-07-21 10:10:36 -070071
72# Copy the desired initial network configuration to remote if needed
Thomas Vachuska8d033672015-07-21 16:15:04 -070073[ -n "$ONOS_CFG" -a -f "$ONOS_CFG" -a "${1:-$OCI}" = "$OC1" ] && \
Brian O'Connor13081ca2017-06-29 22:35:39 -070074 scp $ONOS_CFG $remote:$ONOS_INSTALL_DIR/config/network-cfg.json || true