postfix: warn about deprecated extraMasterConf option

This commit is contained in:
Matt McHenry 2017-08-10 21:10:00 -04:00
parent edd4a0efe3
commit 01fbf30041

View file

@ -839,5 +839,8 @@ in
(mkIf (cfg.extraConfig != "") {
warnings = [ "The services.postfix.extraConfig option was deprecated. Please use services.postfix.config instead." ];
})
(mkIf (cfg.extraMasterConf != "") {
warnings = [ "The services.postfix.extraMasterConf option was deprecated. Please use services.postfix.masterConfig instead." ];
})
]);
}