[COOK-1520] Added support for enabling procmail to postfix cookbook

This commit is contained in:
Joshua Buysse
2012-08-04 19:06:21 -05:00
parent e2a1a3079a
commit f231f8b408
5 changed files with 20 additions and 0 deletions

View File

@@ -22,6 +22,13 @@ package "postfix" do
action :install
end
if node['postfix']['use_procmail'] then
package "procmail" do
action :install
end
end
service "postfix" do
supports :status => true, :restart => true, :reload => true
action :enable