Thomas Vachuska | e76f653 | 2015-07-08 09:40:53 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # ----------------------------------------------------------------------------- |
| 3 | # Wipes out all data from the ONOS cluster. Temporary until wipe-out is fixed. |
| 4 | # ----------------------------------------------------------------------------- |
| 5 | |
Thomas Vachuska | 174bb91 | 2015-07-16 21:27:14 -0700 | [diff] [blame] | 6 | for node in ${ONOS_INSTANCES:-$OCI}; do |
| 7 | onos $node wipe-out please |
Thomas Vachuska | e76f653 | 2015-07-08 09:40:53 -0700 | [diff] [blame] | 8 | done |
Thomas Vachuska | 174bb91 | 2015-07-16 21:27:14 -0700 | [diff] [blame] | 9 | onos-check-summary $OCI '.*' 0 0 0 0 0 |