package "bind9"
service "bind9" do
- action [ :enable, :start ]
+ action [:enable, :start]
supports :status => true, :restart => true, :reload => true
end
owner "root"
group "root"
mode 0644
- notifies :restart, resources(:service => "bind9")
+ notifies :restart, "service[bind9]"
end
template "/etc/bind/named.conf.options" do
owner "root"
group "root"
mode 0644
- notifies :restart, resources(:service => "bind9")
+ notifies :restart, "service[bind9]"
end
template "/etc/bind/db.10" do
owner "root"
group "root"
mode 0644
- notifies :reload, resources(:service => "bind9")
+ notifies :reload, "service[bind9]"
end
firewall_rule "accept-dns-udp" do