Index: trunk/absroot/source/abspy/scripts/changeBeam.py =================================================================== diff --git a/trunk/absroot/source/abspy/scripts/changeBeam.py b/trunk/absroot/source/abspy/scripts/changeBeam.py --- a/trunk/absroot/source/abspy/scripts/changeBeam.py (revision 222) +++ b/trunk/absroot/source/abspy/scripts/changeBeam.py (revision 223) @@ -11,7 +11,8 @@ self.output = "" def execute(self, beam="0"): - absObj = ABSClient(ipDestino="10.10.10.97") + #absObj = ABSClient(ipDestino="10.10.10.97") + absObj = ABSClient(ipDestino="10.10.20.26") self.output = absObj.changeBeam(beam) def getOutput(self): @@ -31,4 +32,4 @@ beam = options.pattern app = changeBeam() - app.execute(beam) \ No newline at end of file + app.execute(beam) Index: trunk/absroot/source/abspy/scripts/getControlModuleStatus.py =================================================================== diff --git a/trunk/absroot/source/abspy/scripts/getControlModuleStatus.py b/trunk/absroot/source/abspy/scripts/getControlModuleStatus.py --- a/trunk/absroot/source/abspy/scripts/getControlModuleStatus.py (revision 222) +++ b/trunk/absroot/source/abspy/scripts/getControlModuleStatus.py (revision 223) @@ -2,11 +2,12 @@ from client3 import * import sys -absObj = ABSClient(ipDestino="10.10.10.97") +#absObj = ABSClient(ipDestino="10.10.10.97") +absObj = ABSClient(ipDestino="10.10.20.26") #absObj = ABSClient() if len(sys.argv) == 2: # ns = "4" ns = sys.argv[1] absObj.getControlModuleStatus(ns) else: - print "Only one argument needed." \ No newline at end of file + print "Only one argument needed." Index: trunk/absroot/source/abspy/scripts/sendFile.py =================================================================== diff --git a/trunk/absroot/source/abspy/scripts/sendFile.py b/trunk/absroot/source/abspy/scripts/sendFile.py --- a/trunk/absroot/source/abspy/scripts/sendFile.py (revision 222) +++ b/trunk/absroot/source/abspy/scripts/sendFile.py (revision 223) @@ -13,7 +13,8 @@ def execute(self, filename): if os.path.exists(filename): - absObj = ABSClient(ipDestino="10.10.10.97") + #absObj = ABSClient(ipDestino="10.10.10.97") + absObj = ABSClient(ipDestino="10.10.20.26") self.output = absObj.sendFile(filename) #pass else: @@ -35,4 +36,4 @@ filename = options.filename app = sendFile() - app.execute(filename) \ No newline at end of file + app.execute(filename)