aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/examples
ModeNameSize
-rw-r--r--asus-c201.tmpl2266logplainabout
-rw-r--r--bare-bones.tmpl2127logplainabout
-rw-r--r--bare-hurd.tmpl2069logplainabout
-rw-r--r--beaglebone-black.tmpl2260logplainabout
-rw-r--r--desktop.tmpl3960logplainabout
-rw-r--r--docker-image.tmpl1599logplainabout
-rw-r--r--lightweight-desktop.tmpl2182logplainabout
-rw-r--r--plasma.tmpl2641logplainabout
-rw-r--r--raspberry-pi-64-nfs-root.tmpl3054logplainabout
-rw-r--r--raspberry-pi-64.tmpl3261logplainabout
-rw-r--r--vm-image.tmpl5623logplainabout
t 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. Christopher Baines 2020-10-20tests: monitoring: Use (service postgresql-service-type)....As I'm looking at removing the procedure, in favour of always using the service type. * gnu/tests/monitoring.scm (%zabbix-os): Use (service postgresql-service-type) rather than (postgresql-service). Christopher Baines