blob: 7384c2e33c7904f34da7d13aa5167a6c1a122988 [file] [log] [blame]
tom5c255702014-09-18 06:57:39 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
tom1a2908c2014-09-23 16:37:39 -07003# Remotely pushes bits to a remote node and installs ONOS on it.
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom5c255702014-09-18 06:57:39 -07005
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
Kenji HIKICHI237787c2015-01-06 19:57:44 +09009while getopts fnm: o; do
Thomas Vachuskae9fc5962014-10-21 16:10:12 -070010 case "$o" in
11 f) uninstall=true;;
12 n) nostart=true;;
Kenji HIKICHI237787c2015-01-06 19:57:44 +090013 m) mvn_settings=$OPTARG;;
Thomas Vachuskae9fc5962014-10-21 16:10:12 -070014 esac
15done
16let OPC=$OPTIND-1
17shift $OPC
18
19# If the -f was given, attempt uninstall first.
20[ -n "$uninstall" ] && onos-uninstall ${1:-$OCI}
tom3014aef2014-09-18 08:44:39 -070021
tom0768a022014-09-24 16:16:16 -070022node=${1:-$OCI}
23remote=$ONOS_USER@$node
tom5c255702014-09-18 06:57:39 -070024
Thomas Vachuska52e65802014-12-08 09:26:01 -080025$(dirname $0)/onos-push-bits $node
tom5c255702014-09-18 06:57:39 -070026
Kenji HIKICHI237787c2015-01-06 19:57:44 +090027[ ! -z "$mvn_settings" ] && scp -q $mvn_settings $remote:/tmp/settings.xml
28
Pavlin Radoslavov20bc6ae2014-12-03 05:35:04 +000029ssh $remote "
tom3014aef2014-09-18 08:44:39 -070030 [ -d $ONOS_INSTALL_DIR/bin ] && echo \"ONOS is already installed\" && exit 1
31
tom1f3805d2014-09-18 19:58:47 -070032 # Prepare a landing zone and unroll the bits
Charles M.C. Chandfbc6d82014-12-18 23:11:36 +080033 sudo mkdir -p $ONOS_INSTALL_DIR && sudo chown ${ONOS_USER}:${ONOS_GROUP} $ONOS_INSTALL_DIR
tom5c255702014-09-18 06:57:39 -070034 tar zxmf /tmp/$ONOS_BITS.tar.gz -C $ONOS_INSTALL_DIR --strip-components=1
35
tom0eaa97f2014-09-22 16:13:06 -070036 # Make a link to the log file directory and make a home for auxiliaries
tomecd0fbd2014-09-19 08:47:05 -070037 ln -s $ONOS_INSTALL_DIR/$KARAF_DIST/data/log /opt/onos/log
tom0eaa97f2014-09-22 16:13:06 -070038 mkdir $ONOS_INSTALL_DIR/var
tomdefed6f2014-09-29 11:37:02 -070039 mkdir $ONOS_INSTALL_DIR/config
tom0eaa97f2014-09-22 16:13:06 -070040
Yuta HIGUCHI43e3a7e2014-11-30 23:22:11 -080041 # create dir for Raft log
42 # TODO: use $KARAF_DATA
43 mkdir -p -- $ONOS_INSTALL_DIR/$KARAF_DIST/data/raft
44
tomb41d1ac2014-09-24 01:51:24 -070045 # Install the upstart configuration file and setup options for debugging
Brian O'Connor0eed29e2015-09-16 11:38:33 -070046 [ -z "$nostart" ] && sudo cp $ONOS_INSTALL_DIR/init/onos.conf /etc/init/onos.conf
tomb41d1ac2014-09-24 01:51:24 -070047 echo 'export ONOS_OPTS=debug' > $ONOS_INSTALL_DIR/options
tom0eaa97f2014-09-22 16:13:06 -070048
Charles M.C. Chan0a4fa792014-12-11 18:50:08 +080049 # Setup correct user to run onos-service
50 echo 'export ONOS_USER="${ONOS_USER:-sdn}"' >> $ONOS_INSTALL_DIR/options
51
Thomas Vachuska96a303c2015-04-28 16:04:50 -070052 # Remove any previous ON.Lab bits from ~/.m2 repo.
Brian O'Connorabafb502014-12-02 22:26:20 -080053 rm -fr ~/.m2/repository/org/onosproject
tom9ccb2512014-10-07 12:54:53 -070054
Kenji HIKICHI237787c2015-01-06 19:57:44 +090055 [ ! -z "$mvn_settings" ] && cp /tmp/settings.xml ~/.m2/settings.xml
56
tom9ccb2512014-10-07 12:54:53 -070057 # Drop log level for the console
Thomas Vachuskae9fc5962014-10-21 16:10:12 -070058 echo "log4j.logger.org.apache.sshd = WARN" \
59 >> $ONOS_INSTALL_DIR/$KARAF_DIST/etc/org.ops4j.pax.logging.cfg
tom9ccb2512014-10-07 12:54:53 -070060
tom5c255702014-09-18 06:57:39 -070061"
tom0768a022014-09-24 16:16:16 -070062
63# Configure the ONOS installation
64onos-config $node
65
Thomas Vachuskae9fc5962014-10-21 16:10:12 -070066# Unless -n option was given, attempt to ignite the ONOS service.
67[ -z "$nostart" ] && onos-service $node start