]> git.proxmox.com Git - pve-qemu.git/blame - debian/patches/pve/0010-ui-spice-default-to-pve-certs-unless-otherwise-speci.patch
add qemu-img dd stdin/stdout pipe patch
[pve-qemu.git] / debian / patches / pve / 0010-ui-spice-default-to-pve-certs-unless-otherwise-speci.patch
CommitLineData
f185a969 1From 33d16abdcb9d708b9f63c2a5380e4849b9c34fce Mon Sep 17 00:00:00 2001
95259824
WB
2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3Date: Wed, 9 Dec 2015 14:33:34 +0100
45169293 4Subject: [PATCH 10/49] ui/spice: default to pve certs unless otherwise
95259824
WB
5 specified
6
7---
8 ui/spice-core.c | 15 +++++++++------
9 1 file changed, 9 insertions(+), 6 deletions(-)
10
11diff --git a/ui/spice-core.c b/ui/spice-core.c
45169293 12index 4a417310d3..af1dc8c653 100644
95259824
WB
13--- a/ui/spice-core.c
14+++ b/ui/spice-core.c
a544966d 15@@ -685,32 +685,35 @@ void qemu_spice_init(void)
95259824
WB
16
17 if (tls_port) {
18 x509_dir = qemu_opt_get(opts, "x509-dir");
19- if (!x509_dir) {
20- x509_dir = ".";
21- }
22
23 str = qemu_opt_get(opts, "x509-key-file");
24 if (str) {
25 x509_key_file = g_strdup(str);
26- } else {
27+ } else if (x509_dir) {
28 x509_key_file = g_strdup_printf("%s/%s", x509_dir,
29 X509_SERVER_KEY_FILE);
30+ } else {
31+ x509_key_file = g_strdup("/etc/pve/local/pve-ssl.key");
32 }
33
34 str = qemu_opt_get(opts, "x509-cert-file");
35 if (str) {
36 x509_cert_file = g_strdup(str);
37- } else {
38+ } else if (x509_dir) {
39 x509_cert_file = g_strdup_printf("%s/%s", x509_dir,
40 X509_SERVER_CERT_FILE);
41+ } else {
42+ x509_cert_file = g_strdup("/etc/pve/local/pve-ssl.pem");
43 }
44
45 str = qemu_opt_get(opts, "x509-cacert-file");
46 if (str) {
47 x509_cacert_file = g_strdup(str);
48- } else {
49+ } else if (x509_dir) {
50 x509_cacert_file = g_strdup_printf("%s/%s", x509_dir,
51 X509_CA_CERT_FILE);
52+ } else {
53+ x509_cacert_file = g_strdup("/etc/pve/pve-root-ca.pem");
54 }
55
56 x509_key_password = qemu_opt_get(opts, "x509-key-password");
57--
45169293 582.11.0
95259824 59