X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/cbbee2920b20cc05becd4d5b00e264dac84e7d5b..fd561c51f91e0ab94df124556acc7c9418b4f801:/cookbooks/planet/recipes/replication.rb diff --git a/cookbooks/planet/recipes/replication.rb b/cookbooks/planet/recipes/replication.rb index e969c99d2..1ae670bbb 100644 --- a/cookbooks/planet/recipes/replication.rb +++ b/cookbooks/planet/recipes/replication.rb @@ -24,6 +24,7 @@ db_passwords = data_bag_item("db", "passwords") package "postgresql-client" package "ruby" +package "ruby-dev" package "ruby-libxml" package "libpq-dev" @@ -164,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" @@ -174,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