blob: e9763ca44decbd363f7c1c990e2b9a015063cf0e [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
Ayaka Koshibef17f34a2015-09-24 19:31:48 -07006function _usage () {
7cat << _EOF_
8usage:
9 $(basename $0) [-fn] [-m] <settings> [node]
10
11flags:
12- -f : forces uninstall of currently installed ONOS
Bob Lantz0b13c1b2016-02-25 05:18:54 -080013- -u : don't install onos.conf upstart configuration file
14- -i : don't install /etc/init.d/onos script (also used by onos.conf)
15- -n : don't try to start ONOS
Ayaka Koshibef17f34a2015-09-24 19:31:48 -070016- -m <settings> : pass <settings> XML file to remote maven installation
17
18options:
19- [node] : remote node to install ONOS on.
20
21summary:
22 Remotely pushes bits to a remote node and installs ONOS on it.
23
Bob Lantz0b13c1b2016-02-25 05:18:54 -080024 The -u should be used on upstart-based systems.
Ayaka Koshibef17f34a2015-09-24 19:31:48 -070025
26 If [node] is not specified the default target is \$OCI.
27
28_EOF_
29}
30
31[ "$1" = "-h" ] && _usage && exit 0
32
tom5c255702014-09-18 06:57:39 -070033[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
34. $ONOS_ROOT/tools/build/envDefaults
35
Ray Milkeybb7e57b2016-11-09 10:00:13 -080036onos-check-bits
37
Kenji HIKICHI237787c2015-01-06 19:57:44 +090038while getopts fnm: o; do
Thomas Vachuskae9fc5962014-10-21 16:10:12 -070039 case "$o" in
40 f) uninstall=true;;
Bob Lantz0b13c1b2016-02-25 05:18:54 -080041 u) noupstart=true; noinitd=true;;
42 i) noinitd=true;;
Thomas Vachuskae9fc5962014-10-21 16:10:12 -070043 n) nostart=true;;
Kenji HIKICHI237787c2015-01-06 19:57:44 +090044 m) mvn_settings=$OPTARG;;
Thomas Vachuskae9fc5962014-10-21 16:10:12 -070045 esac
46done
47let OPC=$OPTIND-1
48shift $OPC
49
50# If the -f was given, attempt uninstall first.
51[ -n "$uninstall" ] && onos-uninstall ${1:-$OCI}
tom3014aef2014-09-18 08:44:39 -070052
tom0768a022014-09-24 16:16:16 -070053node=${1:-$OCI}
54remote=$ONOS_USER@$node
tom5c255702014-09-18 06:57:39 -070055
Thomas Vachuska52e65802014-12-08 09:26:01 -080056$(dirname $0)/onos-push-bits $node
tom5c255702014-09-18 06:57:39 -070057
Kenji HIKICHI237787c2015-01-06 19:57:44 +090058[ ! -z "$mvn_settings" ] && scp -q $mvn_settings $remote:/tmp/settings.xml
59
Bob Lantz7c751b52016-04-15 15:42:28 -070060ssh -tt $remote "
tom3014aef2014-09-18 08:44:39 -070061 [ -d $ONOS_INSTALL_DIR/bin ] && echo \"ONOS is already installed\" && exit 1
62
tom1f3805d2014-09-18 19:58:47 -070063 # Prepare a landing zone and unroll the bits
Charles M.C. Chandfbc6d82014-12-18 23:11:36 +080064 sudo mkdir -p $ONOS_INSTALL_DIR && sudo chown ${ONOS_USER}:${ONOS_GROUP} $ONOS_INSTALL_DIR
tom5c255702014-09-18 06:57:39 -070065 tar zxmf /tmp/$ONOS_BITS.tar.gz -C $ONOS_INSTALL_DIR --strip-components=1
66
tom0eaa97f2014-09-22 16:13:06 -070067 # Make a link to the log file directory and make a home for auxiliaries
tomecd0fbd2014-09-19 08:47:05 -070068 ln -s $ONOS_INSTALL_DIR/$KARAF_DIST/data/log /opt/onos/log
Jonathan Hartf51950d2016-01-15 09:57:10 -080069 ln -s $ONOS_INSTALL_DIR/$KARAF_DIST /opt/onos/karaf
tom0eaa97f2014-09-22 16:13:06 -070070 mkdir $ONOS_INSTALL_DIR/var
tomdefed6f2014-09-29 11:37:02 -070071 mkdir $ONOS_INSTALL_DIR/config
tom0eaa97f2014-09-22 16:13:06 -070072
Bob Lantz0b13c1b2016-02-25 05:18:54 -080073 # Install the configuration file(s) and set up options for debugging
74 [ -n $noupstart ] && sudo cp $ONOS_INSTALL_DIR/init/onos.conf /etc/init/onos.conf
75 [ -n $noinitd ] && sudo cp $ONOS_INSTALL_DIR/init/onos.initd /etc/init.d/onos
tomb41d1ac2014-09-24 01:51:24 -070076 echo 'export ONOS_OPTS=debug' > $ONOS_INSTALL_DIR/options
tom0eaa97f2014-09-22 16:13:06 -070077
Bob Lantz0b13c1b2016-02-25 05:18:54 -080078 # Set up correct user to run onos-service
79 echo 'export ONOS_USER=$ONOS_USER' >> $ONOS_INSTALL_DIR/options
Charles M.C. Chan0a4fa792014-12-11 18:50:08 +080080
Thomas Vachuska96a303c2015-04-28 16:04:50 -070081 # Remove any previous ON.Lab bits from ~/.m2 repo.
Brian O'Connorabafb502014-12-02 22:26:20 -080082 rm -fr ~/.m2/repository/org/onosproject
tom9ccb2512014-10-07 12:54:53 -070083
Bob Lantz0b13c1b2016-02-25 05:18:54 -080084 [ ! -z $mvn_settings ] && cp /tmp/settings.xml ~/.m2/settings.xml
Kenji HIKICHI237787c2015-01-06 19:57:44 +090085
tom9ccb2512014-10-07 12:54:53 -070086 # Drop log level for the console
Bob Lantz0b13c1b2016-02-25 05:18:54 -080087 echo 'log4j.logger.org.apache.sshd = WARN' \
Thomas Vachuskae9fc5962014-10-21 16:10:12 -070088 >> $ONOS_INSTALL_DIR/$KARAF_DIST/etc/org.ops4j.pax.logging.cfg
tom9ccb2512014-10-07 12:54:53 -070089
Jonathan Hart5de91052016-05-24 09:50:55 -070090 # Set up the ONOS service on systemd-based systems
91 sudo systemctl daemon-reload || true
92
tom5c255702014-09-18 06:57:39 -070093"
tom0768a022014-09-24 16:16:16 -070094
95# Configure the ONOS installation
96onos-config $node
97
Thomas Vachuskae9fc5962014-10-21 16:10:12 -070098# Unless -n option was given, attempt to ignite the ONOS service.
99[ -z "$nostart" ] && onos-service $node start