diff options
-rwxr-xr-x | test_prepare_disks.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test_prepare_disks.py b/test_prepare_disks.py index 11a01a0..5e865cf 100755 --- a/test_prepare_disks.py +++ b/test_prepare_disks.py @@ -35,6 +35,8 @@ class SSHGuestFs: self.conn.exec_command('chown {}.{} "{}"'.format(str(owner), str(group), path)) def command(self, arguments): self.conn.exec_command(arguments) + def copy_in(self, src, dest): + self.cp_r(src, dest) def cp(self, src, dest): self.conn.exec_command('cp "{}" "{}"'.format(src, dest)) def cp_a(self, src, dest): |