]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/bind/recipes/default.rb
Convert all notify/subscribe calls to the new style syntax
[chef.git] / cookbooks / bind / recipes / default.rb
index 80dee1de3a16002d068ab917d184682da14c94e2..1d2a8d8bf336fe4fe29cfdc807edb8a3d31af4ff 100644 (file)
@@ -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