about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2023-12-20 19:38:24 +0000
committerArun Isaac2023-12-30 07:17:35 +0000
commit59cad567d6eafc205f716c8f21ff550f4638a086 (patch)
treeb74de0ebba1cbc3ea37d75942c55b8e86727bdab
parent93ff9ed6fd9f2ca15cf6a8930eae26c9f5c65450 (diff)
downloadgn-machines-59cad567d6eafc205f716c8f21ff550f4638a086.tar.gz
Do not auto-upgrade mysql databases in production.
* production.scm (operating-system)[services]{mysql-service-type}: Set
auto-upgrade? to #f.
-rw-r--r--production.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/production.scm b/production.scm
index a8ceecf..5d6554c 100644
--- a/production.scm
+++ b/production.scm
@@ -1,5 +1,5 @@
 ;;; genenetwork-machines --- Guix configuration for genenetwork machines
-;;; Copyright © 2022 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2022, 2023 Arun Isaac <arunisaac@systemreboot.net>
 ;;;
 ;;; This file is part of genenetwork-machines.
 ;;;
@@ -31,7 +31,9 @@
   (file-systems %base-file-systems)
   (users %base-user-accounts)
   (packages %base-packages)
-  (services (cons* (service mysql-service-type)
+  (services (cons* (service mysql-service-type
+                            (mysql-configuration
+                             (auto-upgrade? #f)))
                    (service virtuoso-service-type
                             (virtuoso-configuration
                              (server-port 8891)