Thomas Vachuska
Committed by Gerrit Code Review

Marking some old developer tools as deprecated; wil be removed after Falcon release.

Adding a teardown STC scenario.

Change-Id: Ifb0d5ce0546f072f46485266e5247cb49a39db1c
......@@ -3,6 +3,9 @@
# Launches the ONOS tests on the current cell environment.
# -----------------------------------------------------------------------------
echo "This command has been deprecated and will be removed after Falcon release"
echo "Please use the 'stc setup' command instead"
set -e
[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
......
......@@ -3,6 +3,9 @@
# Allows a select group of commands to be sent to all ONOS instances in a cell.
# -----------------------------------------------------------------------------
echo "This command has been deprecated and will be removed after Falcon release"
echo "Please use the 'stc setup|shutdown|teardown' command instead"
set -o pipefail
IFS=$'\n'
......
<!--
~ Copyright 2014-2016 Open Networking Laboratory
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<scenario name="teardown" description="ONOS cluster teardown/uninstall">
<group name="Teardown">
<parallel var="${OC#}">
<step name="Uninstall-${#}" exec="onos-uninstall ${OC#}"/>
</parallel>
</group>
</scenario>