1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Fix Grafana service requires

This commit is contained in:
RGBCube 2024-01-17 18:47:51 +03:00
parent e5abe29608
commit b53d81258b
No known key found for this signature in database

View file

@ -21,7 +21,10 @@ in serverSystemConfiguration {
}];
};
systemd.services.grafana.requires = [ "postgresql.service" ];
systemd.services.grafana = {
after = [ "postgresql.service" ];
requires = [ "postgresql.service" ];
};
services.grafana = enabled {
provision = enabled {};