blob: bfc3b48e58f319785f22afc4b6e5fe3872494a28 [file] [log] [blame]
tom5c255702014-09-18 06:57:39 -07001#!/bin/bash
2#-------------------------------------------------------------------------------
3# Remotely stops & uninstalls ONOS.
4#-------------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9remote=$ONOS_USER@${1:-$OCI}
10
11ssh $remote "
tom0eaa97f2014-09-22 16:13:06 -070012 sudo service onos stop 1>/dev/null 2>/dev/null
tom3014aef2014-09-18 08:44:39 -070013 [ -f $ONOS_INSTALL_DIR/bin/onos ] && \
14 $ONOS_INSTALL_DIR/bin/onos halt 2>/dev/null
tom5c255702014-09-18 06:57:39 -070015 sudo rm -fr $ONOS_INSTALL_DIR
16"