aboutsummaryrefslogtreecommitdiff
path: root/rumba/model.py
diff options
context:
space:
mode:
authorMarco Capitani <m.capitani@nextworks.it>2017-07-28 11:57:20 +0200
committerMarco Capitani <m.capitani@nextworks.it>2017-07-28 11:57:20 +0200
commit7dc3b5086d4c1d19c9ef315369f3fd7c4dd2889e (patch)
treeb6cddc451fc182e0bd3384805f4ae705375f043b /rumba/model.py
parent357fd2481ddb2a7b07eab9a98b4ab3b2d8a0b307 (diff)
downloadrumba-7dc3b5086d4c1d19c9ef315369f3fd7c4dd2889e.tar.gz
rumba-7dc3b5086d4c1d19c9ef315369f3fd7c4dd2889e.zip
Model & ssh: ssh-related methods renaming
Diffstat (limited to 'rumba/model.py')
-rw-r--r--rumba/model.py12
1 files changed, 6 insertions, 6 deletions
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,