From 0b63919cdd3b8f74b11a66016098e2d213de908c Mon Sep 17 00:00:00 2001
From: Nico Schottelius <nico@kr.ethz.ch>
Date: Fri, 7 Oct 2011 09:46:48 +0200
Subject: [PATCH] path -> copy

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
---
 lib/cdist/copy.py | 13 +++++++++++++
 lib/cdist/path.py | 13 -------------
 2 files changed, 13 insertions(+), 13 deletions(-)
 create mode 100644 lib/cdist/copy.py

diff --git a/lib/cdist/copy.py b/lib/cdist/copy.py
new file mode 100644
index 00000000..b0eae54e
--- /dev/null
+++ b/lib/cdist/copy.py
@@ -0,0 +1,13 @@
+    # FIXME: To Copy
+    def transfer_dir(self, source, destination):
+        """Transfer directory and previously delete the remote destination"""
+        self.remove_remote_dir(destination)
+        cdist.exec.run_or_fail(os.environ['__remote_copy'].split() +
+            ["-r", source, self.target_host + ":" + destination])
+
+    # FIXME: To Copy
+    def transfer_file(self, source, destination):
+        """Transfer file"""
+        cdist.exec.run_or_fail(os.environ['__remote_copy'].split() +
+            [source, self.target_host + ":" + destination])
+
diff --git a/lib/cdist/path.py b/lib/cdist/path.py
index 448fc918..2f6670e8 100644
--- a/lib/cdist/path.py
+++ b/lib/cdist/path.py
@@ -113,19 +113,6 @@ class Path:
     def remove_remote_dir(self, destination):
         cdist.exec.run_or_fail(["rm", "-rf",  destination], remote_prefix=True)
 
-    # FIXME: To Copy
-    def transfer_dir(self, source, destination):
-        """Transfer directory and previously delete the remote destination"""
-        self.remove_remote_dir(destination)
-        cdist.exec.run_or_fail(os.environ['__remote_copy'].split() +
-            ["-r", source, self.target_host + ":" + destination])
-
-    # FIXME: To Copy
-    def transfer_file(self, source, destination):
-        """Transfer file"""
-        cdist.exec.run_or_fail(os.environ['__remote_copy'].split() +
-            [source, self.target_host + ":" + destination])
-
     # FIXME Move into configinstall
     def transfer_object_parameter(self, cdist_object):
         """Transfer the object parameter to the remote destination"""