summaryrefslogtreecommitdiff
path: root/gnu/tests
diff options
context:
space:
mode:
authorMarius Bakke <marius@gnu.org>2020-07-19 09:59:57 +0200
committerMarius Bakke <marius@gnu.org>2020-07-19 14:23:16 +0200
commit41daf1286575f3a1998493c893f6d5a9c5b62de8 (patch)
treec93b58e0866ca0acb532d16b255d36f839893b37 /gnu/tests
parentc91c132fc42c6e67140b393b963d7ced009f093e (diff)
downloadguix-patches-41daf1286575f3a1998493c893f6d5a9c5b62de8.tar
guix-patches-41daf1286575f3a1998493c893f6d5a9c5b62de8.tar.gz
services: ganeti: Use TLS on the remote API by default.
* gnu/services/ganeti.scm (<ganeti-rapi-configuration>): Set SSL? to #t. * gnu/tests/ganeti.scm (%ganeti-os): Set SSL? to #f. * doc/guix.texi (Virtualization Services): Adjust accordingly.
Diffstat (limited to 'gnu/tests')
-rw-r--r--gnu/tests/ganeti.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/tests/ganeti.scm b/gnu/tests/ganeti.scm
index 0615edcde4..ff853a7149 100644
--- a/gnu/tests/ganeti.scm
+++ b/gnu/tests/ganeti.scm
@@ -70,6 +70,11 @@
(service ganeti-service-type
(ganeti-configuration
(file-storage-paths '("/srv/ganeti/file-storage"))
+ (rapi-configuration
+ (ganeti-rapi-configuration
+ ;; Disable TLS so we can test the RAPI without
+ ;; pulling in GnuTLS.
+ (ssl? #f)))
(os %default-ganeti-os))))
%base-services))))