summaryrefslogtreecommitdiffstats
path: root/Libraries/GlusterCommands/ATFGlusterd.py
blob: fe2a838c6dbb8d50ce6544932df42a1dba8caa35 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#!/usr/bin/env python
import ATFUtils

def start_glusterd(**arguments):
    """
    Objective :
        Start Glusterd process on the server 

    Parameter :
        arguments: key = value pair.
                            server = 'server(1..n)'
                            host = 'host(1..n)'
    Return:
        Success : 0
        Failure : 1
    """

    command = "/etc/init.d/glusterd start"    
    arguments['user'] = 'root' 
    status, stdin, stdout, stderr = ATFUtils.execute_command(command,
                                                            **arguments)

    if (status == 1):
        return 1
    else:
        return ATFUtils.parse_output(stdout, stderr)

def stop_glusterd(**arguments):
    """
    Description:
        Stop Glusterd process on the server 

    Parameter:
        arguments: key = value pair.
                            server = 'server(1..n)'
                            host = 'host(1..n)'

    Return:
        Success : 0
        Failure : 1
    """
    
    command = "/etc/init.d/glusterd stop"
    arguments['user'] = 'root' 
    status, stdin, stdout, stderr = ATFUtils.execute_command(command,
                                                            **arguments)

    if (status == 1):
        return 1
    else:
        return ATFUtils.parse_output(stdout, stderr)

def restart_glusterd(**arguments):
    """
    Description:
        Restart Glusterd process on the server 

    Parameter:
        arguments: key = value pair.
                            server = 'server(1..n)'
                            host = 'host(1..n)'

    Return:
        Success : 0
        Failure : 1
    """

    command = "/etc/init.d/glusterd restart"
    arguments['user'] = 'root'
    status, stdin, stdout, stderr = ATFUtils.execute_command(command,
                                                            **arguments)

    if (status == 1):
        return 1
    else:
        return ATFUtils.parse_output(stdout, stderr)

def cleanup_glusterd(**arguments):
    """
    Description:
        Cleans up the glusterd directory on Servers

    Parameter: 
        arguments: key = value pair.
                            server = 'server(1..n)'
                            host = 'host(1..n)'

    Return:
        Success : 0
        Failure : 1
    """

    command = "rm -rf /etc/glusterd/*"
    arguments['user'] = 'root' 
    status, stdin, stdout, stderr = ATFUtils.execute_command(command,
                                                            **arguments)

    if (status == 1):
        return 1
    else:
        return ATFUtils.parse_output(stdout, stderr)