X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/b48d93e7fb488da12eaac4b747d0cb9b41a72328..6766749acda8c73f24cdb134f697f24942bfe50f:/cookbooks/planet/recipes/replication.rb diff --git a/cookbooks/planet/recipes/replication.rb b/cookbooks/planet/recipes/replication.rb index 28ca79a33..1ae670bbb 100644 --- a/cookbooks/planet/recipes/replication.rb +++ b/cookbooks/planet/recipes/replication.rb @@ -21,8 +21,10 @@ include_recipe "osmosis" db_passwords = data_bag_item("db", "passwords") +package "postgresql-client" + package "ruby" -package "rubygems" +package "ruby-dev" package "ruby-libxml" package "libpq-dev" @@ -96,9 +98,9 @@ end template "/etc/replication/users-agreed.conf" do source "users-agreed.conf.erb" - user "root" + user "planet" group "planet" - mode 0640 + mode 0600 variables :password => db_passwords["planetdiff"] end @@ -163,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" @@ -173,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