0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos/flarum: restart on package update (#389453)

This commit is contained in:
Pol Dellaiera 2025-03-16 07:28:51 +01:00 committed by GitHub
commit ad9f51048b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -196,6 +196,10 @@ in
}
];
systemd.services."phpfpm-flarum" = {
restartTriggers = [ cfg.package ];
};
systemd.services.flarum-install = {
description = "Flarum installation";
requiredBy = [ "phpfpm-flarum.service" ];