summaryrefslogtreecommitdiffstats
path: root/ATFCleanup.py
diff options
context:
space:
mode:
authorShwetha-H-Panduranga <shwetha@gluster.com>2011-12-06 14:25:20 +0530
committerShwetha-H-Panduranga <shwetha@gluster.com>2011-12-06 14:25:20 +0530
commit129e39fe6878f28ca203c690fab382b7289b334c (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /ATFCleanup.py
parent18445ae1a94366c955cc7626fb8ec749dedcf73e (diff)
Removing all automation files from the repo
Diffstat (limited to 'ATFCleanup.py')
-rwxr-xr-xATFCleanup.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/ATFCleanup.py b/ATFCleanup.py
deleted file mode 100755
index c15f970..0000000
--- a/ATFCleanup.py
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env python
-
-import ATFUtils
-
-def cleanup():
- """
- Description:
- * Stop Glusterd on all Servers
- * Stop Glusterd on all Clients
- * Disconnect all SSH Connections
- * Remove all Logger File Handlers
-
- Parameters:
- None
-
- Returns: 0
- """
-
- ATFUtils.stopserversglusterd()
- ATFUtils.stopclientsglusterd()
- ATFUtils.SshObj.closeall()
- ATFUtils.LogObj.remove_detaillog_handler('ATF_LOG')
-
- return 0
-