about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2020-05-08 15:05:10 +0100
committerGitHub <noreply@github.com>2020-05-08 15:05:10 +0100
commit43b3c1522855eb6d9ce45a07e830ebd821f74b4b (patch)
tree2616df09fc1813de0ad7062db74bae2dae74eab4 /nixos
parentc0923d1b2e31f53f3a4eeb3cd50f7dea0aae4e70 (diff)
parent0f3b4928b263c14e1a08b92eef4c13a7d320114c (diff)
downloadnixlib-43b3c1522855eb6d9ce45a07e830ebd821f74b4b.tar
nixlib-43b3c1522855eb6d9ce45a07e830ebd821f74b4b.tar.gz
nixlib-43b3c1522855eb6d9ce45a07e830ebd821f74b4b.tar.bz2
nixlib-43b3c1522855eb6d9ce45a07e830ebd821f74b4b.tar.lz
nixlib-43b3c1522855eb6d9ce45a07e830ebd821f74b4b.tar.xz
nixlib-43b3c1522855eb6d9ce45a07e830ebd821f74b4b.tar.zst
nixlib-43b3c1522855eb6d9ce45a07e830ebd821f74b4b.zip
Merge pull request #87255 from symphorien/dovecot-restart-module
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/mail/dovecot.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix
index 230a2ae3f825..9fbf0c19752c 100644
--- a/nixos/modules/services/mail/dovecot.nix
+++ b/nixos/modules/services/mail/dovecot.nix
@@ -407,7 +407,7 @@ in
 
       after = [ "network.target" ];
       wantedBy = [ "multi-user.target" ];
-      restartTriggers = [ cfg.configFile ];
+      restartTriggers = [ cfg.configFile modulesDir ];
 
       serviceConfig = {
         ExecStart = "${dovecotPkg}/sbin/dovecot -F";