aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/bin/onos-remove-raft-logs
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/tools/test/bin/onos-remove-raft-logs')
-rwxr-xr-xframework/src/onos/tools/test/bin/onos-remove-raft-logs14
1 files changed, 0 insertions, 14 deletions
diff --git a/framework/src/onos/tools/test/bin/onos-remove-raft-logs b/framework/src/onos/tools/test/bin/onos-remove-raft-logs
deleted file mode 100755
index 1f1e5c68..00000000
--- a/framework/src/onos/tools/test/bin/onos-remove-raft-logs
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-# -----------------------------------------------------------------------------
-# Removes Raft logs on all instances
-# -----------------------------------------------------------------------------
-
-[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
-. $ONOS_ROOT/tools/build/envDefaults
-
-nodes=$(env | sort | egrep "OC[0-9]+" | cut -d= -f2)
-
-onos-service --cell stop
-
-# TODO: use $KARAF_DATA
-for node in $nodes; do onos-ssh $node "rm -v -- $ONOS_INSTALL_DIR/$KARAF_DIST/data/raft/onos-copy-cat-log_*"; done