From 38e25070ab5e5b74917797f9049dd226afeb9728 Mon Sep 17 00:00:00 2001 From: Marco Capitani Date: Thu, 16 Nov 2017 16:59:04 +0100 Subject: storyboard: add logging and log retrieval --- rumba/model.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'rumba/model.py') diff --git a/rumba/model.py b/rumba/model.py index 7a68459..7573df2 100644 --- a/rumba/model.py +++ b/rumba/model.py @@ -370,12 +370,20 @@ class Node: destination ) - def setup_vlan(self, vlan_id, int_name): - ssh_support.setup_vlan( + def fetch_files(self, paths, destination): + ssh_support.copy_files_from_testbed( self.ssh_config, self.ssh_config, - vlan_id, - int_name + paths, + destination + ) + + def fetch_file(self, path, destination): + ssh_support.copy_file_from_testbed( + self.ssh_config, + self.ssh_config, + path, + destination ) -- cgit v1.2.3