addded scopy from remote

This commit is contained in:
İsmail Başaran 2017-08-16 00:09:28 +03:00
parent 998cf89f52
commit 502f5495e6
1 changed files with 10 additions and 0 deletions

View File

@ -154,6 +154,16 @@ class Util:
except Exception as e:
return 1, 'Could not execute command: {0}. Error Message: {1}'.format(command, str(e)), ''
@staticmethod
def scopy_from_remote(source_path, destination_path, ip):
command = 'scp -r root@' + ip + ':' + source_path + ' ' + destination_path
process = subprocess.Popen(command, stderr=subprocess.PIPE,stdout=subprocess.PIPE, shell=True)
result_code = process.wait()
p_out = process.stdout.read().decode("unicode_escape")
p_err = process.stderr.read().decode("unicode_escape")
return result_code, p_out, p_err
@staticmethod
def execute_script(script_path, parameters=None):
command = []