Michael Pasternak has uploaded a new change for review. Change subject: cli: spicec does not pass cert_file #953582 ......................................................................
cli: spicec does not pass cert_file #953582 Change-Id: I23dd056aaa69abfb39e812f70e8daa406e6ccd5c Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=953582 Signed-off-by: Michael Pasternak <[email protected]> --- M src/ovirtcli/platform/posix/spice.py 1 file changed, 3 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine-cli refs/changes/60/14160/1 diff --git a/src/ovirtcli/platform/posix/spice.py b/src/ovirtcli/platform/posix/spice.py index e25e9f8..ddd3f11 100644 --- a/src/ovirtcli/platform/posix/spice.py +++ b/src/ovirtcli/platform/posix/spice.py @@ -62,6 +62,9 @@ args.extend(['-p', str(port)]) if secport: args.extend([ '-s', str(secport) ]) + args.extend(['--ca-file', certfile]) + if host_subject and host_subject != '': + args.extend(['--host-subject', host_subject]) args.extend(['-w', ticket]) args.extend(['-t', title]) pid, pstdin = util.spawn(cmd, args, debug) -- To view, visit http://gerrit.ovirt.org/14160 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I23dd056aaa69abfb39e812f70e8daa406e6ccd5c Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine-cli Gerrit-Branch: cli_3.2 Gerrit-Owner: Michael Pasternak <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
