From 7dc3b5086d4c1d19c9ef315369f3fd7c4dd2889e Mon Sep 17 00:00:00 2001 From: Marco Capitani Date: Fri, 28 Jul 2017 11:57:20 +0200 Subject: Model & ssh: ssh-related methods renaming --- rumba/model.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'rumba/model.py') diff --git a/rumba/model.py b/rumba/model.py index ca35647..1adc3b0 100644 --- a/rumba/model.py +++ b/rumba/model.py @@ -343,24 +343,24 @@ class Node: time_out ) - def copy_file_to_testbed(self, text, file_name): - ssh_support.copy_file_to_testbed( + def write_text_to_file(self, text, file_name): + ssh_support.write_text_to_file( self.ssh_config, self.ssh_config, text, file_name ) - def copy_path_to_testbed(self, path, destination): - ssh_support.copy_path_to_testbed( + def copy_file(self, path, destination): + ssh_support.copy_file_to_testbed( self.ssh_config, self.ssh_config, path, destination ) - def copy_paths_to_testbed(self, paths, destination): - ssh_support.copy_paths_to_testbed( + def copy_files(self, paths, destination): + ssh_support.copy_files_to_testbed( self.ssh_config, self.ssh_config, paths, -- cgit v1.2.3