Updated to 0.4.3 release
This commit is contained in:
parent
39be855f65
commit
b6a7e3bbb5
2
sources
2
sources
@ -1 +1 @@
|
|||||||
1cc86ed3fbbe37a56faa6476b2e6dbcd virt-viewer-0.4.1.tar.gz
|
4fc003cb655aa45b77c9f2ee45ba6d4f virt-viewer-0.4.2.tar.gz
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
commit 754011f2bc5696466de5f45c3781c7a0cd961b9a
|
|
||||||
Author: Daniel P. Berrange <berrange@redhat.com>
|
|
||||||
Date: Fri Aug 12 15:37:51 2011 +0100
|
|
||||||
|
|
||||||
Fix inverted sshport test that broke SSH tunnelling
|
|
||||||
|
|
||||||
diff --git a/src/virt-viewer-app.c b/src/virt-viewer-app.c
|
|
||||||
index cf7811e..71284b6 100644
|
|
||||||
--- a/src/virt-viewer-app.c
|
|
||||||
+++ b/src/virt-viewer-app.c
|
|
||||||
@@ -319,7 +319,7 @@ virt_viewer_app_open_tunnel_ssh(const char *sshhost,
|
|
||||||
int n = 0;
|
|
||||||
|
|
||||||
cmd[n++] = "ssh";
|
|
||||||
- if (!sshport) {
|
|
||||||
+ if (sshport) {
|
|
||||||
cmd[n++] = "-p";
|
|
||||||
sprintf(portstr, "%d", sshport);
|
|
||||||
cmd[n++] = portstr;
|
|
@ -1,21 +0,0 @@
|
|||||||
commit 1c00bc2b9541a553c0f6502dadc61eb56edfa355
|
|
||||||
Author: Guido Günther <agx@sigxcpu.org>
|
|
||||||
Date: Fri Aug 12 19:50:22 2011 +0200
|
|
||||||
|
|
||||||
Don't hardcode ssh port to 0
|
|
||||||
|
|
||||||
Many thanks to Luca Capello <luca@pca.it> for debugging this.
|
|
||||||
|
|
||||||
diff --git a/src/virt-viewer-app.c b/src/virt-viewer-app.c
|
|
||||||
index 71284b6..2ad5710 100644
|
|
||||||
--- a/src/virt-viewer-app.c
|
|
||||||
+++ b/src/virt-viewer-app.c
|
|
||||||
@@ -1311,7 +1311,7 @@ virt_viewer_app_set_connect_info(VirtViewerApp *self,
|
|
||||||
priv->transport = g_strdup(transport);
|
|
||||||
priv->unixsock = g_strdup(unixsock);
|
|
||||||
priv->user = g_strdup(user);
|
|
||||||
- priv->port = 0;
|
|
||||||
+ priv->port = port;
|
|
||||||
|
|
||||||
virt_viewer_app_update_pretty_address(self);
|
|
||||||
}
|
|
@ -1,37 +0,0 @@
|
|||||||
commit 60145f31a6fb2c7331101ba4ee7d25d08dd7eb48
|
|
||||||
Author: Guido Günther <agx@sigxcpu.org>
|
|
||||||
Date: Fri Aug 12 19:50:29 2011 +0200
|
|
||||||
|
|
||||||
Don't print incorrect port numbers
|
|
||||||
|
|
||||||
The port isn't 22 when we connect to an alternate port given in
|
|
||||||
.ssh/config.
|
|
||||||
|
|
||||||
diff --git a/src/virt-viewer-app.c b/src/virt-viewer-app.c
|
|
||||||
index 2ad5710..c80d52f 100644
|
|
||||||
--- a/src/virt-viewer-app.c
|
|
||||||
+++ b/src/virt-viewer-app.c
|
|
||||||
@@ -635,6 +635,8 @@ virt_viewer_app_activate(VirtViewerApp *self)
|
|
||||||
if (priv->transport &&
|
|
||||||
g_strcasecmp(priv->transport, "ssh") == 0 &&
|
|
||||||
!priv->direct) {
|
|
||||||
+ gchar *p = NULL;
|
|
||||||
+
|
|
||||||
if (priv->gport) {
|
|
||||||
virt_viewer_app_trace(self, "Opening indirect TCP connection to display at %s:%s\n",
|
|
||||||
priv->ghost, priv->gport);
|
|
||||||
@@ -642,8 +644,12 @@ virt_viewer_app_activate(VirtViewerApp *self)
|
|
||||||
virt_viewer_app_trace(self, "Opening indirect UNIX connection to display at %s\n",
|
|
||||||
priv->unixsock);
|
|
||||||
}
|
|
||||||
- virt_viewer_app_trace(self, "Setting up SSH tunnel via %s@%s:%d\n",
|
|
||||||
- priv->user, priv->host, priv->port ? priv->port : 22);
|
|
||||||
+ if (priv->port)
|
|
||||||
+ p = g_strdup_printf(":%d", priv->port);
|
|
||||||
+
|
|
||||||
+ virt_viewer_app_trace(self, "Setting up SSH tunnel via %s@%s%s\n",
|
|
||||||
+ priv->user, priv->host, p ? p : "");
|
|
||||||
+ g_free(p);
|
|
||||||
|
|
||||||
if ((fd = virt_viewer_app_open_tunnel_ssh(priv->host, priv->port,
|
|
||||||
priv->user, priv->ghost,
|
|
@ -20,16 +20,13 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: virt-viewer
|
Name: virt-viewer
|
||||||
Version: 0.4.1
|
Version: 0.4.2
|
||||||
Release: 3%{?dist}%{?extra_release}
|
Release: 1%{?dist}%{?extra_release}
|
||||||
Summary: Virtual Machine Viewer
|
Summary: Virtual Machine Viewer
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: http://virt-manager.org/
|
URL: http://virt-manager.org/
|
||||||
Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
|
Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
|
||||||
Patch1: %{name}-%{version}-sshport1.patch
|
|
||||||
Patch2: %{name}-%{version}-sshport2.patch
|
|
||||||
Patch3: %{name}-%{version}-sshport3.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
Requires: openssh-clients
|
Requires: openssh-clients
|
||||||
|
|
||||||
@ -43,7 +40,7 @@ BuildRequires: libxml2-devel
|
|||||||
%if %{with_gtk3}
|
%if %{with_gtk3}
|
||||||
BuildRequires: gtk-vnc2-devel >= 0.4.3
|
BuildRequires: gtk-vnc2-devel >= 0.4.3
|
||||||
%else
|
%else
|
||||||
BuildRequires: gtk-vnc-devel >= 0.3.8
|
BuildRequires: gtk-vnc-devel >= 0.4.3
|
||||||
%endif
|
%endif
|
||||||
%if %{with_spice}
|
%if %{with_spice}
|
||||||
%if %{with_gtk3}
|
%if %{with_gtk3}
|
||||||
@ -84,9 +81,6 @@ browsers.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1 -p1
|
|
||||||
%patch2 -p1
|
|
||||||
%patch3 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
@ -97,9 +91,9 @@ browsers.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{with_spice}
|
%if %{with_spice}
|
||||||
%define spice_arg --enable-spice
|
%define spice_arg --with-spice-gtk
|
||||||
%else
|
%else
|
||||||
%define spice_arg --disable-spice
|
%define spice_arg --without-spice-gtk
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{with_gtk3}
|
%if %{with_gtk3}
|
||||||
@ -142,6 +136,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Nov 9 2011 Daniel P. Berrange <berrange@redhat.com> - 0.4.2-1
|
||||||
|
- Update to 0.4.2 release
|
||||||
|
|
||||||
* Sun Aug 14 2011 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-3
|
* Sun Aug 14 2011 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-3
|
||||||
- More ssh tunnelling port fixes
|
- More ssh tunnelling port fixes
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user