]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/planet/recipes/replication.rb
Yet more rubucop cleanups
[chef.git] / cookbooks / planet / recipes / replication.rb
index 42a6dbea0622ea2df432e6b75c0e3ff17bcceeb4..1ae670bbb1d01a812a17961bf97fa46a9377a75a 100644 (file)
@@ -165,7 +165,7 @@ directory "/var/log/replication" do
   mode 0755
 end
 
-[ "streaming-replicator", "streaming-server" ].each do |name|
+["streaming-replicator", "streaming-server"].each do |name|
   template "/etc/init.d/#{name}" do
     source "streaming.init.erb"
     owner "root"
@@ -175,7 +175,7 @@ end
   end
 
   service name do
-    action [ :enable, :start ]
+    action [:enable, :start]
     supports :restart => true, :status => true
     subscribes :restart, "template[/etc/init.d/#{name}]"
   end