Added RedHat/CentOS support to postfix cookbook
Signed-off-by: jtimberman <joshua@opscode.com>
This commit is contained in:
parent
a2c0c7c6f5
commit
002bcb8029
@ -6,7 +6,7 @@ version "0.8.4"
|
|||||||
recipe "postfix", "Installs and configures postfix"
|
recipe "postfix", "Installs and configures postfix"
|
||||||
recipe "postfix::sasl_auth", "Set up postfix to auth to a server with sasl"
|
recipe "postfix::sasl_auth", "Set up postfix to auth to a server with sasl"
|
||||||
|
|
||||||
%w{ubuntu debian}.each do |os|
|
%w{ubuntu debian redhat centos}.each do |os|
|
||||||
supports os
|
supports os
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -22,8 +22,24 @@ package "postfix" do
|
|||||||
action :install
|
action :install
|
||||||
end
|
end
|
||||||
|
|
||||||
service "postfix" do
|
case node[:platform]
|
||||||
action :enable
|
when "ubuntu", "debian"
|
||||||
|
service "postfix" do
|
||||||
|
action :enable
|
||||||
|
end
|
||||||
|
when "redhat", "centos"
|
||||||
|
service "postfix" do
|
||||||
|
action :nothing
|
||||||
|
end
|
||||||
|
service "sendmail" do
|
||||||
|
action :nothing
|
||||||
|
end
|
||||||
|
execute "switch_mailer_to_postfix" do
|
||||||
|
command "/usr/sbin/alternatives --set mta /usr/sbin/sendmail.postfix"
|
||||||
|
notifies :stop, resources(:service => "sendmail")
|
||||||
|
notifies :start, resources(:service => "postfix")
|
||||||
|
not_if "/usr/bin/test /etc/alternatives/mta -ef /usr/sbin/sendmail.postfix"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
%w{main master}.each do |cfg|
|
%w{main master}.each do |cfg|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user