summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/matrix
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2023-10-10 11:41:05 +0200
committerGitHub <noreply@github.com>2023-10-10 11:41:05 +0200
commit3d3b99ad207ccc437c86000b228a350a2024f069 (patch)
tree6b9ed7abf95884e0ab1ccd2b169918e3778281b3 /nixos/modules/services/matrix
parent791fe98a0df0e784a5b1e1efe9cd4b199d27dbf7 (diff)
parent7f08d0ebd8ebc54c2da12dd339efcf06e6a63d8c (diff)
Merge pull request #259980 from Ma27/synapse-db-assertion
nixos/matrix-synapse: drop old DB check assertion, actually require DB to be up
Diffstat (limited to 'nixos/modules/services/matrix')
-rw-r--r--nixos/modules/services/matrix/synapse.nix23
1 files changed, 5 insertions, 18 deletions
diff --git a/nixos/modules/services/matrix/synapse.nix b/nixos/modules/services/matrix/synapse.nix
index 34930a7ba69b..e627c34cfac4 100644
--- a/nixos/modules/services/matrix/synapse.nix
+++ b/nixos/modules/services/matrix/synapse.nix
@@ -12,7 +12,9 @@ let
usePostgresql = cfg.settings.database.name == "psycopg2";
hasLocalPostgresDB = let args = cfg.settings.database.args; in
- usePostgresql && (!(args ? host) || (elem args.host [ "localhost" "127.0.0.1" "::1" ]));
+ usePostgresql
+ && (!(args ? host) || (elem args.host [ "localhost" "127.0.0.1" "::1" ]))
+ && config.services.postgresql.enable;
hasWorkers = cfg.workers != { };
listenerSupportsResource = resource: listener:
@@ -945,23 +947,6 @@ in {
'';
}
{
- assertion = hasLocalPostgresDB -> config.services.postgresql.enable;
- message = ''
- Cannot deploy matrix-synapse with a configuration for a local postgresql database
- and a missing postgresql service. Since 20.03 it's mandatory to manually configure the
- database (please read the thread in https://github.com/NixOS/nixpkgs/pull/80447 for
- further reference).
-
- If you
- - try to deploy a fresh synapse, you need to configure the database yourself. An example
- for this can be found in <nixpkgs/nixos/tests/matrix/synapse.nix>
- - update your existing matrix-synapse instance, you simply need to add `services.postgresql.enable = true`
- to your configuration.
-
- For further information about this update, please read the release-notes of 20.03 carefully.
- '';
- }
- {
assertion = hasWorkers -> cfg.settings.redis.enabled;
message = ''
Workers for matrix-synapse require configuring a redis instance. This can be done
@@ -1034,9 +1019,11 @@ in {
partOf = [ "matrix-synapse.target" ];
wantedBy = [ "matrix-synapse.target" ];
unitConfig.ReloadPropagatedFrom = "matrix-synapse.target";
+ requires = optional hasLocalPostgresDB "postgresql.service";
}
else {
after = [ "network-online.target" ] ++ optional hasLocalPostgresDB "postgresql.service";
+ requires = optional hasLocalPostgresDB "postgresql.service";
wantedBy = [ "multi-user.target" ];
};
baseServiceConfig = {