implement transfer_code_remote

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2011-10-13 14:57:49 +02:00
parent 5055afe0c0
commit 31ce938593
1 changed files with 7 additions and 0 deletions

View File

@ -115,3 +115,10 @@ class Code(object):
def run_gencode_remote(self, cdist_object):
"""Run the gencode-remote script for the given cdist object."""
return self._run_gencode(cdist_object, 'remote')
def transfer_code_remote(self, cdist_object):
"""Transfer the code_remote script for the given object to the remote side."""
source = os.path.join(self.local.object_path, cdist_object.code_remote_path)
destination = os.path.join(self.remote.object_path, cdist_object.code_remote_path)
self.remote.mkdir(destination)
self.remote.transfer(source, destination)