acme: Switch from postRun to reloadServices to fix hangs. Fixes #232

This commit is contained in:
Niklas Hambüchen 2022-02-15 16:42:11 +01:00 committed by lewo
parent 4396125ebb
commit 6284a20f77

View File

@ -36,9 +36,9 @@ in
};
};
security.acme.certs."${cfg.fqdn}".postRun = ''
systemctl reload postfix
systemctl reload dovecot2
'';
security.acme.certs."${cfg.fqdn}".reloadServices = [
"postfix.service"
"dovecot2.service"
];
};
}