|
|
@ -1,7 +1,7 @@ |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
# |
|
|
|
# |
|
|
|
# 2011 Steven Armstrong (steven-cdist at armstrong.cc) |
|
|
|
# 2011 Steven Armstrong (steven-cdist at armstrong.cc) |
|
|
|
# 2011 Nico Schottelius (nico-cdist at schottelius.org) |
|
|
|
# 2011-2013 Nico Schottelius (nico-cdist at schottelius.org) |
|
|
|
# |
|
|
|
# |
|
|
|
# This file is part of cdist. |
|
|
|
# This file is part of cdist. |
|
|
|
# |
|
|
|
# |
|
|
@ -119,9 +119,6 @@ class Code(object): |
|
|
|
source = os.path.join(self.local.object_path, cdist_object.code_remote_path) |
|
|
|
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) |
|
|
|
destination = os.path.join(self.remote.object_path, cdist_object.code_remote_path) |
|
|
|
# FIXME: BUG: do not create destination, but top level of destination! |
|
|
|
# FIXME: BUG: do not create destination, but top level of destination! |
|
|
|
# FIXME: BUG2: we are called AFTER the code-remote has been transferred already: |
|
|
|
|
|
|
|
# mkdir: cannot create directory `/var/lib/cdist/object/__directory/etc/acpi/actions/.cdist/code-remote': File exists |
|
|
|
|
|
|
|
# OR: this is from previous run -> cleanup missing! |
|
|
|
|
|
|
|
self.remote.mkdir(destination) |
|
|
|
self.remote.mkdir(destination) |
|
|
|
self.remote.transfer(source, destination) |
|
|
|
self.remote.transfer(source, destination) |
|
|
|
|
|
|
|
|
|
|
|