Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 694128 Details for
Bug 907931
[RFE] ovirt-shell vnc console does not work with tigervnc client
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch that solves the issue for me
file_907931.txt (text/plain), 1.02 KB, created by
Sander Hoentjen
on 2013-02-06 20:23:06 UTC
(
hide
)
Description:
patch that solves the issue for me
Filename:
MIME Type:
Creator:
Sander Hoentjen
Created:
2013-02-06 20:23:06 UTC
Size:
1.02 KB
patch
obsolete
>--- /usr/lib/python2.7/site-packages/ovirtcli/platform/posix/vnc.py.orig 2013-02-06 21:19:53.794590017 +0100 >+++ /usr/lib/python2.7/site-packages/ovirtcli/platform/posix/vnc.py 2013-02-06 21:19:18.843947849 +0100 >@@ -19,7 +19,7 @@ > from cli.error import Error > from ovirtcli.platform import util > from cli.messages import Messages >- >+from subprocess import * > > def launch_vnc_viewer(host, port, ticket, debug=False): > """Launch a VNC viewer on host::port with `password'.""" >@@ -29,7 +29,9 @@ > cmd = util.which('vncviewer') > if cmd is None: > raise Error, Messages.Error.NO_CONSOLE_FOUND % ('vnc', 'vnc') >- args = ['vncviewer', '%s::%s' % (host, port), '-passwdInput' ] >+ p = Popen(["vncpasswd", "-f"], shell=False, stdin=PIPE, stdout=PIPE) >+ pwd = p.communicate(input=ticket)[0] >+ args = ['/usr/bin/vncviewer', '%s::%s' % (host, port), '-passwordFile', '/dev/stdin' ] > pid, pstdin = util.spawn(cmd, args, debug) >- os.write(pstdin, ticket) >+ os.write(pstdin, pwd) > os.close(pstdin)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 907931
: 694128