diff options
author | Christopher Baines <mail@cbaines.net> | 2020-10-02 19:15:44 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-10-20 22:39:43 +0100 |
commit | bdcf4d88d58798eca7811c8b1fbd4638168d05c3 (patch) | |
tree | 97ba20551cd0737ed31d0f940b34508b2364850d /gnu/tests/databases.scm | |
parent | 21b712acc73f6a0a8f9d44ae32438539b78b3db6 (diff) | |
download | guix-bdcf4d88d58798eca7811c8b1fbd4638168d05c3.tar guix-bdcf4d88d58798eca7811c8b1fbd4638168d05c3.tar.gz |
services: databases: Don't specify a default postgresql version.
Currently, if the postgresql package major version changes, this is going to
break the service upon upgrade, because PostgreSQL will reject the data files
from the differing major version of the service.
Because it's important to either keep running a particular major version, or
intentionally upgrade, I think the configuration would be better with no
default. I think this is also going to be helpful when trying to assist users
upgrading PostgreSQL.
* gnu/services/databases.scm (<postgresql-configuration>): Remove default for
postgresql.
(postgresql-service-type): Remove the default value.
* gnu/tests/databases.scm (%postgresql-os): Update accordingly.
* gnu/tests/guix.scm (%guix-data-service-os): Update accordingly.
* gnu/tests/monitoring.scm (%zabbix-os): Update accordingly.
* gnu/tests/web.scm (patchwork-os): Update accordingly.
* doc/guix.texi (PostgreSQL): Update accordingly.
Diffstat (limited to 'gnu/tests/databases.scm')
-rw-r--r-- | gnu/tests/databases.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/tests/databases.scm b/gnu/tests/databases.scm index e0544bbcd2..d3045cc3f7 100644 --- a/gnu/tests/databases.scm +++ b/gnu/tests/databases.scm @@ -215,7 +215,9 @@ (define %postgresql-os (simple-operating-system - (service postgresql-service-type))) + (service postgresql-service-type + (postgresql-configuration + (postgresql postgresql-10))))) (define (run-postgresql-test) "Run tests in %POSTGRESQL-OS." |