Fixed x509 credential name

This commit is contained in:
Daniel P. Berrange 2007-10-15 21:08:18 +00:00
parent 60c6fe3a9a
commit 59f7698a46
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,12 @@
diff -rup virt-manager-0.5.2.orig/src/virtManager/console.py virt-manager-0.5.2.new/src/virtManager/console.py
--- virt-manager-0.5.2.orig/src/virtManager/console.py 2007-10-04 21:43:56.000000000 -0400
+++ virt-manager-0.5.2.new/src/virtManager/console.py 2007-10-15 16:36:55.000000000 -0400
@@ -435,7 +435,7 @@ class vmmConsole(gobject.GObject):
if credList[i] == gtkvnc.CREDENTIAL_PASSWORD:
self.activate_auth_page()
elif credList[i] == gtkvnc.CREDENTIAL_CLIENTNAME:
- self.vncViewer.set_credential(credList[i], "libvirt")
+ self.vncViewer.set_credential(credList[i], "libvirt-vnc")
else:
# Force it to stop re-trying
self.vncViewerRetriesScheduled = 10

View File

@ -8,7 +8,7 @@
Name: virt-manager
Version: 0.5.2
Release: 1%{_extra_release}
Release: 2%{_extra_release}
Summary: Virtual Machine Manager
Group: Applications/Emulators
@ -17,6 +17,7 @@ URL: http://virt-manager.org/
Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
Source1: %{name}.pam
Source2: %{name}.console
Patch1: %{name}-%{version}-vnc-credential-name.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# These two are just the oldest version tested
@ -68,6 +69,7 @@ API.
%prep
%setup -q
%patch1 -p1
%build
%configure
@ -158,6 +160,9 @@ fi
%{_datadir}/dbus-1/services/%{name}.service
%changelog
* Mon Oct 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.2-2.fc8
- Change TLS x509 credential name to sync with libvirt
* Thu Oct 4 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.2-1.fc8
- Update to 0.5.2 release
- No scrollbars for high res guest in low res host (rhbz 273181)