blob: 6e996345bc91e6a5dc55da5cc533f6e43d05eadb (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# -----------------------------------------------------------------------------
# Wipes out all data from the ONOS cluster. Temporary until wipe-out is fixed.
# -----------------------------------------------------------------------------
for node in ${ONOS_INSTANCES:-$OCI}; do
onos $node wipe-out please
done
onos-check-summary $OCI '.*' 0 0 0 0 0
|