summaryrefslogtreecommitdiffstats
path: root/ATFSetup.py
blob: 502154d5df4c5bd121dd405b481877ea647566a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python

import ATFUtils

def setup():
    """
    Description:
        *   Setup SSH Connections to all Servers
        *   Setup SSH Connection to all Clients
        *   Cleanup Glusterd on all Servers
        *   Cleanup Glusterd on all Clients
        *   Stop Glusterd on all Servers
        *   Stop Glusterd on all Clients
        *   Start Glusterd on all Servers
        *   Start Glusterd on all Clients 
        *   Peer Probe from a Server to Other Servers

    Returns:
        Success: 0 ( If all the Setup Phases are Successful)
        Failure: 1 ( If any of the Setup Phase is unsuccessful)
    """

    if ATFUtils.sshservers():
        return 1

    if ATFUtils.sshclients():
        return 1

    if ATFUtils.cleanupserversglusterd():
        return 1

    if ATFUtils.cleanupclientsglusterd():
        return 1
    
    if ATFUtils.stopserversglusterd():
        return 1

    if ATFUtils.stopclientsglusterd():
        return 1
    
    if ATFUtils.startserversglusterd():
        return 1

    if ATFUtils.startclientsglusterd():
        return 1

    if ATFUtils.peerprobe():
         return 1
         
    return 0