]> git.proxmox.com Git - pve-qemu-kvm.git/blame - debian/patches/pve/0010-ui-spice-default-to-pve-certs-unless-otherwise-speci.patch
bump version to 2.9.0-1~rc2+5
[pve-qemu-kvm.git] / debian / patches / pve / 0010-ui-spice-default-to-pve-certs-unless-otherwise-speci.patch
CommitLineData
1a91ab45 1From 1434b9fad738e852f789cd8b951f2f4e1e08d3e5 Mon Sep 17 00:00:00 2001
ca0fe5f5
WB
2From: Wolfgang Bumiller <w.bumiller@proxmox.com>
3Date: Wed, 9 Dec 2015 14:33:34 +0100
adeb0c7a 4Subject: [PATCH 10/48] ui/spice: default to pve certs unless otherwise
ca0fe5f5
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
1a91ab45 12index 4a41731..af1dc8c 100644
ca0fe5f5
WB
13--- a/ui/spice-core.c
14+++ b/ui/spice-core.c
1a91ab45 15@@ -685,32 +685,35 @@ void qemu_spice_init(void)
ca0fe5f5
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--
582.1.4
59