X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/7b9ec4b60ee39614d1d083d7220e76b07d2b275f..af08abd9a84a360f523def1d5dde94f909d8553f:/cookbooks/bind/recipes/default.rb diff --git a/cookbooks/bind/recipes/default.rb b/cookbooks/bind/recipes/default.rb index 80dee1de3..519b9c823 100644 --- a/cookbooks/bind/recipes/default.rb +++ b/cookbooks/bind/recipes/default.rb @@ -22,7 +22,7 @@ include_recipe "networking" package "bind9" service "bind9" do - action [ :enable, :start ] + action [:enable, :start] supports :status => true, :restart => true, :reload => true end @@ -31,7 +31,7 @@ template "/etc/bind/named.conf.local" do owner "root" group "root" mode 0644 - notifies :restart, resources(:service => "bind9") + notifies :restart, "service[bind9]" end template "/etc/bind/named.conf.options" do @@ -39,7 +39,7 @@ 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 @@ -47,7 +47,7 @@ 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