diff options
Diffstat (limited to 'debian/patches/0003-fix-libvirt-path-resolution.patch')
-rw-r--r-- | debian/patches/0003-fix-libvirt-path-resolution.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/debian/patches/0003-fix-libvirt-path-resolution.patch b/debian/patches/0003-fix-libvirt-path-resolution.patch index 3153b6fd3..1dec5a535 100644 --- a/debian/patches/0003-fix-libvirt-path-resolution.patch +++ b/debian/patches/0003-fix-libvirt-path-resolution.patch @@ -24,7 +24,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ import shlex import time import traceback -@@ -99,6 +100,7 @@ +@@ -98,6 +99,7 @@ super(Connection, self).__init__(play_context, new_stdin, *args, **kwargs) self._host = self._play_context.remote_addr @@ -32,7 +32,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ # Windows operates differently from a POSIX connection/shell plugin, # we need to set various properties to ensure SSH on Windows continues -@@ -147,6 +149,21 @@ +@@ -146,6 +148,21 @@ display.vvv(u"ESTABLISH {0} CONNECTION".format(self.transport), host=self._host) self._connected = True @@ -54,7 +54,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ def exec_command(self, cmd, in_data=None, sudoable=True): """ execute a command on the virtual machine host """ super(Connection, self).exec_command(cmd, in_data=in_data, sudoable=sudoable) -@@ -154,6 +171,7 @@ +@@ -153,6 +170,7 @@ self._display.vvv(u"EXEC {0}".format(cmd), host=self._host) cmd_args_list = shlex.split(to_native(cmd, errors='surrogate_or_strict')) @@ -62,7 +62,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ if getattr(self._shell, "_IS_WINDOWS", False): # Become method 'runas' is done in the wrapper that is executed, -@@ -242,6 +260,7 @@ +@@ -245,6 +263,7 @@ def put_file(self, in_path, out_path): ''' transfer a file from local to domain ''' super(Connection, self).put_file(in_path, out_path) @@ -70,7 +70,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ display.vvv("PUT %s TO %s" % (in_path, out_path), host=self._host) if not exists(to_bytes(in_path, errors='surrogate_or_strict')): -@@ -304,6 +323,7 @@ +@@ -307,6 +326,7 @@ def fetch_file(self, in_path, out_path): ''' fetch a file from domain to local ''' super(Connection, self).fetch_file(in_path, out_path) |