Properly track readiness of authentik for gts
This commit is contained in:
parent
05c188e90e
commit
78805a8680
|
@ -48,7 +48,14 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
systemd.services.arion-authentik.serviceConfig.EnvironmentFile = cfg.envFile;
|
systemd.services.arion-authentik = {
|
||||||
|
serviceConfig.EnvironmentFile = cfg.envFile;
|
||||||
|
serviceConfig.Type = "notify";
|
||||||
|
serviceConfig.NotifyAccess = "all";
|
||||||
|
script = lib.mkBefore ''
|
||||||
|
${lib.getExe pkgs.wait4x} http http://127.0.0.1:${toString cfg.port} --expect-status-code 200 -t 0 -q -- systemd-notify --ready &
|
||||||
|
'';
|
||||||
|
};
|
||||||
virtualisation.arion.projects.authentik.settings = {
|
virtualisation.arion.projects.authentik.settings = {
|
||||||
services.postgresql.service = {
|
services.postgresql.service = {
|
||||||
image = images.postgresql;
|
image = images.postgresql;
|
||||||
|
|
|
@ -85,7 +85,7 @@ in
|
||||||
# instance-inject-mastodon-version = true;
|
# instance-inject-mastodon-version = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
systemd.services.gotosocial.requires = mkAfter [ "postgresql.service" ];
|
systemd.services.gotosocial.requires = mkAfter [ "postgresql.service" "arion-authentik.service" ];
|
||||||
systemd.services.gotosocial.after = mkAfter [ "postgresql.service" ];
|
systemd.services.gotosocial.after = mkAfter [ "postgresql.service" "arion-authentik.service" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue