Step 2: Move test folder to root
[integration/test.git] / test / tools / clustering / cluster-monitor / rejoin.py
diff --git a/test/tools/clustering/cluster-monitor/rejoin.py b/test/tools/clustering/cluster-monitor/rejoin.py
deleted file mode 100644 (file)
index 92507a0..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/usr/bin/python
-"""
-Cluster Rejoin Tool
-Author: Phillip Shea
-Updated: 2015-May-07
-
-This tool rejoins any isolated controllers to the cluster.
-
-A file named 'cluster.json' containing a list of the IP addresses and
-credentials of the controllers is required. It resides in the same
-directory as monitor.py.
-
-The file should look like this:
-
-    {
-        "cluster": {
-            "controllers": [
-                "172.17.10.93",
-                "172.17.10.94",
-                "172.17.10.95"
-            ],
-            "user": "username",
-            "pass": "password"
-        }
-    }
-
-Usage:python rejoin.py
- """
-
-import sys
-sys.path.append('../../../csit/libraries')
-import UtilLibrary
-import json
-
-try:
-    with open('cluster.json') as cluster_file:
-        data = json.load(cluster_file)
-except:
-    print str(sys.exc_info())
-    print "unable to open the file cluster.json"
-    exit(1)
-try:
-    cluster_list = data["cluster"]["controllers"]
-    user_name = data["cluster"]["user"]
-    user_pass = data["cluster"]["pass"]
-except:
-    print str(sys.exc_info())
-    print 'Error reading the file cluster.json'
-    exit(1)
-
-print UtilLibrary.flush_iptables(cluster_list, user_name, user_pass)