aboutsummaryrefslogtreecommitdiff
path: root/rumba/model.py
diff options
context:
space:
mode:
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,