glusterbin needs to be global

This commit is contained in:
Brian Coca 2015-03-31 14:29:38 -04:00 committed by Matt Clay
parent dd9d5cc670
commit bd0c787c37

View file

@ -130,8 +130,10 @@ import shutil
import time
import socket
glusterbin = ''
def run_gluster(gargs, **kwargs):
global glusterbin
args = [glusterbin]
args.extend(gargs)
try:
@ -143,6 +145,7 @@ def run_gluster(gargs, **kwargs):
return out
def run_gluster_nofail(gargs, **kwargs):
global glusterbin
args = [glusterbin]
args.extend(gargs)
rc, out, err = module.run_command(args, **kwargs)
@ -151,6 +154,7 @@ def run_gluster_nofail(gargs, **kwargs):
return out
def run_gluster_yes(gargs):
global glusterbin
args = [glusterbin]
args.extend(gargs)
rc, out, err = module.run_command(args, data='y\n')
@ -312,6 +316,7 @@ def main():
)
)
global glusterbin
glusterbin = module.get_bin_path('gluster', True)
changed = False